Add AMR codec, for supporting EFR transcoding
[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-2012 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=$(pkgsysconfdir)
29 SHAREdir=$(pkgdatadir)
30 LOGdir=$(pkglogdir)
31 EXTENSIONdir=$(localstatedir)/lib/@PACKAGE@/extensions
32
33 #CONFIGdir=$(INSTALLdir)
34 #SHAREdir=$(INSTALLdir)
35 #LOGdir=$(INSTALLdir)
36 #EXTENSIONdir=$(INSTALLdir)/extensions
37
38 astmoddir = $(libdir)/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_MISDN
47
48 MISDN_INCLUDE = -DWITH_MISDN -DWITH_CRYPT
49 MISDN_SOURCE = mISDN.cpp fxs.cpp dss1.cpp crypt.cpp
50 MISDN_LIB = -lmisdn
51
52 endif
53
54 SUBDIRS =
55
56 GSM_INCLUDE =
57 GSM_SOURCE =
58 GSM_LIB =
59
60 if ENABLE_GSM
61
62 #if ENABLE_GSMHR
63
64 GSM_INCLUDE += -DWITH_GSMFR
65
66 GSM_LIB += libgsmfr/lib/libgsm.a
67
68 SUBDIRS += libgsmfr
69
70 #endif
71
72 if ENABLE_GSMAMR
73
74 GSM_INCLUDE += -DWITH_GSMAMR
75
76 GSM_LIB += -lopencore-amrnb
77
78 endif
79
80 GSM_SOURCE += gsm_audio.c gsm.cpp
81
82 if ENABLE_GSM_BS
83
84 GSM_INCLUDE += -DWITH_GSM_BS
85
86 GSM_SOURCE += gsm_bs.cpp
87
88 endif
89
90 if ENABLE_GSM_MS
91
92 GSM_INCLUDE += -DWITH_GSM_MS
93
94 GSM_SOURCE += gsm_ms.cpp
95
96 endif
97
98 endif
99
100
101 if ENABLE_SS5
102
103 SS5_INCLUDE = -DWITH_SS5
104
105 SS5_SOURCE = ss5.cpp ss5_encode.c ss5_decode.c
106
107 endif
108
109 SIP_LIB =
110
111 if ENABLE_SIP
112
113 # FIXME: remove that
114 #pkgconfigdir = $(libdir)/pkgconfig
115 #pkgconfig_DATA = sofia-sip-ua.pc
116
117 SIP_INCLUDE = -DWITH_SIP $(SOFIA_CFLAGS)
118
119 SIP_SOURCE = sip.cpp
120
121 SIP_LIB += $(SOFIA_LIBS)
122
123 endif
124
125 bin_PROGRAMS = lcradmin gentones genwave
126
127 sbin_PROGRAMS = lcr genrc genextension
128
129 if ENABLE_ASTERISK_CHANNEL_DRIVER
130 noinst_PROGRAMS = chan_lcr.so
131 chan_lcr_so_SOURCES =
132 chan_lcr_so_LDFLAGS = -shared
133 chan_lcr_so_LDADD = chan_lcr.po options.po callerid.po select.po
134
135 # List chan_lcr specific sources for make dist
136 EXTRA_chan_lcr_so_SOURCES = chan_lcr.c chan_lcr.h
137
138
139 chan_lcr.po: chan_lcr.c chan_lcr.h
140         $(CC) $(INCLUDES) $(AST_CFLAGS) $(CPPFLAGS) $(CFLAGS) -D_GNU_SOURCE -fPIC -c $< -o $@
141
142 callerid.po: callerid.c callerid.h
143         $(CC) $(INCLUDES) -D_GNU_SOURCE $(CPPFLAGS) $(CFLAGS) -fPIC -c $< -o $@
144
145 options.po: options.c options.h
146         $(CC) $(INCLUDES) -D_GNU_SOURCE $(CPPFLAGS) $(CFLAGS) -fPIC -c $< -o $@
147
148 select.po: select.c select.h
149         $(CC) $(INCLUDES) -D_GNU_SOURCE $(CPPFLAGS) $(CFLAGS) -fPIC -c $< -o $@
150
151 install-exec-hook: chan_lcr.so
152         $(INSTALL) -d '$(DESTDIR)$(astmoddir)'
153         $(INSTALL) chan_lcr.so '$(DESTDIR)$(astmoddir)'
154
155 uninstall-hook:
156         cd '$(DESTDIR)$(astmoddir)' && rm -f chan_lcr.so
157 endif
158
159 INCLUDES = $(all_includes) $(MISDN_INCLUDE) $(GSM_INCLUDE) $(SS5_INCLUDE) $(SIP_INCLUDE) -Wall $(INSTALLATION_DEFINES)
160
161 lcr_SOURCES = \
162         main.c select.c trace.c options.c tones.c alawulaw.c cause.c interface.c message.c callerid.c socket_server.c \
163         port.cpp vbox.cpp remote.cpp \
164         $(MISDN_SOURCE) $(GSM_SOURCE) $(SS5_SOURCE) $(SIP_SOURCE) \
165         endpoint.cpp endpointapp.cpp \
166         appbridge.cpp apppbx.cpp route.c action.cpp action_efi.cpp action_vbox.cpp extension.c mail.c \
167         join.cpp joinpbx.cpp
168
169 lcr_LDADD = $(LIBCRYPTO) $(MISDN_LIB) -lpthread $(GSM_LIB) $(SIP_LIB)
170
171
172 lcradmin_SOURCES = lcradmin.c cause.c options.c
173 genextension_SOURCES = genext.c options.c extension.c
174
175
176 # List all headers for make dist
177 noinst_HEADERS = \
178         main.h macro.h select.h trace.h options.h tones.h alawulaw.h cause.h interface.h \
179         message.h callerid.h socket_server.h port.h vbox.h endpoint.h endpointapp.h \
180         appbridge.h apppbx.h route.h extension.h join.h joinpbx.h lcrsocket.h
181
182 noinst_HEADERS += myisdn.h mISDN.h dss1.h crypt.h remote.h
183 noinst_HEADERS += ss5.h ss5_encode.h ss5_decode.h
184 noinst_HEADERS += mncc.h gsm.h gsm_audio.h gsm_bs.h gsm_ms.h
185 noinst_HEADERS += ie.cpp sip.h
186
187
188 # Special install function to preserve existing configs.
189 # Optimization with equivalen results are welcome
190 CONFIGFILES = options.conf interface.conf routing.conf directory.list
191 TONEDIRS = tones_american tones_efi tones_german vbox_english vbox_german
192
193 EXTRA_DIST = default debian $(TONEDIRS)
194
195 install-data-hook:
196         @fns='strcpy strncpy strcat strncat sprintf snprintf' ; \
197         files=$$( find $(srcdir) -type f -name "*.c*" \
198           | $(GREP) -v -e chan_lcr.c -e callerid.c ) ; \
199         test -z "$$files" || { for fn in $$fns ; do \
200           $(GREP) -n $$fn $$files ; if test $$? = 0 ; then \
201             ( echo "dont use $$fn, use makro instead." ; exit -1 ) ; \
202           fi ; \
203         done ; }
204         mkdir -p '$(DESTDIR)$(CONFIGdir)'
205         mkdir -p '$(DESTDIR)$(SHAREdir)'
206         mkdir -p '$(DESTDIR)$(LOGdir)'
207         mkdir -p '$(DESTDIR)$(EXTENSIONdir)'
208         @fs='$(CONFIGFILES)' ; for f in $$fs ; do \
209           if test -a "$(DESTDIR)$(CONFIGdir)/$$f" ; then \
210             echo "NOTE: $$f already exists, not changed." ; \
211           else $(INSTALL) -m 644 $(srcdir)/default/$$f "$(DESTDIR)$(CONFIGdir)/" ; fi ; \
212         done
213         @if test -a "$(DESTDIR)$(CONFIGdir)/numbering_int.conf" ; then \
214                 echo "NOTE: numbering_int.conf is obsolete, please use routing." ; fi
215         @if test -a "$(DESTDIR)$(CONFIGdir)/numbering_ext.conf" ; then \
216                 echo "NOTE: numbering_ext.conf is obsolete, please use routing." ; fi
217         @ds='$(TONEDIRS)' ; for d in $$ds ; do \
218           destdir="$(DESTDIR)$(SHAREdir)/$$d" ; \
219           if test -a "$$destdir" ; then \
220             echo "NOTE: $$d already exists, not overwritten." ; \
221           else mkdir -p "$$destdir" ; cp -a $(srcdir)/$$d/* "$$destdir/" ; fi ; \
222         done
223
224
225 # Because distuninstallcheck expects relative filenames, we cannot
226 # replace './' with $(prefix) in _listfiles. Therefore we do it the
227 # other way around to filter out configuration files and tones.
228 distcheck_CONFIGdir = echo $(CONFIGdir) | sed 's|^$(prefix)/|./|'
229 distcheck_SHAREdir  = echo $(SHAREdir)  | sed 's|^$(prefix)/|./|'
230
231 distuninstallcheck_listfiles = find . -type f -print \
232         | $(GREP) -v "$$( $(distcheck_CONFIGdir) )" \
233         | $(GREP) -v "$$( $(distcheck_SHAREdir) )"
234
235
236 clean-generic:
237         rm -f *.po
238
239 # test rule, nothing important
240 #echo:
241 #       -echo $(all_libraries) >&2
242
243 # CAUTION: CRUDE CRUDE HACK !!
244 # This transforms all compiling and linking calls from gcc into g++
245 # This should better be removed and all .c files renamed to .cpp
246 COMPILE=$(CXXCOMPILE)
247 LINK=$(CXXLINK)
248
249