8e44c17aefd54a6d1fb3681d5c97e5a58163c24b
[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/extensions
32
33
34 #CONFIGdir=$(INSTALLdir)
35 #SHAREdir=$(INSTALLdir)
36 #LOGdir=$(INSTALLdir)
37 #EXTENSIONdir=$(INSTALLdir)/extensions
38
39 astmoddir = $(DESTDIR)/$(libdir)/asterisk/modules
40
41 INSTALLATION_DEFINES = \
42  -DCONFIG_DATA="\"$(CONFIGdir)\"" \
43  -DSHARE_DATA="\"$(SHAREdir)\"" \
44  -DLOG_DIR="\"$(LOGdir)\"" \
45  -DEXTENSION_DATA="\"$(EXTENSIONdir)\""
46
47 if ENABLE_GSM
48
49 GSM_INCLUDE = -DWITH_GSM -I./openbsc/include -I./libosmocore/include
50
51 GSM_SOURCE = gsm_audio.c gsm.cpp gsm_conf.c openbsc/src/bsc_init.c openbsc/src/vty_interface.c openbsc/src/vty_interface_layer3.c
52
53 GSM_LIB = /usr/lib/libgsm.a ./openbsc/src/libbsc.a ./openbsc/src/libmsc.a ./openbsc/src/libvty.a -L./libosmocore/src/ -losmocore -ldbi -lcrypt
54
55 #gsm_audio.po: gsm_audio.c gsm_audio.h
56 #       $(CC) -D_GNU_SOURCE -fPIC -c gsm_audio.c -o gsm_audio.po
57
58 endif
59
60 if ENABLE_SS5
61
62 SS5_INCLUDE = -DWITH_SS5
63
64 SS5_SOURCE = ss5.cpp ss5_encode.c ss5_decode.c
65
66 endif
67
68 bin_PROGRAMS = lcradmin gentones genwave
69
70 sbin_PROGRAMS = lcr genrc genextension
71
72 if ENABLE_ASTERISK_CHANNEL_DRIVER
73 noinst_PROGRAMS = chan_lcr.so
74 chan_lcr_so_SOURCES =
75 chan_lcr_so_LDFLAGS = -shared
76 chan_lcr_so_LDADD = chan_lcr.po bchannel.po options.po callerid.po select.po
77
78 chan_lcr.po: chan_lcr.c chan_lcr.h
79         $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c chan_lcr.c -o chan_lcr.po
80
81 bchannel.po: bchannel.c bchannel.h
82         $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c bchannel.c -o bchannel.po
83
84 callerid.po: callerid.c callerid.h
85         $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c callerid.c -o callerid.po
86
87 options.po: options.c options.h
88         $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c options.c -o options.po
89
90 select.po: select.c select.h
91         $(CC) $(INCLUDES) -D_GNU_SOURCE -fPIC -c select.c -o select.po
92
93 install-exec-hook:
94         mkdir -p $(astmoddir)
95         $(INSTALL) -d $(astmoddir)
96         $(INSTALL) chan_lcr.so $(astmoddir)
97 endif
98
99 INCLUDES = $(all_includes) $(GSM_INCLUDE) $(SS5_INCLUDE) -Wall $(INSTALLATION_DEFINES)
100
101 lcr_SOURCES = $(GSM_SOURCE) $(SS5_SOURCE) select.c action.cpp       mISDN.cpp        tones.c \
102         action_efi.cpp   crypt.cpp        mail.c           trace.c \
103         action_vbox.cpp  dss1.cpp         main.c           \
104         vbox.cpp alawulaw.c       endpoint.cpp     interface.c     message.c \
105         apppbx.cpp       endpointapp.cpp  join.cpp        options.c       \
106         extension.c      joinpbx.cpp     port.cpp \
107         callerid.c       joinremote.cpp  route.c \
108         cause.c          socket_server.c
109
110 lcr_LDADD = $(LIBCRYPTO) -lmisdn -lpthread $(GSM_LIB)
111
112
113 lcradmin_SOURCES = lcradmin.c cause.c options.c
114 genextension_SOURCES = genext.c options.c extension.c
115
116 # Special install function to preserve existing configs.
117 # Optimization with equivalen results are welcome
118
119 install-data-hook:
120         @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'
121         @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'
122         @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'
123         @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'
124         @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'
125         @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'
126         mkdir -p $(CONFIGdir)
127         mkdir -p $(SHAREdir)
128         mkdir -p $(LOGdir)
129         mkdir -p $(EXTENSIONdir)
130         @if test -a $(CONFIGdir)/options.conf ; then \
131                 echo "NOTE: options.conf already exists, not changed." ; else \
132                 cp -v default/options.conf $(CONFIGdir) ; fi
133         @if test -a $(CONFIGdir)/interface.conf ; then \
134                 echo "NOTE: interface.conf already exists, not changed." ; else \
135                 cp -v default/interface.conf $(CONFIGdir) ; fi
136         @if test -a $(CONFIGdir)/routing.conf ; then \
137                 echo "NOTE: routing.conf already exists, not changed." ; else \
138                 cp -v default/routing.conf $(CONFIGdir) ; fi
139 if ENABLE_GSM
140         @if test -a $(CONFIGdir)/gsm.conf ; then \
141                 echo "NOTE: gsm.conf already exists, not changed." ; else \
142                 cp -v default/gsm.conf $(CONFIGdir) ; fi
143         @if test -a $(CONFIGdir)/openbsc.cfg ; then \
144                 echo "NOTE: openbsc.cfg already exists, not changed." ; else \
145                 cp -v default/openbsc.cfg $(CONFIGdir) ; fi
146 endif
147         @if test -a $(CONFIGdir)/numbering_int.conf ; then \
148                 echo "NOTE: numbering_int.conf is obsolete, please use routing." ; fi
149         @if test -a $(CONFIGdir)/numbering_ext.conf ; then \
150                 echo "NOTE: numbering_ext.conf is obsolete, please use routing." ; fi
151         @if test -a $(CONFIGdir)/directory.list ; then \
152                 echo "NOTE: directory.list already exists, not changed." ; else \
153                 cp -v default/directory.list $(CONFIGdir) ; fi
154         @if test -a $(SHAREdir)/tones_american ; then \
155                 echo "NOTE: american tones already exists, not overwritten." ; else \
156                 cp -a tones_american $(SHAREdir) ; fi
157         @if test -a $(SHAREdir)/tones_german ; then \
158                 echo "NOTE: german tones already exists, not overwritten." ; else \
159                 cp -a tones_german $(SHAREdir) ; fi
160         @if test -a $(SHAREdir)/vbox_german ; then \
161                 echo "NOTE: german vbox tones already exists, not overwritten." ; else \
162                 cp -a vbox_german $(SHAREdir) ; fi
163         @if test -a $(SHAREdir)/vbox_english ; then \
164                 echo "NOTE: english vbox tones already exists, not overwritten." ; else \
165                 cp -a vbox_english $(SHAREdir) ; fi
166         @if test -a $(SHAREdir)/tones_efi ; then \
167                 echo "NOTE: special efi tones already exists, not overwritten." ; else \
168                 cp -a tones_efi $(SHAREdir) ; fi
169
170 clean-generic:
171         rm -f *.po
172
173 # test rule, nothing important
174 #echo:
175 #       -echo $(all_libraries) >&2
176
177 # CAUTION: CRUDE CRUDE HACK !!
178 # This transforms all compiling and linking calls from gcc into g++
179 # This should better be removed and all .c files renamed to .cpp
180 COMPILE=$(CXXCOMPILE)
181 LINK=$(CXXLINK)
182
183