X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=Makefile.am;h=b56560bbb42df62476924894c45e5749122f68ab;hp=c29195a956b7d1d564d7e921433d64b2f913dde5;hb=2d76f6325ac57604d9b04c4481d6180fecc2bfaf;hpb=26c7e0d22ead805ce333ea4248c7311c1eda5de0 diff --git a/Makefile.am b/Makefile.am index c29195a..b56560b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,42 +20,84 @@ ## the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ## Boston, MA 02110-1301, USA. -#INSTALLATION_DEFINES = \ -# -DCONFIG_DATA="\"$(pkgsysconfdir)\"" \ -# -DSHARE_DATA="\"$(pkgdatadir)\"" \ -# -DLOG_DIR="\"$(pkglogdir)\"" \ -# -DEXTENSION_DATA="\"$(localstatedir)/lib/lcr\"" +INSTALLdir = $(DESTDIR)/usr/local/lcr -INSTALLdir = /usr/local/lcr +pkglogdir=$(localstatedir)/log/@PACKAGE@ +pkgsysconfdir=$(sysconfdir)/@PACKAGE@ + +#CONFIGdir=$(DESTDIR)$(pkgsysconfdir) +#SHAREdir=$(DESTDIR)$(pkgdatadir) +#LOGdir=$(DESTDIR)$(pkglogdir) +#EXTENSIONdir=$(DESTDIR)$(localstatedir)/lib/lcr + +CONFIGdir=$(INSTALLdir) +SHAREdir=$(INSTALLdir) +LOGdir=$(INSTALLdir) +EXTENSIONdir=$(INSTALLdir)/extensions + +astmoddir = $(DESTDIR)/usr/lib/asterisk/modules INSTALLATION_DEFINES = \ - -DCONFIG_DATA="\"$(INSTALLdir)\"" \ - -DSHARE_DATA="\"$(INSTALLdir)\"" \ - -DLOG_DIR="\"$(INSTALLdir)\"" \ - -DEXTENSION_DATA="\"$(INSTALLdir)/extensions\"" + -DCONFIG_DATA="\"$(CONFIGdir)\"" \ + -DSHARE_DATA="\"$(SHAREdir)\"" \ + -DLOG_DIR="\"$(LOGdir)\"" \ + -DEXTENSION_DATA="\"$(EXTENSIONdir)\"" + +if ENABLE_GSM + +GSM_INCLUDE = -DWITH_GSM -I./openbsc/include -I./libosmocore/include + +GSM_SOURCE = gsm_audio.c gsm.cpp gsm_conf.c openbsc/src/bsc_init.c openbsc/src/vty_interface.c openbsc/src/vty_interface_layer3.c + +GSM_LIB = /usr/lib/libgsm.a ./openbsc/src/libbsc.a ./openbsc/src/libmsc.a ./openbsc/src/libvty.a -L./libosmocore/src/ -losmocore -ldbi -lcrypt + +#gsm_audio.po: gsm_audio.c gsm_audio.h +# $(CC) -D_GNU_SOURCE -fPIC -c gsm_audio.c -o gsm_audio.po + +endif + +if ENABLE_SS5 -INCLUDES = $(all_includes) -I/usr/include/mISDNuser $(INSTALLATION_DEFINES) +SS5_INCLUDE = -DWITH_SS5 +SS5_SOURCE = ss5.cpp ss5_encode.c ss5_decode.c + +endif bin_PROGRAMS = lcradmin gentones genwave +sbin_PROGRAMS = lcr genrc genextension + if ENABLE_ASTERISK_CHANNEL_DRIVER -sbin_PROGRAMS = lcr genrc genextension chan_lcr.so -chan_lcr_so_SOURCES = +noinst_PROGRAMS = chan_lcr.so +chan_lcr_so_SOURCES = chan_lcr_so_LDFLAGS = -shared -chan_lcr_so_LDADD = chan_lcr.o bchannel.o +chan_lcr_so_LDADD = chan_lcr.po bchannel.po options.po callerid.po select.po + +chan_lcr.po: chan_lcr.c chan_lcr.h + $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c chan_lcr.c -o chan_lcr.po -chan_lcr.o: chan_lcr.c chan_lcr.h - $(CC) $(INCLUDES) -D_GNU_SOURCE -c chan_lcr.c +bchannel.po: bchannel.c bchannel.h + $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c bchannel.c -o bchannel.po -bchannel.o: bchannel.c bchannel.h - $(CC) $(INCLUDES) -D_GNU_SOURCE -c bchannel.c +callerid.po: callerid.c callerid.h + $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c callerid.c -o callerid.po -else -sbin_PROGRAMS = lcr genrc genextension +options.po: options.c options.h + $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c options.c -o options.po + +select.po: select.c select.h + $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c select.c -o select.po + +install-exec-hook: + mkdir -p $(astmoddir) + $(INSTALL) -d $(astmoddir) + $(INSTALL) chan_lcr.so $(astmoddir) endif -lcr_SOURCES = action.cpp mISDN.cpp tones.c \ +INCLUDES = $(all_includes) $(GSM_INCLUDE) $(SS5_INCLUDE) -Wall $(INSTALLATION_DEFINES) + +lcr_SOURCES = $(GSM_SOURCE) $(SS5_SOURCE) select.c action.cpp mISDN.cpp tones.c \ action_efi.cpp crypt.cpp mail.c trace.c \ action_vbox.cpp dss1.cpp main.c \ vbox.cpp alawulaw.c endpoint.cpp interface.c message.c \ @@ -64,7 +106,8 @@ lcr_SOURCES = action.cpp mISDN.cpp tones.c \ callerid.c joinremote.cpp route.c \ cause.c socket_server.c -lcr_LDADD = $(LIBCRYPTO) -lmisdn -lpthread +lcr_LDADD = $(LIBCRYPTO) -lmisdn -lpthread $(GSM_LIB) + lcradmin_SOURCES = lcradmin.c cause.c options.c genextension_SOURCES = genext.c options.c extension.c @@ -79,39 +122,52 @@ install-data-hook: @sh -c 'grep -n strncat *.c* --exclude chan_lcr.c --exclude bchannel.c --exclude callerid.c ; if test $$''? = 0 ; then echo "dont use strncat, use makro instead." ; exit -1 ; fi' @sh -c 'grep -n sprintf *.c* --exclude chan_lcr.c --exclude bchannel.c --exclude callerid.c ; if test $$''? = 0 ; then echo "dont use sprintf, use makro instead." ; exit -1 ; fi' @sh -c 'grep -n snprintf *.c* --exclude chan_lcr.c --exclude bchannel.c --exclude callerid.c ; if test $$''? = 0 ; then echo "dont use snprintf, use makro instead." ; exit -1 ; fi' - mkdir -p $(INSTALLdir) - mkdir -p $(INSTALLdir)/extensions - @if test -a $(INSTALLdir)/options.conf ; then \ + mkdir -p $(CONFIGdir) + mkdir -p $(SHAREdir) + mkdir -p $(LOGdir) + mkdir -p $(EXTENSIONdir) + @if test -a $(CONFIGdir)/options.conf ; then \ echo "NOTE: options.conf already exists, not changed." ; else \ - cp -v default/options.conf $(INSTALLdir) ; fi - @if test -a $(INSTALLdir)/interface.conf ; then \ + cp -v default/options.conf $(CONFIGdir) ; fi + @if test -a $(CONFIGdir)/interface.conf ; then \ echo "NOTE: interface.conf already exists, not changed." ; else \ - cp -v default/interface.conf $(INSTALLdir) ; fi - @if test -a $(INSTALLdir)/routing.conf ; then \ + cp -v default/interface.conf $(CONFIGdir) ; fi + @if test -a $(CONFIGdir)/routing.conf ; then \ echo "NOTE: routing.conf already exists, not changed." ; else \ - cp -v default/routing.conf $(INSTALLdir) ; fi - @if test -a $(INSTALLdir)/numbering_int.conf ; then \ + cp -v default/routing.conf $(CONFIGdir) ; fi +if ENABLE_GSM + @if test -a $(CONFIGdir)/gsm.conf ; then \ + echo "NOTE: gsm.conf already exists, not changed." ; else \ + cp -v default/gsm.conf $(CONFIGdir) ; fi + @if test -a $(CONFIGdir)/openbsc.cfg ; then \ + echo "NOTE: openbsc.cfg already exists, not changed." ; else \ + cp -v default/openbsc.cfg $(CONFIGdir) ; fi +endif + @if test -a $(CONFIGdir)/numbering_int.conf ; then \ echo "NOTE: numbering_int.conf is obsolete, please use routing." ; fi - @if test -a $(INSTALLdir)/numbering_ext.conf ; then \ + @if test -a $(CONFIGdir)/numbering_ext.conf ; then \ echo "NOTE: numbering_ext.conf is obsolete, please use routing." ; fi - @if test -a $(INSTALLdir)/directory.list ; then \ + @if test -a $(CONFIGdir)/directory.list ; then \ echo "NOTE: directory.list already exists, not changed." ; else \ - cp -v default/directory.list $(INSTALLdir) ; fi - @if test -a $(INSTALLdir)/tones_american ; then \ + cp -v default/directory.list $(CONFIGdir) ; fi + @if test -a $(SHAREdir)/tones_american ; then \ echo "NOTE: american tones already exists, not overwritten." ; else \ - cp -a tones_american $(INSTALLdir) ; fi - @if test -a $(INSTALLdir)/tones_german ; then \ + cp -a tones_american $(SHAREdir) ; fi + @if test -a $(SHAREdir)/tones_german ; then \ echo "NOTE: german tones already exists, not overwritten." ; else \ - cp -a tones_german $(INSTALLdir) ; fi - @if test -a $(INSTALLdir)/vbox_german ; then \ + cp -a tones_german $(SHAREdir) ; fi + @if test -a $(SHAREdir)/vbox_german ; then \ echo "NOTE: german vbox tones already exists, not overwritten." ; else \ - cp -a vbox_german $(INSTALLdir) ; fi - @if test -a $(INSTALLdir)/vbox_english ; then \ + cp -a vbox_german $(SHAREdir) ; fi + @if test -a $(SHAREdir)/vbox_english ; then \ echo "NOTE: english vbox tones already exists, not overwritten." ; else \ - cp -a vbox_english $(INSTALLdir) ; fi - @if test -a $(INSTALLdir)/tones_efi ; then \ + cp -a vbox_english $(SHAREdir) ; fi + @if test -a $(SHAREdir)/tones_efi ; then \ echo "NOTE: special efi tones already exists, not overwritten." ; else \ - cp -a tones_efi $(INSTALLdir) ; fi + cp -a tones_efi $(SHAREdir) ; fi + +clean-generic: + rm -f *.po # test rule, nothing important #echo: @@ -123,7 +179,4 @@ install-data-hook: COMPILE=$(CXXCOMPILE) LINK=$(CXXLINK) -pkglogdir=$(localstatedir)/log/@PACKAGE@ -pkgsysconfdir=$(sysconfdir)/@PACKAGE@ -