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