forked from Mirrors/freeswitch
3a7c7cbc6d
git-svn-id: http://svn.openzap.org/svn/openzap/trunk@157 a93c3328-9c30-0410-af19-c9cd2b2d52af
125 lines
3.9 KiB
Makefile
125 lines
3.9 KiB
Makefile
# Copyright (c) 2007, Anthony Minessale II
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
#
|
|
# * Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
#
|
|
# * Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
# documentation and/or other materials provided with the distribution.
|
|
#
|
|
# * Neither the name of the original author; nor the names of any contributors
|
|
# may be used to endorse or promote products derived from this software
|
|
# without specific prior written permission.
|
|
#
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
|
# OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
SRC=src
|
|
OBJS=\
|
|
$(SRC)/hashtable.o \
|
|
$(SRC)/hashtable_itr.o \
|
|
$(SRC)/zap_io.o \
|
|
$(SRC)/zap_isdn.o \
|
|
$(SRC)/zap_analog.o \
|
|
$(SRC)/zap_config.o \
|
|
$(SRC)/g711.o \
|
|
$(SRC)/libteletone_detect.o \
|
|
$(SRC)/libteletone_generate.o \
|
|
$(SRC)/zap_buffer.o \
|
|
$(SRC)/zap_threadmutex.o \
|
|
$(SRC)/isdn/EuroISDNStateNT.o \
|
|
$(SRC)/isdn/EuroISDNStateTE.o \
|
|
$(SRC)/isdn/mfifo.o \
|
|
$(SRC)/isdn/Q921.o \
|
|
$(SRC)/isdn/Q931api.o \
|
|
$(SRC)/isdn/Q931.o \
|
|
$(SRC)/isdn/Q931ie.o \
|
|
$(SRC)/isdn/Q931mes.o \
|
|
$(SRC)/isdn/Q931StateNT.o \
|
|
$(SRC)/isdn/Q931StateTE.o \
|
|
$(SRC)/isdn/nationalie.o \
|
|
$(SRC)/isdn/nationalmes.o \
|
|
$(SRC)/isdn/nationalStateNT.o \
|
|
$(SRC)/isdn/nationalStateTE.o \
|
|
$(SRC)/isdn/Q932mes.o
|
|
|
|
HEADERS=$(SRC)/isdn/include/Q931.h \
|
|
$(SRC)/include/openzap.h
|
|
|
|
PWD=$(shell pwd)
|
|
INCS=-I$(PWD)/$(SRC)//include -I$(PWD)/$(SRC)//isdn/include
|
|
CFLAGS=$(ZAP_CFLAGS) $(INCS)
|
|
MYLIB=libopenzap.a
|
|
TMP=-I../libpri-1.2.4 -I$(SRC)/include -I./src -w
|
|
|
|
include general.makefile $(ZAP_MODS)
|
|
|
|
all: $(MYLIB)
|
|
|
|
$(MYLIB): $(OBJS) $(HEADERS)
|
|
ar rcs $(MYLIB) $(OBJS)
|
|
ranlib $(MYLIB)
|
|
|
|
testapp: $(SRC)/testapp.c $(MYLIB)
|
|
$(CC) $(INCS) -L. $(SRC)/testapp.c -o testapp -lopenzap -lm -lpthread
|
|
|
|
testisdn: $(SRC)/testisdn.c $(MYLIB)
|
|
$(CC) $(INCS) -L. $(SRC)/testisdn.c -o testisdn -lopenzap -lm -lpthread
|
|
|
|
testanalog: $(SRC)/testanalog.c $(MYLIB)
|
|
$(CC) $(INCS) -L. $(SRC)/testanalog.c -o testanalog -lopenzap -lm -lpthread
|
|
|
|
priserver.o: $(SRC)/priserver.c
|
|
$(CC) $(INCS) $(TMP) -c $(SRC)/priserver.c -o $(SRC)/priserver.o
|
|
|
|
$(SRC)/sangoma_pri.o: $(SRC)/sangoma_pri.c
|
|
$(CC) $(INCS) $(TMP) -c $(SRC)/sangoma_pri.c -o $(SRC)/sangoma_pri.o
|
|
|
|
priserver: $(MYLIB) $(SRC)/priserver.o $(SRC)/sangoma_pri.o
|
|
$(CC) $(SRC)/sangoma_pri.o $(SRC)/priserver.o -L. -o priserver -lopenzap -lm -lpthread ../../libpri-1.2.4/libpri.a
|
|
|
|
$(SRC)/zap_io.o: $(SRC)/zap_io.c
|
|
$(CC) $(MOD_CFLAGS) $(CC_CFLAGS) $(CFLAGS) -c $< -o $@
|
|
|
|
$(SRC)/zap_wanpipe.o: $(SRC)/zap_wanpipe.c
|
|
$(CC) $(CFLAGS) $(ZAP_CFLAGS) $(WP_CFLAGS) -c $< -o $@
|
|
|
|
$(SRC)/zap_zt.o: $(SRC)/zap_zt.c
|
|
$(CC) $(CFLAGS) $(ZAP_CFLAGS) $(ZT_CFLAGS) -c $< -o $@
|
|
|
|
%.o: %.c
|
|
$(CC) $(CC_CFLAGS) $(CFLAGS) -c $< -o $@
|
|
|
|
dox:
|
|
cd docs && doxygen $(PWD)/docs/Doxygen.conf
|
|
|
|
mod_openzap/mod_openzap.so: $(MYLIB)
|
|
cd mod_openzap && make
|
|
|
|
mod_openzap: mod_openzap/mod_openzap.so
|
|
|
|
mod_openzap-install: mod_openzap
|
|
cd mod_openzap && make install
|
|
|
|
mod_openzap-clean:
|
|
cd mod_openzap && make clean
|
|
|
|
clean: mod_openzap-clean
|
|
rm -f $(SRC)/*.o $(SRC)/isdn/*.o $(MYLIB) *~ \#* testapp priserver testisdn testanalog
|
|
|