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