2 # Asterisk -- A telephony toolkit for Linux.
4 # Makefile to build main Asterisk binary
6 # Copyright (C) 1999-2006, Digium, Inc.
8 # Mark Spencer <markster@digium.com>
10 # This program is free software, distributed under the terms of
11 # the GNU General Public License
14 -include $(ASTTOPDIR)/menuselect.makeopts $(ASTTOPDIR)/menuselect.makedeps $(ASTTOPDIR)/makeopts.embed_rules
18 include $(ASTTOPDIR)/Makefile.moddir_rules
20 OBJS= tcptls.o io.o sched.o logger.o frame.o loader.o config.o channel.o \
21 translate.o file.o pbx.o cli.o md5.o term.o heap.o \
22 ulaw.o alaw.o callerid.o fskmodem.o image.o app.o \
23 cdr.o tdd.o acl.o udptl.o manager.o asterisk.o \
24 dsp.o chanvars.o indications.o autoservice.o db.o privacy.o \
25 astmm.o astfd.o enum.o srv.o dns.o aescrypt.o aestab.o aeskey.o \
26 utils.o plc.o jitterbuf.o dnsmgr.o devicestate.o \
27 netsock.o slinfactory.o ast_expr2.o ast_expr2f.o \
28 cryptostub.o sha1.o http.o fixedjitterbuf.o abstract_jb.o \
29 strcompat.o threadstorage.o dial.o event.o adsistub.o audiohook.o \
30 astobj2.o hashtab.o global_datastores.o version.o \
31 features.o taskprocessor.o timing.o datastore.o xml.o xmldoc.o \
32 strings.o bridging.o poll.o rtp_engine.o stun.o autochan.o
34 # we need to link in the objects statically, not as a library, because
35 # otherwise modules will not have them available if none of the static
37 OBJS+=stdtime/localtime.o
39 # At the moment say.o is an optional component which can be overridden
43 AST_LIBS += $(OPENSSL_LIB)
44 AST_LIBS += $(BKTR_LIB)
45 AST_LIBS += $(LIBXML2_LIB)
47 ifneq ($(findstring $(OSARCH), linux-gnu uclinux linux-uclibc linux-gnueabi ),)
48 ifneq ($(findstring LOADABLE_MODULES,$(MENUSELECT_CFLAGS)),)
54 AST_LIBS+=-lpthread $(EDITLINE_LIB) -lm -lresolv
56 AST_LIBS+=$(EDITLINE_LIB) -lm
59 ifneq ($(findstring darwin,$(OSARCH)),)
61 ifneq ($(findstring LOADABLE_MODULES,$(MENUSELECT_CFLAGS)),)
65 # These are used for all but Darwin
66 ifneq ($(findstring LOADABLE_MODULES,$(MENUSELECT_CFLAGS)),)
67 ASTLINK+=-Wl,--export-dynamic
69 ASTLINK+=${GC_LDFLAGS}
71 ifneq ($(findstring BSD,$(OSARCH)),)
72 LDFLAGS+=-L/usr/local/lib
76 ifeq ($(OSARCH),FreeBSD)
77 # -V is understood by BSD Make, not by GNU make.
78 BSDVERSION=$(shell make -V OSVERSION -f /usr/share/mk/bsd.port.subdir.mk)
79 AST_LIBS+=$(shell if test $(BSDVERSION) -lt 502102 ; then echo "-lc_r"; else echo "-pthread"; fi)
83 ifneq ($(findstring $(OSARCH), mingw32 cygwin ),)
84 AST_LIBS+=-lminires -ldl
85 ASTLINK+= -shared -Wl,--out-implib,libasterisk.a
87 ifeq ($(OSARCH),NetBSD)
88 AST_LIBS+=-lpthread -lcrypto -lm -L/usr/pkg/lib $(EDITLINE_LIB)
91 ifeq ($(OSARCH),OpenBSD)
92 AST_LIBS+=-lcrypto -lpthread -lm $(EDITLINE_LIB)
95 ifeq ($(OSARCH),SunOS)
96 AST_LIBS+=-lpthread -ldl -lnsl -lsocket -lresolv -L/opt/ssl/lib -L/usr/local/ssl/lib
100 ifneq ($(findstring USE_HOARD_ALLOCATOR,$(MENUSELECT_CFLAGS)),)
101 ifneq ($(HOARD_LIB),)
102 AST_LIBS+=$(HOARD_LIB)
107 ASTLINK+=-Wl,--version-script,asterisk.exports
110 CHECK_SUBDIR: # do nothing, just make sure that we recurse in the subdir/
112 editline/libedit.a: CHECK_SUBDIR
113 cd editline && test -f config.h || CFLAGS="$(PTHREAD_CFLAGS) $(subst $(ASTTOPDIR),../../,$(ASTCFLAGS:-Werror=))" LDFLAGS="$(ASTLDFLAGS)" ./configure --build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) --with-ncurses=$(NCURSES_DIR) --with-curses=$(CURSES_DIR) --with-termcap=$(TERMCAP_DIR) --with-tinfo=$(TINFO_DIR)
114 $(MAKE) -C editline libedit.a
116 db1-ast/libdb1.a: CHECK_SUBDIR
117 CFLAGS="$(subst $(ASTTOPDIR),../../,$(ASTCFLAGS))" LDFLAGS="$(ASTLDFLAGS)" $(MAKE) -C db1-ast libdb1.a
119 ast_expr2.c ast_expr2.h:
120 bison -o $@ -d --name-prefix=ast_yy ast_expr2.y
123 flex -o $@ ast_expr2.fl
124 sed 's@#if __STDC_VERSION__ >= 199901L@#if !defined __STDC_VERSION__ || __STDC_VERSION__ >= 199901L@' $@ > $@.fix
125 echo "#include \"asterisk.h\"" > $@
130 ast_expr2f.o: ASTCFLAGS+=-Wno-unused
132 testexpr2: ast_expr2f.c ast_expr2.c ast_expr2.h
133 $(CC) -g -c -Iinclude -DSTANDALONE ast_expr2f.c
134 $(CC) -g -c -Iinclude -DSTANDALONE ast_expr2.c
135 $(CC) -g -o testexpr2 ast_expr2f.o ast_expr2.o -lm
136 rm ast_expr2.o ast_expr2f.o
138 ifneq ($(findstring ENABLE_UPLOADS,$(MENUSELECT_CFLAGS)),)
139 http.o: ASTCFLAGS+=$(GMIME_INCLUDE)
142 stdtime/localtime.o: ASTCFLAGS+=$(AST_NO_STRICT_OVERFLOW) -Wno-format-nonliteral
144 AST_EMBED_LDSCRIPTS:=$(sort $(EMBED_LDSCRIPTS))
145 AST_EMBED_LDFLAGS:=$(foreach dep,$(EMBED_LDFLAGS),$(value $(dep)))
146 AST_EMBED_LIBS:=$(foreach dep,$(EMBED_LIBS),$(value $(dep)))
147 OBJS:=$(sort $(OBJS))
149 ifneq ($(wildcard ../channels/h323/Makefile.ast),)
150 include ../channels/h323/Makefile.ast
156 ifneq ($(findstring $(OSARCH), mingw32 cygwin ),)
157 MAIN_TGT:=asterisk.dll
159 mv cygload.exe asterisk.exe
161 cygload: asterisk.dll
166 ifneq ($(findstring ENABLE_UPLOADS,$(MENUSELECT_CFLAGS)),)
167 GMIMELDFLAGS+=$(GMIME_LIB)
170 $(MAIN_TGT): $(OBJS) editline/libedit.a db1-ast/libdb1.a $(AST_EMBED_LDSCRIPTS) asterisk.exports
171 @$(CC) -c -o buildinfo.o $(ASTCFLAGS) buildinfo.c
172 $(ECHO_PREFIX) echo " [LD] $(OBJS) editline/libedit.a db1-ast/libdb1.a $(AST_EMBED_LDSCRIPTS) -> $@"
173 ifneq ($(findstring chan_h323,$(MENUSELECT_CHANNELS)),)
174 $(CMD_PREFIX) $(CC) $(STATIC_BUILD) -o $@ $(ASTLINK) $(AST_EMBED_LDFLAGS) $(ASTLDFLAGS) $(OBJS) editline/libedit.a db1-ast/libdb1.a $(AST_EMBED_LDSCRIPTS) buildinfo.o $(AST_LIBS) $(AST_EMBED_LIBS) $(GMIMELDFLAGS)
176 $(CMD_PREFIX) $(CXX) $(STATIC_BUILD) -o $@ $(ASTLINK) $(AST_EMBED_LDFLAGS) $(ASTLDFLAGS) $(H323LDFLAGS) $(OBJS) editline/libedit.a db1-ast/libdb1.a $(AST_EMBED_LDSCRIPTS) buildinfo.o $(AST_LIBS) $(AST_EMBED_LIBS) $(H323LDLIBS) $(GMIMELDFLAGS)
182 @if [ -f editline/Makefile ]; then $(MAKE) -C editline distclean ; fi
183 @$(MAKE) -C db1-ast clean
184 @$(MAKE) -C stdtime clean
185 rm -f libresample/src/*.o