2 # Asterisk -- An open source telephony toolkit.
6 # Copyright (C) 1999-2006, Digium
8 # Mark Spencer <markster@digium.com>
10 # This program is free software, distributed under the terms of
11 # the GNU General Public License
15 -include $(ASTTOPDIR)/menuselect.makeopts
17 .PHONY: clean all uninstall
19 # to get check_expr, add it to the ALL_UTILS list -- this is a somewhat old checking
20 # program that wants an ael file for input, and will check each $[] expr for
21 # possible (old) problems, like spacing around operators, which dates back to
22 # the 1.2 days. The neat part is that it will actually evaluate the expressions.
23 # Users could use this to quickly check expressions in their .ael file.
24 # to get check_expr2, add it to the ALL_UTILS list -- this is a program that will
25 # read in a file containing expressions (as if they were in $[ ]), one per line.
26 # It will, of course signal any syntax errors. Devs (like murf) should use this whenever
27 # changes are made to ast_expr2.y or ast_expr2.fl (or the corresponding .c files),
28 # as a regression test. Others (mere mortals?) need not bother, but they are
29 # more than welcome to play! The regression test itself is in expr2.testinput.
30 ALL_UTILS:=$(MENUSELECT_UTILS)
33 LIBS += $(BKTR_LIB) # astobj2 with devmode uses backtrace
35 _ASTCFLAGS+=-DSTANDALONE
37 include $(ASTTOPDIR)/Makefile.rules
39 ifeq ($(OSARCH),SunOS)
43 ifeq ($(OSARCH),mingw32)
47 ifneq ($(findstring darwin,$(OSARCH)),)
48 AUDIO_LIBS=-framework CoreAudio
52 UTILS:=$(filter-out smsq,$(UTILS))
56 UTILS:=$(filter-out astman,$(UTILS))
59 ifneq ($(filter pbx_ael,$(MENUSELECT_PBX)),)
60 UTILS:=$(filter-out aelparse,$(UTILS))
66 for x in $(UTILS); do \
67 if [ "$$x" != "none" ]; then \
68 $(INSTALL) -m 755 $$x "$(DESTDIR)$(ASTSBINDIR)/$$x"; \
73 for x in $(ALL_UTILS); do rm -f "$(DESTDIR)$(ASTSBINDIR)/$$x"; done
76 rm -f *.o $(ALL_UTILS) check_expr
79 rm -f astmm.c md5.c strcompat.c ast_expr2.c ast_expr2.h ast_expr2f.c pbx_ael.c pval.c hashtab.c lock.c
80 rm -f aelparse.c aelbison.c
82 rm -f utils.c strings.c poll.c version.c sha1.c astobj2.c refcounter
84 @$(MAKE) -C db1-ast clean
87 md5.c: $(ASTTOPDIR)/main/md5.c
88 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
89 $(CMD_PREFIX) cp "$<" "$@"
91 astman: astman.o md5.o
92 astman: LIBS+=$(NEWT_LIB)
94 stereorize: stereorize.o frame.o
97 astmm.c: $(ASTTOPDIR)/main/astmm.c
98 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
99 $(CMD_PREFIX) cp "$<" "$@"
101 hashtab.c: $(ASTTOPDIR)/main/hashtab.c
102 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
103 $(CMD_PREFIX) cp "$<" "$@"
105 lock.c: $(ASTTOPDIR)/main/lock.c
106 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
107 $(CMD_PREFIX) cp "$<" "$@"
109 strcompat.c: $(ASTTOPDIR)/main/strcompat.c
110 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
111 $(CMD_PREFIX) cp "$<" "$@"
113 pval.c: $(ASTTOPDIR)/res/ael/pval.c
114 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
115 $(CMD_PREFIX) cp "$<" "$@"
117 ast_expr2.c: $(ASTTOPDIR)/main/ast_expr2.c
118 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
119 $(CMD_PREFIX) cp "$<" "$@"
121 ast_expr2.h: $(ASTTOPDIR)/main/ast_expr2.h
122 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
123 $(CMD_PREFIX) cp "$<" "$@"
125 ast_expr2f.c: $(ASTTOPDIR)/main/ast_expr2f.c
126 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
127 $(CMD_PREFIX) cp "$<" "$@"
128 ast_expr2f.o: _ASTCFLAGS+=-I$(ASTTOPDIR)/main -Wno-unused
130 check_expr: check_expr.o ast_expr2.o ast_expr2f.o strcompat.o threadstorage.o clicompat.o astmm.o
132 aelbison.c: $(ASTTOPDIR)/res/ael/ael.tab.c
133 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
134 $(CMD_PREFIX) cp "$<" "$@"
135 aelbison.o: _ASTCFLAGS+=-I$(ASTTOPDIR)/res/ael -DYYENABLE_NLS=0
137 pbx_ael.c: $(ASTTOPDIR)/pbx/pbx_ael.c
138 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
139 $(CMD_PREFIX) cp "$<" "$@"
140 $(ECHO_PREFIX) echo " [SED] $@"
141 $(CMD_PREFIX) sed 's/ast_debug([[:digit:]][[:digit:]]*/ast_log(LOG_DEBUG/' "$@" > "$@.new"
142 $(CMD_PREFIX) mv "$@.new" "$@"
144 pbx_ael.o: _ASTCFLAGS+=-DAST_MODULE_SELF_SYM=__internal_pbx_ael_self
146 aelparse.c: $(ASTTOPDIR)/res/ael/ael_lex.c
147 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
148 $(CMD_PREFIX) cp "$<" "$@"
149 $(ECHO_PREFIX) echo " [SED] $@"
150 $(CMD_PREFIX) sed 's/ast_debug([[:digit:]][[:digit:]]*/ast_log(LOG_DEBUG/' "$@" > "$@.new"
151 $(CMD_PREFIX) mv "$@.new" "$@"
153 aelparse.o: _ASTCFLAGS+=-I$(ASTTOPDIR)/res -Wno-unused $(AST_NO_FORMAT_TRUNCATION)
154 aelparse: LIBS+=-lm $(AST_CLANG_BLOCKS_LIBS)
155 aelparse: aelparse.o aelbison.o pbx_ael.o hashtab.o lock.o ael_main.o ast_expr2f.o ast_expr2.o strcompat.o pval.o extconf.o astmm.o
157 threadstorage.c: $(ASTTOPDIR)/main/threadstorage.c
158 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
159 $(CMD_PREFIX) cp "$<" "$@"
162 extconf.o: _ASTCFLAGS+=$(call get_menuselect_cflags,DETECT_DEADLOCKS)
165 check_expr2: $(ASTTOPDIR)/main/ast_expr2f.c $(ASTTOPDIR)/main/ast_expr2.c $(ASTTOPDIR)/main/ast_expr2.h astmm.o
166 $(ECHO_PREFIX) echo " [CC] ast_expr2f.c -> ast_expr2fz.o"
167 $(CC) -g -c -I$(ASTTOPDIR)/include $(_ASTCFLAGS) -DYY_NO_INPUT $(ASTTOPDIR)/main/ast_expr2f.c -o ast_expr2fz.o
168 $(ECHO_PREFIX) echo " [CC] ast_expr2.c -> ast_expr2z.o"
169 $(CC) -g -c -I$(ASTTOPDIR)/include $(_ASTCFLAGS) -DSTANDALONE2 $(ASTTOPDIR)/main/ast_expr2.c -o ast_expr2z.o
170 $(ECHO_PREFIX) echo " [LD] ast_expr2fz.o ast_expr2z.o -> check_expr2"
171 $(CC) -g -o check_expr2 ast_expr2fz.o ast_expr2z.o astmm.o -lm $(_ASTLDFLAGS)
172 $(ECHO_PREFIX) echo " [RM] ast_expr2fz.o ast_expr2z.o"
173 rm ast_expr2z.o ast_expr2fz.o
174 ifneq ($(CROSS_COMPILING),1)
175 ./check_expr2 expr2.testinput
178 smsq: smsq.o strcompat.o
179 smsq: LIBS+=$(POPT_LIB)
181 streamplayer: streamplayer.o
183 CHECK_SUBDIR: # do nothing, just make sure that we recurse in the subdir/
184 db1-ast/libdb1.a: CHECK_SUBDIR
185 _ASTCFLAGS="$(_ASTCFLAGS) -Wno-strict-aliasing" ASTCFLAGS="$(ASTCFLAGS)" $(MAKE) -C db1-ast libdb1.a
187 astdb2sqlite3: LIBS+=$(SQLITE3_LIB)
188 astdb2sqlite3: _ASTCFLAGS+=$(SQLITE3_INCLUDE)
189 astdb2sqlite3: db1-ast/libdb1.a
191 astdb2bdb: LIBS+=$(SQLITE3_LIB)
192 astdb2bdb: _ASTCFLAGS+=$(SQLITE3_INCLUDE)
193 astdb2bdb: db1-ast/libdb1.a
195 conf_bridge_binaural_hrir_importer: LIBS+=$(SNDFILE_LIB)
196 conf_bridge_binaural_hrir_importer.o: _ASTCFLAGS+=$(SNDFILE_INCLUDE)
198 ifneq ($(wildcard .*.d),)