utils dir: Remove no longer needed traces of refcounter except in the clean make...
[asterisk/asterisk.git] / utils / Makefile
1 #
2 # Asterisk -- An open source telephony toolkit.
3
4 # Various utilities
5 #
6 # Copyright (C) 1999-2006, Digium
7 #
8 # Mark Spencer <markster@digium.com>
9 #
10 # This program is free software, distributed under the terms of
11 # the GNU General Public License
12 #
13
14 ASTTOPDIR?=..
15 -include $(ASTTOPDIR)/menuselect.makeopts
16
17 .PHONY: clean all uninstall
18
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)
31 UTILS:=$(ALL_UTILS)
32
33 LIBS += $(BKTR_LIB) # astobj2 with devmode uses backtrace
34
35 _ASTCFLAGS+=-DSTANDALONE
36
37 include $(ASTTOPDIR)/Makefile.rules
38
39 ifeq ($(OSARCH),SunOS)
40   LIBS+=-lsocket -lnsl
41   UTILS:=$(filter-out muted,$(UTILS))
42 endif
43
44 ifeq ($(OSARCH),OpenBSD)
45   UTILS:=$(filter-out muted,$(UTILS))
46 endif
47
48 ifeq ($(OSARCH),cygwin)
49   UTILS:=$(filter-out muted,$(UTILS))
50 endif
51
52 ifeq ($(OSARCH),mingw32)
53   UTILS:=
54 endif
55
56 ifneq ($(findstring darwin,$(OSARCH)),)
57   AUDIO_LIBS=-framework CoreAudio
58 endif
59
60 ifeq ($(POPT_LIB),)
61   UTILS:=$(filter-out smsq,$(UTILS))
62 endif
63
64 ifeq ($(NEWT_LIB),)
65   UTILS:=$(filter-out astman,$(UTILS))
66 endif
67
68 ifneq ($(filter pbx_ael,$(MENUSELECT_PBX)),)
69   UTILS:=$(filter-out aelparse,$(UTILS))
70   UTILS:=$(filter-out conf2ael,$(UTILS))
71 endif
72
73 all: $(UTILS)
74
75 install:
76         for x in $(UTILS); do \
77                 if [ "$$x" != "none" ]; then \
78                         $(INSTALL) -m 755 $$x "$(DESTDIR)$(ASTSBINDIR)/$$x"; \
79                 fi; \
80         done 
81
82 uninstall:
83         for x in $(ALL_UTILS); do rm -f "$(DESTDIR)$(ASTSBINDIR)/$$x"; done
84
85 clean:
86         rm -f *.o $(ALL_UTILS) check_expr
87         rm -f .*.d
88         rm -f *.s *.i
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
91         rm -f threadstorage.c
92         rm -f utils.c strings.c poll.c version.c sha1.c astobj2.c refcounter
93         rm -f db1-ast/.*.d
94         @$(MAKE) -C db1-ast clean
95
96 md5.c: $(ASTTOPDIR)/main/md5.c
97         $(ECHO_PREFIX) echo "   [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
98         $(CMD_PREFIX) cp "$<" "$@"
99
100 astman: astman.o md5.o
101 astman: LIBS+=$(NEWT_LIB)
102 astman.o: _ASTCFLAGS+=-DNO_MALLOC_DEBUG
103
104 stereorize: stereorize.o frame.o
105 stereorize: LIBS+=-lm
106
107 hashtab.c: $(ASTTOPDIR)/main/hashtab.c
108         $(ECHO_PREFIX) echo "   [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
109         $(CMD_PREFIX) cp "$<" "$@"
110
111 lock.c: $(ASTTOPDIR)/main/lock.c
112         $(ECHO_PREFIX) echo "   [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
113         $(CMD_PREFIX) cp "$<" "$@"
114
115 strcompat.c: $(ASTTOPDIR)/main/strcompat.c
116         $(ECHO_PREFIX) echo "   [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
117         $(CMD_PREFIX) cp "$<" "$@"
118
119 pval.c: $(ASTTOPDIR)/res/ael/pval.c
120         $(ECHO_PREFIX) echo "   [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
121         $(CMD_PREFIX) cp "$<" "$@"
122
123 ast_expr2.c: $(ASTTOPDIR)/main/ast_expr2.c
124         $(ECHO_PREFIX) echo "   [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
125         $(CMD_PREFIX) cp "$<" "$@"
126
127 ast_expr2.h: $(ASTTOPDIR)/main/ast_expr2.h
128         $(ECHO_PREFIX) echo "   [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
129         $(CMD_PREFIX) cp "$<" "$@"
130
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
135
136 check_expr: check_expr.o ast_expr2.o ast_expr2f.o strcompat.o threadstorage.o clicompat.o
137
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
142
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" "$@"
149
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" "$@"
156
157 aelparse.o: _ASTCFLAGS+=-I$(ASTTOPDIR)/res -Wno-unused
158 aelparse: LIBS+=-lm
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
160
161 threadstorage.c: $(ASTTOPDIR)/main/threadstorage.c
162         $(ECHO_PREFIX) echo "   [CP] $(subst $(ASTTOPDIR)/,,$<) -> $@"
163         $(CMD_PREFIX) cp "$<" "$@"
164
165
166 extconf.o: extconf.c
167
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
169
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
180
181 smsq: smsq.o strcompat.o
182 smsq: LIBS+=$(POPT_LIB)
183
184 streamplayer: streamplayer.o
185
186 muted: muted.o
187 muted: LIBS+=$(AUDIO_LIBS)
188 muted: _ASTCFLAGS:=$(filter-out -Werror,$(_ASTCFLAGS))
189
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
193
194 astdb2sqlite3: LIBS+=$(SQLITE3_LIB)
195 astdb2sqlite3: _ASTCFLAGS+=$(SQLITE3_INCLUDE)
196 astdb2sqlite3: db1-ast/libdb1.a
197
198 astdb2bdb: LIBS+=$(SQLITE3_LIB)
199 astdb2bdb: _ASTCFLAGS+=$(SQLITE3_INCLUDE)
200 astdb2bdb: db1-ast/libdb1.a
201
202 ifneq ($(wildcard .*.d),)
203    include .*.d
204 endif