X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=Makefile.am;h=c072870925995f602a2fb52272af4235770a78d3;hp=8eebb532d09a82ae79411b06d0b510966b4a549b;hb=4ec1520c572c4099b478897e4a6ee3a28622ca44;hpb=8033d9a61ad5d5dfb745495a1c7808df650595f9 diff --git a/Makefile.am b/Makefile.am index 8eebb53..c072870 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,44 +20,73 @@ ## 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 -astmoddir = /usr/lib/asterisk/modules +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 -INCLUDES = $(all_includes) -I/usr/include/mISDNuser $(INSTALLATION_DEFINES) +GSM_SOURCE = gsm_audio.c gsm.cpp gsm_conf.c bootstrap.c +GSM_LIB = /usr/lib/libgsm.a /usr/local/lib/libbsc.a /usr/local/lib/libvty.a -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 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 options.o +chan_lcr_so_LDADD = chan_lcr.po bchannel.po options.po callerid.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 + +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) -Wall -I/usr/include/mISDNuser $(INSTALLATION_DEFINES) + +lcr_SOURCES = $(GSM_SOURCE) 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 \ @@ -66,7 +95,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 @@ -81,43 +111,49 @@ 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 +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 -if ENABLE_ASTERISK_CHANNEL_DRIVER - @echo "Moving chan_lcr.so (if it fails, do it manually)" - mv $(sbindir)/chan_lcr.so $(astmoddir) -endif + cp -a tones_efi $(SHAREdir) ; fi + +clean-generic: + rm -f *.po # test rule, nothing important #echo: @@ -129,7 +165,4 @@ endif COMPILE=$(CXXCOMPILE) LINK=$(CXXLINK) -pkglogdir=$(localstatedir)/log/@PACKAGE@ -pkgsysconfdir=$(sysconfdir)/@PACKAGE@ -