2 # Asterisk -- A telephony toolkit for Linux.
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 # All Makefiles use the following variables:
16 # ASTCFLAGS - compiler options provided by the user (if any)
17 # _ASTCFLAGS - compiler options provided by the build system
18 # ASTLDFLAGS - linker flags (not libraries) provided by the user (if any)
19 # _ASTLDFLAGS - linker flags (not libraries) provided by the build system
20 # LIBS - additional libraries, at top-level for all links,
21 # on a single object just for that object
22 # SOLINK - linker flags used only for creating shared objects (.so files),
23 # used for all .so links
25 # Values for ASTCFLAGS and ASTLDFLAGS can be specified in the
26 # environment when running make, as follows:
28 # $ ASTCFLAGS="-Werror" make ...
30 # or as a variable value on the make command line itself:
32 # $ make ASTCFLAGS="-Werror" ...
34 export ASTTOPDIR # Top level dir, used in subdirs' Makefiles
35 export ASTERISKVERSION
36 export ASTERISKVERSIONNUM
38 #--- values used for default paths
40 # DESTDIR is the staging (or final) directory where files are copied
41 # during the install process. Define it before 'export', otherwise
42 # export will set it to the empty string making ?= fail.
43 # WARNING: do not put spaces or comments after the value.
44 DESTDIR?=$(INSTALL_PATH)
47 export INSTALL_PATH # Additional prefix for the following paths
48 export ASTETCDIR # Path for config files
64 export OSARCH # Operating system
65 export PROC # Processor type
67 export NOISY_BUILD # Used in Makefile.rules
68 export MENUSELECT_CFLAGS # Options selected in menuselect.
69 export AST_DEVMODE # Set to "yes" for additional compiler
72 export SOLINK # linker flags for shared objects
73 export STATIC_BUILD # Additional cflags, set to -static
74 # for static builds. Probably
75 # should go directly to ASTLDFLAGS
77 #--- paths to various commands
91 # even though we could use '-include makeopts' here, use a wildcard
92 # lookup anyway, so that make won't try to build makeopts if it doesn't
93 # exist (other rules will force it to be built if needed)
94 ifneq ($(wildcard makeopts),)
98 # start the primary CFLAGS and LDFLAGS with any that were provided
99 # to the configure script
100 _ASTCFLAGS:=$(CONFIG_CFLAGS)
101 _ASTLDFLAGS:=$(CONFIG_LDFLAGS)
103 # Some build systems, such as the one in openwrt, like to pass custom target
104 # CFLAGS and LDFLAGS in the COPTS and LDOPTS variables; these should also
105 # go before any build-system computed flags, since they are defaults, not
108 _ASTLDFLAGS+=$(LDOPTS)
111 _ASTCFLAGS+=$(LIBXML2_INCLUDE)
113 #Uncomment this to see all build commands instead of 'quiet' output
117 space:=$(empty) $(empty)
118 ASTTOPDIR:=$(subst $(space),\$(space),$(CURDIR))
120 # Overwite config files on "make samples"
123 # Include debug and macro symbols in the executables (-g) and profiling info (-pg)
127 # Define standard directories for various platforms
128 # These apply if they are not redefined in asterisk.conf
129 ifeq ($(OSARCH),SunOS)
130 ASTETCDIR=/var/etc/asterisk
131 ASTLIBDIR=/opt/asterisk/lib
132 ASTVARLIBDIR=/var/opt/asterisk
133 ASTDBDIR=$(ASTVARLIBDIR)
134 ASTKEYDIR=$(ASTVARLIBDIR)
135 ASTSPOOLDIR=/var/spool/asterisk
136 ASTLOGDIR=/var/log/asterisk
137 ASTHEADERDIR=/opt/asterisk/include
138 ASTBINDIR=/opt/asterisk/bin
139 ASTSBINDIR=/opt/asterisk/sbin
140 ASTVARRUNDIR=/var/run/asterisk
141 ASTMANDIR=/opt/asterisk/man
143 ASTETCDIR=$(sysconfdir)/asterisk
144 ASTLIBDIR=$(libdir)/asterisk
145 ASTHEADERDIR=$(includedir)/asterisk
147 ASTSBINDIR=$(sbindir)
148 ASTSPOOLDIR=$(localstatedir)/spool/asterisk
149 ASTLOGDIR=$(localstatedir)/log/asterisk
150 ASTVARRUNDIR=$(localstatedir)/run/asterisk
152 ifneq ($(findstring BSD,$(OSARCH)),)
153 ASTVARLIBDIR=$(prefix)/share/asterisk
154 ASTVARRUNDIR=$(localstatedir)/run/asterisk
155 ASTDBDIR=$(localstatedir)/db/asterisk
157 ASTVARLIBDIR=$(localstatedir)/lib/asterisk
158 ASTDBDIR=$(ASTVARLIBDIR)
160 ASTKEYDIR=$(ASTVARLIBDIR)
162 ifeq ($(ASTDATADIR),)
163 ASTDATADIR:=$(ASTVARLIBDIR)
166 # Asterisk.conf is located in ASTETCDIR or by using the -C flag
167 # when starting Asterisk
168 ASTCONFPATH=$(ASTETCDIR)/asterisk.conf
169 MODULES_DIR=$(ASTLIBDIR)/modules
170 AGI_DIR=$(ASTDATADIR)/agi-bin
172 # If you use Apache, you may determine by a grep 'DocumentRoot' of your httpd.conf file
173 HTTP_DOCSDIR=/var/www/html
174 # Determine by a grep 'ScriptAlias' of your Apache httpd.conf file
175 HTTP_CGIDIR=/var/www/cgi-bin
177 # Uncomment this to use the older DSP routines
178 #_ASTCFLAGS+=-DOLD_DSP_ROUTINES
180 # If the file .asterisk.makeopts is present in your home directory, you can
181 # include all of your favorite menuselect options so that every time you download
182 # a new version of Asterisk, you don't have to run menuselect to set them.
183 # The file /etc/asterisk.makeopts will also be included but can be overridden
184 # by the file in your home directory.
186 GLOBAL_MAKEOPTS=$(wildcard /etc/asterisk.makeopts)
187 USER_MAKEOPTS=$(wildcard ~/.asterisk.makeopts)
189 MOD_SUBDIR_CFLAGS=-I$(ASTTOPDIR)/include
190 OTHER_SUBDIR_CFLAGS=-I$(ASTTOPDIR)/include
192 # Create OPTIONS variable, but probably we can assign directly to ASTCFLAGS
195 ifeq ($(OSARCH),linux-gnu)
196 ifeq ($(PROC),x86_64)
197 # You must have GCC 3.4 to use k8, otherwise use athlon
202 ifeq ($(PROC),sparc64)
203 #The problem with sparc is the best stuff is in newer versions of gcc (post 3.0) only.
204 #This works for even old (2.96) versions of gcc and provides a small boost either way.
205 #A ultrasparc cpu is really v9 but the stock debian stable 3.0 gcc doesn't support it.
206 #So we go lowest common available by gcc and go a step down, still a step up from
207 #the default as we now have a better instruction set to work with. - Belgarath
209 OPTIONS+=$(shell if $(CC) -mtune=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mtune=$(PROC)"; fi)
210 OPTIONS+=$(shell if $(CC) -mcpu=v8 -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mcpu=v8"; fi)
211 OPTIONS+=-fomit-frame-pointer
215 # The Cirrus logic is the only heavily shipping arm processor with a real floating point unit
216 ifeq ($(SUB_PROC),maverick)
217 OPTIONS+=-fsigned-char -mcpu=ep9312
219 ifeq ($(SUB_PROC),xscale)
220 OPTIONS+=-fsigned-char -mcpu=xscale
222 OPTIONS+=-fsigned-char
228 ifeq ($(findstring -save-temps,$(_ASTCFLAGS) $(ASTCFLAGS)),)
229 ifeq ($(findstring -pipe,$(_ASTCFLAGS) $(ASTCFLAGS)),)
234 ifeq ($(findstring -Wall,$(_ASTCFLAGS) $(ASTCFLAGS)),)
238 _ASTCFLAGS+=-Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations $(DEBUG)
240 ifeq ($(AST_DEVMODE),yes)
243 _ASTCFLAGS+=$(AST_DECLARATION_AFTER_STATEMENT)
244 _ASTCFLAGS+=$(AST_FORTIFY_SOURCE)
246 _ASTCFLAGS+=-Wmissing-format-attribute
247 _ASTCFLAGS+=-Wformat=2
250 ifneq ($(findstring BSD,$(OSARCH)),)
251 _ASTCFLAGS+=-isystem /usr/local/include
254 ifeq ($(findstring -march,$(_ASTCFLAGS) $(ASTCFLAGS)),)
255 ifneq ($(PROC),ultrasparc)
256 _ASTCFLAGS+=$(shell if $(CC) -march=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-march=$(PROC)"; fi)
261 _ASTCFLAGS+=-fsigned-char
264 ifeq ($(OSARCH),FreeBSD)
265 # -V is understood by BSD Make, not by GNU make.
266 BSDVERSION=$(shell make -V OSVERSION -f /usr/share/mk/bsd.port.subdir.mk)
267 _ASTCFLAGS+=$(shell if test $(BSDVERSION) -lt 500016 ; then echo "-D_THREAD_SAFE"; fi)
270 ifeq ($(OSARCH),NetBSD)
271 _ASTCFLAGS+=-pthread -I/usr/pkg/include
274 ifeq ($(OSARCH),OpenBSD)
275 _ASTCFLAGS+=-pthread -ftrampolines
278 ifeq ($(OSARCH),SunOS)
279 _ASTCFLAGS+=-Wcast-align -DSOLARIS -I../include/solaris-compat -I/opt/ssl/include -I/usr/local/ssl/include -D_XPG4_2
282 ASTERISKVERSION:=$(shell GREP=$(GREP) AWK=$(AWK) build_tools/make_version .)
284 ifneq ($(wildcard .version),)
285 ASTERISKVERSIONNUM:=$(shell $(AWK) -F. '{printf "%01d%02d%02d", $$1, $$2, $$3}' .version)
288 ifneq ($(wildcard .svn),)
289 ASTERISKVERSIONNUM:=999999
292 _ASTCFLAGS+=$(OPTIONS)
294 MOD_SUBDIRS:=channels pbx apps codecs formats cdr cel bridges funcs tests main res addons $(LOCAL_MOD_SUBDIRS)
295 OTHER_SUBDIRS:=utils agi
296 SUBDIRS:=$(OTHER_SUBDIRS) $(MOD_SUBDIRS)
297 SUBDIRS_INSTALL:=$(SUBDIRS:%=%-install)
298 SUBDIRS_CLEAN:=$(SUBDIRS:%=%-clean)
299 SUBDIRS_DIST_CLEAN:=$(SUBDIRS:%=%-dist-clean)
300 SUBDIRS_UNINSTALL:=$(SUBDIRS:%=%-uninstall)
301 MOD_SUBDIRS_EMBED_LDSCRIPT:=$(MOD_SUBDIRS:%=%-embed-ldscript)
302 MOD_SUBDIRS_EMBED_LDFLAGS:=$(MOD_SUBDIRS:%=%-embed-ldflags)
303 MOD_SUBDIRS_EMBED_LIBS:=$(MOD_SUBDIRS:%=%-embed-libs)
304 MOD_SUBDIRS_MENUSELECT_TREE:=$(MOD_SUBDIRS:%=%-menuselect-tree)
306 ifneq ($(findstring darwin,$(OSARCH)),)
307 _ASTCFLAGS+=-D__Darwin__
308 SOLINK=-bundle -Xlinker -macosx_version_min -Xlinker 10.4 -Xlinker -undefined -Xlinker dynamic_lookup -force_flat_namespace /usr/lib/bundle1.o
309 _ASTLDFLAGS+= /usr/lib/bundle1.o -L/usr/local/lib
311 # These are used for all but Darwin
313 ifneq ($(findstring BSD,$(OSARCH)),)
314 _ASTLDFLAGS+=-L/usr/local/lib
318 ifeq ($(OSARCH),SunOS)
319 SOLINK=-shared -fpic -L/usr/local/ssl/lib -lrt
322 ifeq ($(OSARCH),OpenBSD)
326 # comment to print directories during submakes
329 ifneq ($(INSIDE_EMACS),)
333 SILENTMAKE:=$(MAKE) --quiet --no-print-directory
334 ifneq ($(PRINT_DIR)$(NOISY_BUILD),)
337 SUBMAKE:=$(MAKE) --quiet --no-print-directory
340 # This is used when generating the doxygen documentation
347 # $(MAKE) is printed in several places, and we want it to be a
348 # fixed size string. Define a variable whose name has also the
349 # same size, so we can easily align text.
350 ifeq ($(MAKE), gmake)
357 @echo " +--------- Asterisk Build Complete ---------+"
358 @echo " + Asterisk has successfully been built, and +"
359 @echo " + can be installed by running: +"
361 @echo " + $(mK) install +"
362 @echo " +-------------------------------------------+"
364 _all: cleantest makeopts $(SUBDIRS) doc/core-en_US.xml
368 @echo "**** The configure script must be executed before running '$(MAKE)'."
369 @echo "**** Please run \"./configure\"."
373 menuselect.makeopts: menuselect/menuselect menuselect-tree makeopts build_tools/menuselect-deps $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS)
374 menuselect/menuselect --check-deps $@ $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS)
376 $(MOD_SUBDIRS_EMBED_LDSCRIPT):
377 +@echo "EMBED_LDSCRIPTS+="`$(SILENTMAKE) -C $(@:-embed-ldscript=) SUBDIR=$(@:-embed-ldscript=) __embed_ldscript` >> makeopts.embed_rules
379 $(MOD_SUBDIRS_EMBED_LDFLAGS):
380 +@echo "EMBED_LDFLAGS+="`$(SILENTMAKE) -C $(@:-embed-ldflags=) SUBDIR=$(@:-embed-ldflags=) __embed_ldflags` >> makeopts.embed_rules
382 $(MOD_SUBDIRS_EMBED_LIBS):
383 +@echo "EMBED_LIBS+="`$(SILENTMAKE) -C $(@:-embed-libs=) SUBDIR=$(@:-embed-libs=) __embed_libs` >> makeopts.embed_rules
385 $(MOD_SUBDIRS_MENUSELECT_TREE):
386 +@$(SUBMAKE) -C $(@:-menuselect-tree=) SUBDIR=$(@:-menuselect-tree=) moduleinfo
387 +@$(SUBMAKE) -C $(@:-menuselect-tree=) SUBDIR=$(@:-menuselect-tree=) makeopts
389 makeopts.embed_rules: menuselect.makeopts
390 @echo "Generating embedded module rules ..."
392 +@$(SUBMAKE) $(MOD_SUBDIRS_EMBED_LDSCRIPT)
393 +@$(SUBMAKE) $(MOD_SUBDIRS_EMBED_LDFLAGS)
394 +@$(SUBMAKE) $(MOD_SUBDIRS_EMBED_LIBS)
396 $(SUBDIRS): main/version.c include/asterisk/version.h include/asterisk/build.h include/asterisk/buildopts.h defaults.h makeopts.embed_rules
398 ifeq ($(findstring $(OSARCH), mingw32 cygwin ),)
400 # ensure that all module subdirectories are processed before 'main' during
401 # a parallel build, since if there are modules selected to be embedded the
402 # directories containing them must be completed before the main Asterisk
403 # binary can be built
404 main: $(filter-out main,$(MOD_SUBDIRS))
406 # Windows: we need to build main (i.e. the asterisk dll) first,
407 # followed by res, followed by the other directories, because
408 # dll symbols must be resolved during linking and not at runtime.
409 D1:= $(filter-out main,$(MOD_SUBDIRS))
410 D1:= $(filter-out res,$(D1))
417 +@_ASTCFLAGS="$(MOD_SUBDIR_CFLAGS) $(_ASTCFLAGS)" ASTCFLAGS="$(ASTCFLAGS)" _ASTLDFLAGS="$(_ASTLDFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" $(SUBMAKE) --no-builtin-rules -C $@ SUBDIR=$@ all
420 +@_ASTCFLAGS="$(OTHER_SUBDIR_CFLAGS) $(_ASTCFLAGS)" ASTCFLAGS="$(ASTCFLAGS)" _ASTLDFLAGS="$(_ASTLDFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" $(SUBMAKE) --no-builtin-rules -C $@ SUBDIR=$@ all
423 @build_tools/make_defaults_h > $@.tmp
424 @cmp -s $@.tmp $@ || mv $@.tmp $@
427 main/version.c: FORCE
428 @build_tools/make_version_c > $@.tmp
429 @cmp -s $@.tmp $@ || mv $@.tmp $@
432 include/asterisk/version.h: FORCE
433 @build_tools/make_version_h > $@.tmp
434 @cmp -s $@.tmp $@ || mv $@.tmp $@
437 include/asterisk/buildopts.h: menuselect.makeopts
438 @build_tools/make_buildopts_h > $@.tmp
439 @cmp -s $@.tmp $@ || mv $@.tmp $@
442 include/asterisk/build.h:
443 @build_tools/make_build_h > $@.tmp
444 @cmp -s $@.tmp $@ || mv $@.tmp $@
448 +@$(SUBMAKE) -C $(@:-clean=) clean
450 $(SUBDIRS_DIST_CLEAN):
451 +@$(SUBMAKE) -C $(@:-dist-clean=) dist-clean
453 clean: $(SUBDIRS_CLEAN) _clean
457 rm -f include/asterisk/build.h
459 rm -f include/asterisk/version.h
460 @$(MAKE) -C menuselect clean
461 cp -f .cleancount .lastclean
463 dist-clean: distclean
465 distclean: $(SUBDIRS_DIST_CLEAN) _clean
466 @$(MAKE) -C menuselect dist-clean
467 @$(MAKE) -C sounds dist-clean
468 rm -f menuselect.makeopts makeopts menuselect-tree menuselect.makedeps
469 rm -f makeopts.embed_rules
470 rm -f config.log config.status config.cache
471 rm -rf autom4te.cache
472 rm -f include/asterisk/autoconfig.h
473 rm -f include/asterisk/buildopts.h
475 rm -f build_tools/menuselect-deps
478 if [ `$(ID) -u` = 0 ]; then \
479 CFLAGS="$(_ASTCFLAGS) $(ASTCFLAGS)" build_tools/mkpkgconfig $(DESTDIR)/usr/lib/pkgconfig; \
481 # Should static HTTP be installed during make samples or even with its own target ala
482 # webvoicemail? There are portions here that *could* be customized but might also be
483 # improved a lot. I'll put it here for now.
484 mkdir -p $(DESTDIR)$(ASTDATADIR)/static-http
485 for x in static-http/*; do \
486 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTDATADIR)/static-http ; \
488 if [ -d doc/tex/asterisk ] ; then \
489 mkdir -p $(DESTDIR)$(ASTDATADIR)/static-http/docs ; \
490 for n in doc/tex/asterisk/* ; do \
491 $(INSTALL) -m 644 $$n $(DESTDIR)$(ASTDATADIR)/static-http/docs ; \
494 mkdir -p $(DESTDIR)$(ASTDATADIR)/images
495 for x in images/*.jpg; do \
496 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTDATADIR)/images ; \
498 mkdir -p $(DESTDIR)$(AGI_DIR)
499 $(MAKE) -C sounds install
501 doc/core-en_US.xml: $(foreach dir,$(MOD_SUBDIRS),$(shell $(GREP) -l "language=\"en_US\"" $(dir)/*.c $(dir)/*.cc 2>/dev/null))
502 @printf "Building Documentation For: "
503 @echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" > $@
504 @echo "<!DOCTYPE docs SYSTEM \"appdocsxml.dtd\">" >> $@
505 @echo "<docs xmlns:xi=\"http://www.w3.org/2001/XInclude\">" >> $@
506 @for x in $(MOD_SUBDIRS); do \
508 for i in $$x/*.c; do \
509 $(AWK) -f build_tools/get_documentation $$i >> $@ ; \
513 @echo "</docs>" >> $@
515 validate-docs: doc/core-en_US.xml
516 ifeq ($(XMLSTARLET),:)
517 @echo "---------------------------------------------------------------"
518 @echo "--- Please install xmlstarlet to validate the documentation ---"
519 @echo "---------------------------------------------------------------"
521 $(XMLSTARLET) val -d doc/appdocsxml.dtd $<
525 @if [ -d .svn ]; then \
526 echo "Updating from Subversion..." ; \
527 fromrev="`svn info | $(AWK) '/Revision: / {print $$2}'`"; \
528 svn update | tee update.out; \
529 torev="`svn info | $(AWK) '/Revision: / {print $$2}'`"; \
530 echo "`date` Updated from revision $${fromrev} to $${torev}." >> update.log; \
532 if [ `grep -c ^C update.out` -gt 0 ]; then \
533 echo ; echo "The following files have conflicts:" ; \
534 grep ^C update.out | cut -b4- ; \
538 echo "Not under version control"; \
541 NEWHEADERS=$(notdir $(wildcard include/asterisk/*.h))
542 OLDHEADERS=$(filter-out $(NEWHEADERS),$(notdir $(wildcard $(DESTDIR)$(ASTHEADERDIR)/*.h)))
545 mkdir -p $(DESTDIR)$(MODULES_DIR)
546 mkdir -p $(DESTDIR)$(ASTSBINDIR)
547 mkdir -p $(DESTDIR)$(ASTETCDIR)
548 mkdir -p $(DESTDIR)$(ASTBINDIR)
549 mkdir -p $(DESTDIR)$(ASTVARRUNDIR)
550 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/voicemail
551 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/dictate
552 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/system
553 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/tmp
554 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/meetme
555 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/monitor
557 bininstall: _all installdirs $(SUBDIRS_INSTALL)
558 $(INSTALL) -m 755 main/asterisk $(DESTDIR)$(ASTSBINDIR)/
559 $(LN) -sf asterisk $(DESTDIR)$(ASTSBINDIR)/rasterisk
560 $(INSTALL) -m 755 contrib/scripts/astgenkey $(DESTDIR)$(ASTSBINDIR)/
561 $(INSTALL) -m 755 contrib/scripts/autosupport $(DESTDIR)$(ASTSBINDIR)/
562 if [ ! -f $(DESTDIR)$(ASTSBINDIR)/safe_asterisk ]; then \
563 cat contrib/scripts/safe_asterisk | sed 's|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > $(DESTDIR)$(ASTSBINDIR)/safe_asterisk ;\
564 chmod 755 $(DESTDIR)$(ASTSBINDIR)/safe_asterisk;\
566 $(INSTALL) -d $(DESTDIR)$(ASTHEADERDIR)
567 $(INSTALL) -d $(DESTDIR)$(ASTHEADERDIR)/doxygen
568 $(INSTALL) -m 644 include/asterisk.h $(DESTDIR)$(includedir)
569 $(INSTALL) -m 644 include/asterisk/*.h $(DESTDIR)$(ASTHEADERDIR)
570 $(INSTALL) -m 644 include/asterisk/doxygen/*.h $(DESTDIR)$(ASTHEADERDIR)/doxygen
571 if [ -n "$(OLDHEADERS)" ]; then \
572 rm -f $(addprefix $(DESTDIR)$(ASTHEADERDIR)/,$(OLDHEADERS)) ;\
574 mkdir -p $(DESTDIR)$(ASTDATADIR)/documentation
575 mkdir -p $(DESTDIR)$(ASTDATADIR)/documentation/thirdparty
576 mkdir -p $(DESTDIR)$(ASTLOGDIR)/cdr-csv
577 mkdir -p $(DESTDIR)$(ASTLOGDIR)/cdr-custom
578 mkdir -p $(DESTDIR)$(ASTLOGDIR)/cel-csv
579 mkdir -p $(DESTDIR)$(ASTLOGDIR)/cel-custom
580 mkdir -p $(DESTDIR)$(ASTDATADIR)/keys
581 mkdir -p $(DESTDIR)$(ASTDATADIR)/firmware
582 mkdir -p $(DESTDIR)$(ASTDATADIR)/firmware/iax
583 mkdir -p $(DESTDIR)$(ASTMANDIR)/man8
584 $(INSTALL) -m 644 doc/core-*.xml $(DESTDIR)$(ASTDATADIR)/documentation
585 $(INSTALL) -m 644 doc/appdocsxml.dtd $(DESTDIR)$(ASTDATADIR)/documentation
586 $(INSTALL) -m 644 keys/iaxtel.pub $(DESTDIR)$(ASTDATADIR)/keys
587 $(INSTALL) -m 644 keys/freeworlddialup.pub $(DESTDIR)$(ASTDATADIR)/keys
588 $(INSTALL) -m 644 doc/asterisk.8 $(DESTDIR)$(ASTMANDIR)/man8
589 $(INSTALL) -m 644 contrib/scripts/astgenkey.8 $(DESTDIR)$(ASTMANDIR)/man8
590 $(INSTALL) -m 644 contrib/scripts/autosupport.8 $(DESTDIR)$(ASTMANDIR)/man8
591 $(INSTALL) -m 644 contrib/scripts/safe_asterisk.8 $(DESTDIR)$(ASTMANDIR)/man8
592 if [ -f contrib/firmware/iax/iaxy.bin ] ; then \
593 $(INSTALL) -m 644 contrib/firmware/iax/iaxy.bin $(DESTDIR)$(ASTDATADIR)/firmware/iax/iaxy.bin; \
597 @DESTDIR="$(DESTDIR)" ASTSBINDIR="$(ASTSBINDIR)" $(SUBMAKE) -C $(@:-install=) install
599 NEWMODS:=$(foreach d,$(MOD_SUBDIRS),$(notdir $(wildcard $(d)/*.so)))
600 OLDMODS=$(filter-out $(NEWMODS),$(notdir $(wildcard $(DESTDIR)$(MODULES_DIR)/*.so)))
603 @if [ -n "$(OLDMODS)" ]; then \
604 echo " WARNING WARNING WARNING" ;\
606 echo " Your Asterisk modules directory, located at" ;\
607 echo " $(DESTDIR)$(MODULES_DIR)" ;\
608 echo " contains modules that were not installed by this " ;\
609 echo " version of Asterisk. Please ensure that these" ;\
610 echo " modules are compatible with this version before" ;\
611 echo " attempting to run Asterisk." ;\
613 for f in $(OLDMODS); do \
617 echo " WARNING WARNING WARNING" ;\
621 ifneq ($(findstring ~,$(DESTDIR)),)
622 @echo "Your shell doesn't do ~ expansion when expected (specifically, when doing \"make install DESTDIR=~/path\")."
623 @echo "Try replacing ~ with \$$HOME, as in \"make install DESTDIR=\$$HOME/path\"."
627 install: badshell datafiles bininstall
628 @if [ -x /usr/sbin/asterisk-post-install ]; then \
629 /usr/sbin/asterisk-post-install $(DESTDIR) . ; \
631 @echo " +---- Asterisk Installation Complete -------+"
633 @echo " + YOU MUST READ THE SECURITY DOCUMENT +"
635 @echo " + Asterisk has successfully been installed. +"
636 @echo " + If you would like to install the sample +"
637 @echo " + configuration files (overwriting any +"
638 @echo " + existing config files), run: +"
640 @echo " + $(mK) samples +"
642 @echo " +----------------- or ---------------------+"
644 @echo " + You can go ahead and install the asterisk +"
645 @echo " + program documentation now or later run: +"
647 @echo " + $(mK) progdocs +"
649 @echo " + **Note** This requires that you have +"
650 @echo " + doxygen installed on your local system +"
651 @echo " +-------------------------------------------+"
652 @$(MAKE) -s oldmodcheck
658 # XXX why *.adsi is installed first ?
660 @echo Installing adsi config files...
661 @mkdir -p $(DESTDIR)$(ASTETCDIR)
662 @for x in configs/*.adsi; do \
663 dst="$(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x`" ; \
664 if [ -f $${dst} ] ; then \
665 echo "Overwriting $$x" ; \
667 echo "Installing $$x" ; \
669 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x` ; \
673 @echo Installing other config files...
674 @mkdir -p $(DESTDIR)$(ASTETCDIR)
675 @for x in configs/*.sample; do \
676 dst="$(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample`" ; \
677 if [ -f $${dst} ]; then \
678 if [ "$(OVERWRITE)" = "y" ]; then \
679 if cmp -s $${dst} $$x ; then \
680 echo "Config file $$x is unchanged"; \
683 mv -f $${dst} $${dst}.old ; \
685 echo "Skipping config file $$x"; \
689 echo "Installing file $$x"; \
690 $(INSTALL) -m 644 $$x $${dst} ;\
692 @if [ "$(OVERWRITE)" = "y" ] || [ ! -f $(DESTDIR)$(ASTCONFPATH) ]; then \
693 echo "Creating asterisk.conf"; \
695 echo "[directories](!) ; remove the (!) to enable this" ; \
696 echo "astetcdir => $(ASTETCDIR)" ; \
697 echo "astmoddir => $(MODULES_DIR)" ; \
698 echo "astvarlibdir => $(ASTVARLIBDIR)" ; \
699 echo "astdbdir => $(ASTDBDIR)" ; \
700 echo "astkeydir => $(ASTKEYDIR)" ; \
701 echo "astdatadir => $(ASTDATADIR)" ; \
702 echo "astagidir => $(AGI_DIR)" ; \
703 echo "astspooldir => $(ASTSPOOLDIR)" ; \
704 echo "astrundir => $(ASTVARRUNDIR)" ; \
705 echo "astlogdir => $(ASTLOGDIR)" ; \
708 echo ";verbose = 3" ; \
709 echo ";debug = 3" ; \
710 echo ";alwaysfork = yes ; same as -F at startup" ; \
711 echo ";nofork = yes ; same as -f at startup" ; \
712 echo ";quiet = yes ; same as -q at startup" ; \
713 echo ";timestamp = yes ; same as -T at startup" ; \
714 echo ";execincludes = yes ; support #exec in config files" ; \
715 echo ";console = yes ; Run as console (same as -c at startup)" ; \
716 echo ";highpriority = yes ; Run realtime priority (same as -p at startup)" ; \
717 echo ";initcrypto = yes ; Initialize crypto keys (same as -i at startup)" ; \
718 echo ";nocolor = yes ; Disable console colors" ; \
719 echo ";dontwarn = yes ; Disable some warnings" ; \
720 echo ";dumpcore = yes ; Dump core on crash (same as -g at startup)" ; \
721 echo ";languageprefix = yes ; Use the new sound prefix path syntax" ; \
722 echo ";internal_timing = yes" ; \
723 echo ";systemname = my_system_name ; prefix uniqueid with a system name for global uniqueness issues" ; \
724 echo ";autosystemname = yes ; automatically set systemname to hostname - uses 'localhost' on failure, or systemname if set" ; \
725 echo ";maxcalls = 10 ; Maximum amount of calls allowed" ; \
726 echo ";maxload = 0.9 ; Asterisk stops accepting new calls if the load average exceed this limit" ; \
727 echo ";maxfiles = 1000 ; Maximum amount of openfiles" ; \
728 echo ";minmemfree = 1 ; in MBs, Asterisk stops accepting new calls if the amount of free memory falls below this watermark" ; \
729 echo ";cache_record_files = yes ; Cache recorded sound files to another directory during recording" ; \
730 echo ";record_cache_dir = /tmp ; Specify cache directory (used in cnjunction with cache_record_files)" ; \
731 echo ";transmit_silence_during_record = yes ; Transmit SLINEAR silence while a channel is being recorded" ; \
732 echo ";transmit_silence = yes ; Transmit SLINEAR silence while a channel is being recorded or DTMF is being generated" ; \
733 echo ";transcode_via_sln = yes ; Build transcode paths via SLINEAR, instead of directly" ; \
734 echo ";runuser = asterisk ; The user to run as" ; \
735 echo ";rungroup = asterisk ; The group to run as" ; \
736 echo ";lightbackground = yes ; If your terminal is set for a light-colored background" ; \
737 echo "documentation_language = en_US ; Set the Language you want Documentation displayed in. Value is in the same format as locale names" ; \
738 echo ";hideconnect = yes ; Hide messages displayed when a remote console connects and disconnects" ; \
740 echo "; Changing the following lines may compromise your security." ; \
742 echo ";astctlpermissions = 0660" ; \
743 echo ";astctlowner = root" ; \
744 echo ";astctlgroup = apache" ; \
745 echo ";astctl = asterisk.ctl" ; \
748 echo "pbx_realtime=1.6" ; \
749 echo "res_agi=1.6" ; \
750 echo "app_set=1.6" ; \
751 ) > $(DESTDIR)$(ASTCONFPATH) ; \
753 echo "Skipping asterisk.conf creation"; \
755 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/INBOX
756 build_tools/make_sample_voicemail $(DESTDIR)/$(ASTDATADIR) $(DESTDIR)/$(ASTSPOOLDIR)
757 @mkdir -p $(DESTDIR)$(ASTDATADIR)/phoneprov
758 @for x in phoneprov/*; do \
759 dst="$(DESTDIR)$(ASTDATADIR)/$$x" ; \
760 if [ -f $${dst} ]; then \
761 if [ "$(OVERWRITE)" = "y" ]; then \
762 if cmp -s $${dst} $$x ; then \
763 echo "Config file $$x is unchanged"; \
766 mv -f $${dst} $${dst}.old ; \
768 echo "Skipping config file $$x"; \
772 echo "Installing file $$x"; \
773 $(INSTALL) -m 644 $$x $${dst} ;\
777 @[ -d $(DESTDIR)$(HTTP_DOCSDIR)/ ] || ( printf "http docs directory not found.\nUpdate assignment of variable HTTP_DOCSDIR in Makefile!\n" && exit 1 )
778 @[ -d $(DESTDIR)$(HTTP_CGIDIR) ] || ( printf "cgi-bin directory not found.\nUpdate assignment of variable HTTP_CGIDIR in Makefile!\n" && exit 1 )
779 $(INSTALL) -m 4755 -o root -g root contrib/scripts/vmail.cgi $(DESTDIR)$(HTTP_CGIDIR)/vmail.cgi
780 mkdir -p $(DESTDIR)$(HTTP_DOCSDIR)/_asterisk
781 for x in images/*.gif; do \
782 $(INSTALL) -m 644 $$x $(DESTDIR)$(HTTP_DOCSDIR)/_asterisk/; \
784 @echo " +--------- Asterisk Web Voicemail ----------+"
786 @echo " + Asterisk Web Voicemail is installed in +"
787 @echo " + your cgi-bin directory: +"
788 @echo " + $(DESTDIR)$(HTTP_CGIDIR)"
789 @echo " + IT USES A SETUID ROOT PERL SCRIPT, SO +"
790 @echo " + IF YOU DON'T LIKE THAT, UNINSTALL IT! +"
792 @echo " + Other static items have been stored in: +"
793 @echo " + $(DESTDIR)$(HTTP_DOCSDIR)"
795 @echo " + If these paths do not match your httpd +"
796 @echo " + installation, correct the definitions +"
797 @echo " + in your Makefile of HTTP_CGIDIR and +"
798 @echo " + HTTP_DOCSDIR +"
800 @echo " +-------------------------------------------+"
803 (cat contrib/asterisk-ng-doxygen; echo "HAVE_DOT=$(HAVEDOT)"; \
804 echo "PROJECT_NUMBER=$(ASTERISKVERSION)") | doxygen -
807 if [ ! -d $(ASTETCDIR)/../logrotate.d ]; then \
808 mkdir $(ASTETCDIR)/../logrotate.d ; \
810 sed 's#__LOGDIR__#$(ASTLOGDIR)#g' < contrib/scripts/asterisk.logrotate | sed 's#__SBINDIR__#$(ASTSBINDIR)#g' > contrib/scripts/asterisk.logrotate.tmp
811 install -m 0644 contrib/scripts/asterisk.logrotate.tmp $(ASTETCDIR)/../logrotate.d/asterisk
812 rm -f contrib/scripts/asterisk.logrotate.tmp
815 @if [ "${OSARCH}" = "linux-gnu" ]; then \
816 if [ -f /etc/redhat-release -o -f /etc/fedora-release ]; then \
817 cat contrib/init.d/rc.redhat.asterisk | sed 's|__ASTERISK_ETC_DIR__|$(ASTETCDIR)|;s|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > $(DESTDIR)/etc/rc.d/init.d/asterisk ;\
818 chmod 755 $(DESTDIR)/etc/rc.d/init.d/asterisk;\
819 if [ -z "$(DESTDIR)" ]; then /sbin/chkconfig --add asterisk; fi; \
820 elif [ -f /etc/debian_version ]; then \
821 cat contrib/init.d/rc.debian.asterisk | sed 's|__ASTERISK_ETC_DIR__|$(ASTETCDIR)|;s|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > $(DESTDIR)/etc/init.d/asterisk ;\
822 chmod 755 $(DESTDIR)/etc/init.d/asterisk;\
823 if [ -z "$(DESTDIR)" ]; then /usr/sbin/update-rc.d asterisk defaults 50 91; fi; \
824 elif [ -f /etc/gentoo-release ]; then \
825 cat contrib/init.d/rc.gentoo.asterisk | sed 's|__ASTERISK_ETC_DIR__|$(ASTETCDIR)|;s|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > $(DESTDIR)/etc/init.d/asterisk ;\
826 chmod 755 $(DESTDIR)/etc/init.d/asterisk;\
827 if [ -z "$(DESTDIR)" ]; then /sbin/rc-update add asterisk default; fi; \
828 elif [ -f /etc/mandrake-release -o -f /etc/mandriva-release ]; then \
829 cat contrib/init.d/rc.mandriva.asterisk | sed 's|__ASTERISK_ETC_DIR__|$(ASTETCDIR)|;s|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > $(DESTDIR)/etc/rc.d/init.d/asterisk ;\
830 chmod 755 $(DESTDIR)/etc/rc.d/init.d/asterisk;\
831 if [ -z "$(DESTDIR)" ]; then /sbin/chkconfig --add asterisk; fi; \
832 elif [ -f /etc/SuSE-release -o -f /etc/novell-release ]; then \
833 cat contrib/init.d/rc.suse.asterisk | sed 's|__ASTERISK_ETC_DIR__|$(ASTETCDIR)|;s|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > $(DESTDIR)/etc/init.d/asterisk ;\
834 chmod 755 $(DESTDIR)/etc/init.d/asterisk;\
835 if [ -z "$(DESTDIR)" ]; then /sbin/chkconfig --add asterisk; fi; \
836 elif [ -f /etc/arch-release -o -f /etc/arch-release ]; then \
837 cat contrib/init.d/rc.archlinux.asterisk | sed 's|__ASTERISK_ETC_DIR__|$(ASTETCDIR)|;s|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > $(DESTDIR)/etc/rc.d/asterisk ;\
838 chmod 755 $(DESTDIR)/etc/rc.d/asterisk;\
839 elif [ -f /etc/slackware-version ]; then \
840 echo "Slackware is not currently supported, although an init script does exist for it."; \
842 echo "We could not install init scripts for your distribution."; \
845 echo "We could not install init scripts for your operating system."; \
849 $(MAKE) -C sounds all
851 # If the cleancount has been changed, force a make clean.
852 # .cleancount is the global clean count, and .lastclean is the
853 # last clean count we had
856 @cmp -s .cleancount .lastclean || $(MAKE) clean
858 $(SUBDIRS_UNINSTALL):
859 @$(SUBMAKE) -C $(@:-uninstall=) uninstall
861 _uninstall: $(SUBDIRS_UNINSTALL)
862 rm -f $(DESTDIR)$(MODULES_DIR)/*
863 rm -f $(DESTDIR)$(ASTSBINDIR)/*asterisk*
864 rm -f $(DESTDIR)$(ASTSBINDIR)/astgenkey
865 rm -f $(DESTDIR)$(ASTSBINDIR)/autosupport
866 rm -rf $(DESTDIR)$(ASTHEADERDIR)
867 rm -rf $(DESTDIR)$(ASTDATADIR)/firmware
868 rm -f $(DESTDIR)$(ASTMANDIR)/man8/asterisk.8
869 rm -f $(DESTDIR)$(ASTMANDIR)/man8/astgenkey.8
870 rm -f $(DESTDIR)$(ASTMANDIR)/man8/autosupport.8
871 rm -f $(DESTDIR)$(ASTMANDIR)/man8/safe_asterisk.8
872 $(MAKE) -C sounds uninstall
874 uninstall: _uninstall
875 @echo " +--------- Asterisk Uninstall Complete -----+"
876 @echo " + Asterisk binaries, sounds, man pages, +"
877 @echo " + headers, modules, and firmware builds, +"
878 @echo " + have all been uninstalled. +"
880 @echo " + To remove ALL traces of Asterisk, +"
881 @echo " + including configuration, spool +"
882 @echo " + directories, and logs, run the following +"
883 @echo " + command: +"
885 @echo " + $(mK) uninstall-all +"
886 @echo " +-------------------------------------------+"
888 uninstall-all: _uninstall
889 rm -rf $(DESTDIR)$(ASTLIBDIR)
890 rm -rf $(DESTDIR)$(ASTVARLIBDIR)
891 rm -rf $(DESTDIR)$(ASTDATADIR)
892 rm -rf $(DESTDIR)$(ASTSPOOLDIR)
893 rm -rf $(DESTDIR)$(ASTETCDIR)
894 rm -rf $(DESTDIR)$(ASTLOGDIR)
896 menuconfig: menuselect
898 cmenuconfig: cmenuselect
900 gmenuconfig: gmenuselect
902 nmenuconfig: nmenuselect
904 menuselect: menuselect/cmenuselect menuselect/nmenuselect menuselect/gmenuselect
905 @if [ -x menuselect/nmenuselect ]; then \
906 $(MAKE) nmenuselect; \
907 elif [ -x menuselect/cmenuselect ]; then \
908 $(MAKE) cmenuselect; \
909 elif [ -x menuselect/gmenuselect ]; then \
910 $(MAKE) gmenuselect; \
912 echo "No menuselect user interface found. Install ncurses,"; \
913 echo "newt or GTK libraries to build one and re-rerun"; \
914 echo "'make menuselect'."; \
917 cmenuselect: menuselect/cmenuselect menuselect-tree
918 -@menuselect/cmenuselect menuselect.makeopts $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
920 gmenuselect: menuselect/gmenuselect menuselect-tree
921 -@menuselect/gmenuselect menuselect.makeopts $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
923 nmenuselect: menuselect/nmenuselect menuselect-tree
924 -@menuselect/nmenuselect menuselect.makeopts $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
926 # options for make in menuselect/
927 MAKE_MENUSELECT=CC="$(HOST_CC)" CXX="$(CXX)" LD="" AR="" RANLIB="" CFLAGS="" $(MAKE) -C menuselect CONFIGURE_SILENT="--silent"
929 menuselect/menuselect: menuselect/makeopts
930 +$(MAKE_MENUSELECT) menuselect
932 menuselect/cmenuselect: menuselect/makeopts
933 +$(MAKE_MENUSELECT) cmenuselect
935 menuselect/gmenuselect: menuselect/makeopts
936 +$(MAKE_MENUSELECT) gmenuselect
938 menuselect/nmenuselect: menuselect/makeopts
939 +$(MAKE_MENUSELECT) nmenuselect
941 menuselect/makeopts: makeopts
942 +$(MAKE_MENUSELECT) makeopts
944 menuselect-tree: $(foreach dir,$(filter-out main,$(MOD_SUBDIRS)),$(wildcard $(dir)/*.c) $(wildcard $(dir)/*.cc)) build_tools/cflags.xml build_tools/cflags-devmode.xml sounds/sounds.xml build_tools/embed_modules.xml utils/utils.xml agi/agi.xml configure
945 @echo "Generating input for menuselect ..."
946 @echo "<?xml version=\"1.0\"?>" > $@
948 @echo "<menu name=\"Asterisk Module and Build Option Selection\">" >> $@
949 +@for dir in $(sort $(filter-out main,$(MOD_SUBDIRS))); do $(SILENTMAKE) -C $${dir} SUBDIR=$${dir} moduleinfo >> $@; done
950 @cat build_tools/cflags.xml >> $@
951 +@for dir in $(sort $(filter-out main,$(MOD_SUBDIRS))); do $(SILENTMAKE) -C $${dir} SUBDIR=$${dir} makeopts >> $@; done
952 @if [ "${AST_DEVMODE}" = "yes" ]; then \
953 cat build_tools/cflags-devmode.xml >> $@; \
955 @cat utils/utils.xml >> $@
956 @cat agi/agi.xml >> $@
957 @cat build_tools/embed_modules.xml >> $@
958 @cat sounds/sounds.xml >> $@
959 @echo "</menu>" >> $@
963 $(MAKE) -C doc/tex asterisk.pdf
976 .PHONY: uninstall-all
978 .PHONY: dont-optimize
981 .PHONY: validate-docs
983 .PHONY: $(SUBDIRS_INSTALL)
984 .PHONY: $(SUBDIRS_DIST_CLEAN)
985 .PHONY: $(SUBDIRS_CLEAN)
986 .PHONY: $(SUBDIRS_UNINSTALL)
988 .PHONY: $(MOD_SUBDIRS_EMBED_LDSCRIPT)
989 .PHONY: $(MOD_SUBDIRS_EMBED_LDFLAGS)
990 .PHONY: $(MOD_SUBDIRS_EMBED_LIBS)