c072870925995f602a2fb52272af4235770a78d3
[lcr.git] / Makefile.am
1 ##    Makefile.am -- Process this file with automake to produce Makefile.in
2
3 ##    This file is part of linux-call-router
4 ##    Copyright (C) 2007 Joerg Habenicht (j.habenicht@gmx.de)
5 ##    Copyright (C) 2008 Peter Schlaile (peter -at- schlaile.de)
6 ##    Copyright (C) 2008 Andreas Eversberg (andreas@eversberg.eu)
7
8 ##    This program is free software; you can redistribute it and/or
9 ##    modify it under the terms of the GNU General Public License as
10 ##    published by the Free Software Foundation; either
11 ##    version 2 of the License, or (at your option) any later version.
12
13 ##    This program is distributed in the hope that it will be useful,
14 ##    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ##    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 ##    GNU General Public License for more details.
17
18 ##    You should have received a copy of the GNU General Public License
19 ##    along with this library; see the file COPYING.  If not, write to
20 ##    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 ##    Boston, MA 02110-1301, USA.
22
23 INSTALLdir = $(DESTDIR)/usr/local/lcr
24
25 pkglogdir=$(localstatedir)/log/@PACKAGE@
26 pkgsysconfdir=$(sysconfdir)/@PACKAGE@
27
28 #CONFIGdir=$(DESTDIR)$(pkgsysconfdir)
29 #SHAREdir=$(DESTDIR)$(pkgdatadir)
30 #LOGdir=$(DESTDIR)$(pkglogdir)
31 #EXTENSIONdir=$(DESTDIR)$(localstatedir)/lib/lcr
32
33 CONFIGdir=$(INSTALLdir)
34 SHAREdir=$(INSTALLdir)
35 LOGdir=$(INSTALLdir)
36 EXTENSIONdir=$(INSTALLdir)/extensions
37
38 astmoddir = $(DESTDIR)/usr/lib/asterisk/modules
39
40 INSTALLATION_DEFINES = \
41  -DCONFIG_DATA="\"$(CONFIGdir)\"" \
42  -DSHARE_DATA="\"$(SHAREdir)\"" \
43  -DLOG_DIR="\"$(LOGdir)\"" \
44  -DEXTENSION_DATA="\"$(EXTENSIONdir)\""
45
46 if ENABLE_GSM
47
48 GSM_INCLUDE = -DWITH_GSM
49
50 GSM_SOURCE = gsm_audio.c gsm.cpp gsm_conf.c bootstrap.c
51
52 GSM_LIB = /usr/lib/libgsm.a /usr/local/lib/libbsc.a /usr/local/lib/libvty.a -ldbi -lcrypt
53
54 #gsm_audio.po: gsm_audio.c gsm_audio.h
55 #       $(CC) -D_GNU_SOURCE -fPIC -c gsm_audio.c -o gsm_audio.po
56
57 endif
58
59 bin_PROGRAMS = lcradmin gentones genwave
60
61 sbin_PROGRAMS = lcr genrc genextension
62
63 if ENABLE_ASTERISK_CHANNEL_DRIVER
64 noinst_PROGRAMS = chan_lcr.so
65 chan_lcr_so_SOURCES =
66 chan_lcr_so_LDFLAGS = -shared
67 chan_lcr_so_LDADD = chan_lcr.po bchannel.po options.po callerid.po
68
69 chan_lcr.po: chan_lcr.c chan_lcr.h
70         $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c chan_lcr.c -o chan_lcr.po
71
72 bchannel.po: bchannel.c bchannel.h
73         $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c bchannel.c -o bchannel.po
74
75 callerid.po: callerid.c callerid.h
76         $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c callerid.c -o callerid.po
77
78 options.po: options.c options.h
79         $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c options.c -o options.po
80
81 install-exec-hook:
82         mkdir -p $(astmoddir)
83         $(INSTALL) -d $(astmoddir)
84         $(INSTALL) chan_lcr.so $(astmoddir)
85 endif
86
87 INCLUDES = $(all_includes) $(GSM_INCLUDE) -Wall -I/usr/include/mISDNuser $(INSTALLATION_DEFINES)
88
89 lcr_SOURCES = $(GSM_SOURCE) action.cpp       mISDN.cpp        tones.c \
90         action_efi.cpp   crypt.cpp        mail.c           trace.c \
91         action_vbox.cpp  dss1.cpp         main.c           \
92         vbox.cpp alawulaw.c       endpoint.cpp     interface.c     message.c \
93         apppbx.cpp       endpointapp.cpp  join.cpp        options.c       \
94         extension.c      joinpbx.cpp     port.cpp \
95         callerid.c       joinremote.cpp  route.c \
96         cause.c          socket_server.c
97
98 lcr_LDADD = $(LIBCRYPTO) -lmisdn -lpthread $(GSM_LIB)
99
100
101 lcradmin_SOURCES = lcradmin.c cause.c options.c
102 genextension_SOURCES = genext.c options.c extension.c
103
104 # Special install function to preserve existing configs.
105 # Optimization with equivalen results are welcome
106
107 install-data-hook:
108         @sh -c 'grep -n strcpy *.c* --exclude chan_lcr.c --exclude bchannel.c --exclude callerid.c ; if test $$''? = 0 ; then echo "dont use strcpy, use makro instead." ; exit -1 ; fi'
109         @sh -c 'grep -n strncpy *.c* --exclude chan_lcr.c --exclude bchannel.c --exclude callerid.c ; if test $$''? = 0 ; then echo "dont use strncpy, use makro instead." ; exit -1 ; fi'
110         @sh -c 'grep -n strcat *.c* --exclude chan_lcr.c --exclude bchannel.c --exclude callerid.c ; if test $$''? = 0 ; then echo "dont use strcat, use makro instead." ; exit -1 ; fi'
111         @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'
112         @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'
113         @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'
114         mkdir -p $(CONFIGdir)
115         mkdir -p $(SHAREdir)
116         mkdir -p $(LOGdir)
117         mkdir -p $(EXTENSIONdir)
118         @if test -a $(CONFIGdir)/options.conf ; then \
119                 echo "NOTE: options.conf already exists, not changed." ; else \
120                 cp -v default/options.conf $(CONFIGdir) ; fi
121         @if test -a $(CONFIGdir)/interface.conf ; then \
122                 echo "NOTE: interface.conf already exists, not changed." ; else \
123                 cp -v default/interface.conf $(CONFIGdir) ; fi
124         @if test -a $(CONFIGdir)/routing.conf ; then \
125                 echo "NOTE: routing.conf already exists, not changed." ; else \
126                 cp -v default/routing.conf $(CONFIGdir) ; fi
127 if ENABLE_GSM
128         @if test -a $(CONFIGdir)/gsm.conf ; then \
129                 echo "NOTE: gsm.conf already exists, not changed." ; else \
130                 cp -v default/gsm.conf $(CONFIGdir) ; fi
131 endif
132         @if test -a $(CONFIGdir)/numbering_int.conf ; then \
133                 echo "NOTE: numbering_int.conf is obsolete, please use routing." ; fi
134         @if test -a $(CONFIGdir)/numbering_ext.conf ; then \
135                 echo "NOTE: numbering_ext.conf is obsolete, please use routing." ; fi
136         @if test -a $(CONFIGdir)/directory.list ; then \
137                 echo "NOTE: directory.list already exists, not changed." ; else \
138                 cp -v default/directory.list $(CONFIGdir) ; fi
139         @if test -a $(SHAREdir)/tones_american ; then \
140                 echo "NOTE: american tones already exists, not overwritten." ; else \
141                 cp -a tones_american $(SHAREdir) ; fi
142         @if test -a $(SHAREdir)/tones_german ; then \
143                 echo "NOTE: german tones already exists, not overwritten." ; else \
144                 cp -a tones_german $(SHAREdir) ; fi
145         @if test -a $(SHAREdir)/vbox_german ; then \
146                 echo "NOTE: german vbox tones already exists, not overwritten." ; else \
147                 cp -a vbox_german $(SHAREdir) ; fi
148         @if test -a $(SHAREdir)/vbox_english ; then \
149                 echo "NOTE: english vbox tones already exists, not overwritten." ; else \
150                 cp -a vbox_english $(SHAREdir) ; fi
151         @if test -a $(SHAREdir)/tones_efi ; then \
152                 echo "NOTE: special efi tones already exists, not overwritten." ; else \
153                 cp -a tones_efi $(SHAREdir) ; fi
154
155 clean-generic:
156         rm -f *.po
157
158 # test rule, nothing important
159 #echo:
160 #       -echo $(all_libraries) >&2
161
162 # CAUTION: CRUDE CRUDE HACK !!
163 # This transforms all compiling and linking calls from gcc into g++
164 # This should better be removed and all .c files renamed to .cpp
165 COMPILE=$(CXXCOMPILE)
166 LINK=$(CXXLINK)
167
168