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