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)
41 UTILS:=$(filter-out muted,$(UTILS))
44 ifeq ($(OSARCH),OpenBSD)
45 UTILS:=$(filter-out muted,$(UTILS))
48 ifeq ($(OSARCH),cygwin)
49 UTILS:=$(filter-out muted,$(UTILS))
52 ifeq ($(OSARCH),mingw32)
56 ifneq ($(findstring darwin,$(OSARCH)),)
57 AUDIO_LIBS=-framework CoreAudio
61 UTILS:=$(filter-out smsq,$(UTILS))
65 UTILS:=$(filter-out astman,$(UTILS))
68 ifneq ($(filter pbx_ael,$(MENUSELECT_PBX)),)
69 UTILS:=$(filter-out aelparse,$(UTILS))
70 UTILS:=$(filter-out conf2ael,$(UTILS))
76 for x in $(UTILS); do \
77 if [ "$$x" != "none" ]; then \
78 $(INSTALL) -m 755 $$x "$(DESTDIR)$(ASTSBINDIR)/$$x"; \
83 for x in $(ALL_UTILS); do rm -f "$(DESTDIR)$(ASTSBINDIR)/$$x"; done
86 rm -f *.o $(ALL_UTILS) check_expr
89 rm -f md5.c strcompat.c ast_expr2.c ast_expr2.h ast_expr2f.c pbx_ael.c pval.c hashtab.c lock.c
90 rm -f aelparse.c aelbison.c conf2ael
92 rm -f utils.c strings.c poll.c version.c sha1.c astobj2.c refcounter
94 @$(MAKE) -C db1-ast clean
96 md5.c: $(ASTTOPDIR)/main/md5.c
97 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
98 $(CMD_PREFIX) cp "$<" "$@"
100 astman: astman.o md5.o
101 astman: LIBS+=$(NEWT_LIB)
102 astman.o: _ASTCFLAGS+=-DNO_MALLOC_DEBUG
104 stereorize: stereorize.o frame.o
105 stereorize: LIBS+=-lm
107 hashtab.c: $(ASTTOPDIR)/main/hashtab.c
108 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
109 $(CMD_PREFIX) cp "$<" "$@"
111 lock.c: $(ASTTOPDIR)/main/lock.c
112 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
113 $(CMD_PREFIX) cp "$<" "$@"
115 strcompat.c: $(ASTTOPDIR)/main/strcompat.c
116 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
117 $(CMD_PREFIX) cp "$<" "$@"
119 pval.c: $(ASTTOPDIR)/res/ael/pval.c
120 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
121 $(CMD_PREFIX) cp "$<" "$@"
123 ast_expr2.c: $(ASTTOPDIR)/main/ast_expr2.c
124 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
125 $(CMD_PREFIX) cp "$<" "$@"
127 ast_expr2.h: $(ASTTOPDIR)/main/ast_expr2.h
128 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
129 $(CMD_PREFIX) cp "$<" "$@"
131 ast_expr2f.c: $(ASTTOPDIR)/main/ast_expr2f.c
132 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
133 $(CMD_PREFIX) cp "$<" "$@"
134 ast_expr2f.o: _ASTCFLAGS+=-I$(ASTTOPDIR)/main -Wno-unused
136 check_expr: check_expr.o ast_expr2.o ast_expr2f.o strcompat.o threadstorage.o clicompat.o
138 aelbison.c: $(ASTTOPDIR)/res/ael/ael.tab.c
139 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
140 $(CMD_PREFIX) cp "$<" "$@"
141 aelbison.o: _ASTCFLAGS+=-I$(ASTTOPDIR)/res/ael -DYYENABLE_NLS=0
143 pbx_ael.c: $(ASTTOPDIR)/pbx/pbx_ael.c
144 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
145 $(CMD_PREFIX) cp "$<" "$@"
146 $(ECHO_PREFIX) echo " [SED] $@"
147 $(CMD_PREFIX) sed 's/ast_debug([[:digit:]][[:digit:]]*/ast_log(LOG_DEBUG/' "$@" > "$@.new"
148 $(CMD_PREFIX) mv "$@.new" "$@"
150 aelparse.c: $(ASTTOPDIR)/res/ael/ael_lex.c
151 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
152 $(CMD_PREFIX) cp "$<" "$@"
153 $(ECHO_PREFIX) echo " [SED] $@"
154 $(CMD_PREFIX) sed 's/ast_debug([[:digit:]][[:digit:]]*/ast_log(LOG_DEBUG/' "$@" > "$@.new"
155 $(CMD_PREFIX) mv "$@.new" "$@"
157 aelparse.o: _ASTCFLAGS+=-I$(ASTTOPDIR)/res -Wno-unused
159 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
161 threadstorage.c: $(ASTTOPDIR)/main/threadstorage.c
162 $(ECHO_PREFIX) echo " [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
163 $(CMD_PREFIX) cp "$<" "$@"
168 conf2ael: conf2ael.o ast_expr2f.o ast_expr2.o hashtab.o lock.o aelbison.o aelparse.o pbx_ael.o pval.o extconf.o strcompat.o
170 check_expr2: $(ASTTOPDIR)/main/ast_expr2f.c $(ASTTOPDIR)/main/ast_expr2.c $(ASTTOPDIR)/main/ast_expr2.h
171 $(ECHO_PREFIX) echo " [CC] ast_expr2f.c -> ast_expr2fz.o"
172 $(CC) -g -c -I$(ASTTOPDIR)/include -DSTANDALONE $(ASTTOPDIR)/main/ast_expr2f.c -o ast_expr2fz.o
173 $(ECHO_PREFIX) echo " [CC] ast_expr2.c -> ast_expr2z.o"
174 $(CC) -g -c -I$(ASTTOPDIR)/include -DSTANDALONE2 $(ASTTOPDIR)/main/ast_expr2.c -o ast_expr2z.o
175 $(ECHO_PREFIX) echo " [LD] ast_expr2fz.o ast_expr2z.o -> check_expr2"
176 $(CC) -g -o check_expr2 ast_expr2fz.o ast_expr2z.o -lm
177 $(ECHO_PREFIX) echo " [RM] ast_expr2fz.o ast_expr2z.o"
178 rm ast_expr2z.o ast_expr2fz.o
179 ./check_expr2 expr2.testinput
181 smsq: smsq.o strcompat.o
182 smsq: LIBS+=$(POPT_LIB)
184 streamplayer: streamplayer.o
187 muted: LIBS+=$(AUDIO_LIBS)
188 muted: _ASTCFLAGS:=$(filter-out -Werror,$(_ASTCFLAGS))
190 CHECK_SUBDIR: # do nothing, just make sure that we recurse in the subdir/
191 db1-ast/libdb1.a: CHECK_SUBDIR
192 _ASTCFLAGS="$(_ASTCFLAGS) -Wno-strict-aliasing" ASTCFLAGS="$(ASTCFLAGS)" $(MAKE) -C db1-ast libdb1.a
194 astdb2sqlite3: LIBS+=$(SQLITE3_LIB)
195 astdb2sqlite3: _ASTCFLAGS+=$(SQLITE3_INCLUDE)
196 astdb2sqlite3: db1-ast/libdb1.a
198 astdb2bdb: LIBS+=$(SQLITE3_LIB)
199 astdb2bdb: _ASTCFLAGS+=$(SQLITE3_INCLUDE)
200 astdb2bdb: db1-ast/libdb1.a
202 ifneq ($(wildcard .*.d),)