merge new_loader_completion branch, including (at least):
[asterisk/asterisk.git] / main / Makefile
1 #
2 # Asterisk -- A telephony toolkit for Linux.
3
4 # Makefile to build main Asterisk binary
5 #
6 # Copyright (C) 1999-2006, Digium, Inc.
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 ifneq ($(wildcard $(ASTTOPDIR)/menuselect.makeopts),)
15   include $(ASTTOPDIR)/menuselect.makeopts
16   include $(ASTTOPDIR)/menuselect.makedeps
17 endif
18
19 ifneq ($(wildcard $(ASTTOPDIR)/makeopts.embed_rules),)
20   include $(ASTTOPDIR)/makeopts.embed_rules
21 endif
22
23 all: asterisk
24
25 include $(ASTTOPDIR)/Makefile.moddir_rules
26
27 OBJS=   io.o sched.o logger.o frame.o loader.o config.o channel.o \
28         translate.o file.o pbx.o cli.o md5.o term.o \
29         ulaw.o alaw.o callerid.o fskmodem.o image.o app.o \
30         cdr.o tdd.o acl.o rtp.o udptl.o manager.o asterisk.o \
31         dsp.o chanvars.o indications.o autoservice.o db.o privacy.o \
32         astmm.o enum.o srv.o dns.o aescrypt.o aestab.o aeskey.o \
33         utils.o plc.o jitterbuf.o dnsmgr.o devicestate.o \
34         netsock.o slinfactory.o ast_expr2.o ast_expr2f.o \
35         cryptostub.o sha1.o http.o fixedjitterbuf.o abstract_jb.o
36
37 # we need to link in the objects statically, not as a library, because
38 # otherwise modules will not have them available if none of the static
39 # objects use it.
40 OBJS+=stdtime/localtime.o
41
42 # At the moment say.o is an optional component which can be overridden
43 # by a module.
44 OBJS+=say.o
45
46 ifeq ($(wildcard /usr/include/sys/poll.h),)
47   OBJS+=poll.o
48 endif
49
50 ifeq ($(wildcard /usr/include/dlfcn.h),)
51   OBJS+=dlfcn.o
52 endif
53
54 ifneq ($(findstring $(OSARCH), linux-gnu uclinux ),)
55   ifneq ($(findstring LOADABLE_MODULES,$(MENUSELECT_CFLAGS)),)
56   AST_LIBS+=-ldl
57   endif
58   AST_LIBS+=-lpthread $(EDITLINE_LIB) -lm -lresolv
59 else
60   AST_LIBS+=$(EDITLINE_LIB) -lm
61 endif
62
63 ifneq ($(findstring darwin,$(OSARCH)),)
64   AST_LIBS+=-lresolv
65   ASTLINK=-Wl,-dynamic
66   # Mac on Intel CoreDuo does not need poll compatibility layer
67   ifneq ($(PROC),i386)
68     OBJS+=poll.o
69     ASTCFLAGS+=-DPOLLCOMPAT
70   endif
71 else
72 # These are used for all but Darwin
73   ASTLINK=-Wl,-E 
74   ifneq ($(findstring BSD,$(OSARCH)),)
75     LDFLAGS+=-L/usr/local/lib
76   endif
77 endif
78
79 ifeq ($(OSARCH),FreeBSD)
80   AST_LIBS+=-lcrypto
81 endif
82
83 ifeq ($(OSARCH),NetBSD)
84   AST_LIBS+=-lpthread -lcrypto -lm -L/usr/pkg/lib $(EDITLINE_LIB)
85 endif
86
87 ifeq ($(OSARCH),OpenBSD)
88   AST_LIBS+=-lcrypto -lpthread -lm $(EDITLINE_LIB)
89 endif
90
91 ifeq ($(OSARCH),SunOS)
92   AST_LIBS+=-lpthread -ldl -lnsl -lsocket -lresolv -L/opt/ssl/lib -L/usr/local/ssl/lib
93   OBJS+=strcompat.o
94   ASTLINK=
95 endif
96
97 editline/libedit.a:
98         cd editline && unset CFLAGS AST_LIBS && test -f config.h || CFLAGS="$(OPTIMIZE)" ./configure --build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)
99         $(MAKE) -C editline libedit.a
100
101 db1-ast/libdb1.a:
102         CFLAGS="$(ASTCFLAGS)" $(MAKE) -C db1-ast libdb1.a
103
104 ast_expr2.c ast_expr2.h:
105         bison -o $@ -d --name-prefix=ast_yy ast_expr2.y
106
107 ast_expr2f.c:
108         flex -o $@ --full ast_expr2.fl
109
110 testexpr2: ast_expr2f.c ast_expr2.c ast_expr2.h
111         $(CC) -g -c -Iinclude -DSTANDALONE ast_expr2f.c
112         $(CC) -g -c -Iinclude -DSTANDALONE ast_expr2.c
113         $(CC) -g -o testexpr2 ast_expr2f.o ast_expr2.o
114         rm ast_expr2.o ast_expr2f.o 
115
116 channel.o: CFLAGS+=$(ZAPTEL_INCLUDE)
117
118 AST_EMBED_LDSCRIPTS:=$(sort $(EMBED_LDSCRIPTS))
119 AST_EMBED_LDFLAGS:=$(foreach dep,$(EMBED_LDFLAGS),$(value $(dep)))
120 AST_EMBED_LIBS:=$(foreach dep,$(EMBED_LIBS),$(value $(dep)))
121 OBJS:=$(sort $(OBJS))
122
123 asterisk: $(OBJS) editline/libedit.a db1-ast/libdb1.a $(AST_EMBED_LDSCRIPTS)
124         @$(ASTTOPDIR)/build_tools/make_build_h > $(ASTTOPDIR)/include/asterisk/build.h.tmp
125         @if cmp -s $(ASTTOPDIR)/include/asterisk/build.h.tmp $(ASTTOPDIR)/include/asterisk/build.h ; then echo ; else \
126                 mv $(ASTTOPDIR)/include/asterisk/build.h.tmp $(ASTTOPDIR)/include/asterisk/build.h ; \
127         fi
128         @rm -f $(ASTTOPDIR)/include/asterisk/build.h.tmp
129         @$(CC) -c -o buildinfo.o $(CFLAGS) buildinfo.c
130         $(ECHO_PREFIX) echo "   [LD] $^ -> $@"
131         $(CMD_PREFIX) $(CXX) $(LDFLAGS) $(STATIC_BUILD) -o asterisk $(ASTLINK) $(AST_EMBED_LDFLAGS) $^ buildinfo.o $(AST_LIBS) $(AST_EMBED_LIBS)
132
133 clean::
134         rm -f asterisk
135         rm -f .depend
136         @if [ -f editline/Makefile ]; then $(MAKE) -C editline distclean ; fi
137         @$(MAKE) -C db1-ast clean
138         @$(MAKE) -C stdtime clean