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= 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 \
22 ulaw.o alaw.o callerid.o fskmodem.o image.o app.o \
23 cdr.o tdd.o acl.o rtp.o udptl.o manager.o asterisk.o \
24 dsp.o chanvars.o indications.o autoservice.o db.o privacy.o \
25 astmm.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 \
31 # we need to link in the objects statically, not as a library, because
32 # otherwise modules will not have them available if none of the static
34 OBJS+=stdtime/localtime.o
36 # At the moment say.o is an optional component which can be overridden
40 ifeq ($(wildcard /usr/include/sys/poll.h),)
42 ASTCFLAGS+=-DPOLLCOMPAT
45 ifeq ($(wildcard /usr/include/dlfcn.h),)
49 ifneq ($(findstring $(OSARCH), linux-gnu uclinux ),)
50 ifneq ($(findstring LOADABLE_MODULES,$(MENUSELECT_CFLAGS)),)
53 AST_LIBS+=-lpthread $(EDITLINE_LIB) -lm -lresolv
55 AST_LIBS+=$(EDITLINE_LIB) -lm
58 ifneq ($(findstring darwin,$(OSARCH)),)
60 ifneq ($(findstring LOADABLE_MODULES,$(MENUSELECT_CFLAGS)),)
64 # These are used for all but Darwin
65 ifneq ($(findstring LOADABLE_MODULES,$(MENUSELECT_CFLAGS)),)
66 ASTLINK+=-Wl,--export-dynamic
68 ASTLINK+=${GC_LDFLAGS}
70 ifneq ($(findstring BSD,$(OSARCH)),)
71 LDFLAGS+=-L/usr/local/lib
75 ifeq ($(OSARCH),FreeBSD)
79 ifeq ($(OSARCH),NetBSD)
80 AST_LIBS+=-lpthread -lcrypto -lm -L/usr/pkg/lib $(EDITLINE_LIB)
83 ifeq ($(OSARCH),OpenBSD)
84 AST_LIBS+=-lcrypto -lpthread -lm $(EDITLINE_LIB)
87 ifeq ($(OSARCH),SunOS)
88 AST_LIBS+=-lpthread -ldl -lnsl -lsocket -lresolv -L/opt/ssl/lib -L/usr/local/ssl/lib
93 cd editline && unset CFLAGS AST_LIBS && test -f config.h || CFLAGS="$(OPTIMIZE)" ./configure --build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)
94 $(MAKE) -C editline libedit.a
97 CFLAGS="$(ASTCFLAGS)" $(MAKE) -C db1-ast libdb1.a
99 ast_expr2.c ast_expr2.h:
100 bison -o $@ -d --name-prefix=ast_yy ast_expr2.y
103 flex -o $@ --full ast_expr2.fl
105 testexpr2: ast_expr2f.c ast_expr2.c ast_expr2.h
106 $(CC) -g -c -Iinclude -DSTANDALONE ast_expr2f.c
107 $(CC) -g -c -Iinclude -DSTANDALONE ast_expr2.c
108 $(CC) -g -o testexpr2 ast_expr2f.o ast_expr2.o
109 rm ast_expr2.o ast_expr2f.o
111 channel.o: CFLAGS+=$(ZAPTEL_INCLUDE)
113 AST_EMBED_LDSCRIPTS:=$(sort $(EMBED_LDSCRIPTS))
114 AST_EMBED_LDFLAGS:=$(foreach dep,$(EMBED_LDFLAGS),$(value $(dep)))
115 AST_EMBED_LIBS:=$(foreach dep,$(EMBED_LIBS),$(value $(dep)))
116 OBJS:=$(sort $(OBJS))
118 ifneq ($(wildcard ../channels/h323/Makefile.ast),)
119 include ../channels/h323/Makefile.ast
125 asterisk: $(OBJS) editline/libedit.a db1-ast/libdb1.a $(AST_EMBED_LDSCRIPTS)
126 @$(ASTTOPDIR)/build_tools/make_build_h > $(ASTTOPDIR)/include/asterisk/build.h.tmp
127 @if cmp -s $(ASTTOPDIR)/include/asterisk/build.h.tmp $(ASTTOPDIR)/include/asterisk/build.h ; then echo ; else \
128 mv $(ASTTOPDIR)/include/asterisk/build.h.tmp $(ASTTOPDIR)/include/asterisk/build.h ; \
130 @rm -f $(ASTTOPDIR)/include/asterisk/build.h.tmp
131 @$(CC) -c -o buildinfo.o $(CFLAGS) buildinfo.c
132 $(ECHO_PREFIX) echo " [LD] $^ -> $@"
133 $(CMD_PREFIX) $(CXX) $(STATIC_BUILD) -o $@ $(ASTLINK) $(AST_EMBED_LDFLAGS) $(LDFLAGS) $(H323LDFLAGS) $^ buildinfo.o $(AST_LIBS) $(AST_EMBED_LIBS) $(H323LDLIBS)
134 @$(ASTTOPDIR)/build_tools/strip_nonapi $@
139 @if [ -f editline/Makefile ]; then $(MAKE) -C editline distclean ; fi
140 @$(MAKE) -C db1-ast clean
141 @$(MAKE) -C stdtime clean