2 # Asterisk -- A telephony toolkit for Linux.
6 # Copyright (C) 1999-2010, 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
90 export WGET_EXTRA_ARGS
92 # even though we could use '-include makeopts' here, use a wildcard
93 # lookup anyway, so that make won't try to build makeopts if it doesn't
94 # exist (other rules will force it to be built if needed)
95 ifneq ($(wildcard makeopts),)
99 # start the primary CFLAGS and LDFLAGS with any that were provided
100 # to the configure script
101 _ASTCFLAGS:=$(CONFIG_CFLAGS)
102 _ASTLDFLAGS:=$(CONFIG_LDFLAGS)
104 # Some build systems, such as the one in openwrt, like to pass custom target
105 # CFLAGS and LDFLAGS in the COPTS and LDOPTS variables; these should also
106 # go before any build-system computed flags, since they are defaults, not
109 _ASTLDFLAGS+=$(LDOPTS)
112 _ASTCFLAGS+=$(LIBXML2_INCLUDE)
114 #Uncomment this to see all build commands instead of 'quiet' output
118 space:=$(empty) $(empty)
119 ASTTOPDIR:=$(subst $(space),\$(space),$(CURDIR))
121 # Overwite config files on "make samples"
124 # Include debug and macro symbols in the executables (-g) and profiling info (-pg)
127 # Asterisk.conf is located in ASTETCDIR or by using the -C flag
128 # when starting Asterisk
129 ASTCONFPATH=$(ASTETCDIR)/asterisk.conf
130 MODULES_DIR=$(ASTLIBDIR)/modules
131 AGI_DIR=$(ASTDATADIR)/agi-bin
133 # If you use Apache, you may determine by a grep 'DocumentRoot' of your httpd.conf file
134 HTTP_DOCSDIR=/var/www/html
135 # Determine by a grep 'ScriptAlias' of your Apache httpd.conf file
136 HTTP_CGIDIR=/var/www/cgi-bin
138 # If your platform's linker expects a prefix on symbols generated from compiling C
139 # source files, set LINKER_SYMBOL_PREFIX to that value. On some systems, exported symbols
140 # from C source files are prefixed with '_', for example. If this value is not set
141 # properly, the linker scripts that live in the '*.exports' files in various places
142 # in this tree will unintentionally suppress symbols that should be visible
143 # in the final binary objects.
144 LINKER_SYMBOL_PREFIX=
146 # Uncomment this to use the older DSP routines
147 #_ASTCFLAGS+=-DOLD_DSP_ROUTINES
149 # If the file .asterisk.makeopts is present in your home directory, you can
150 # include all of your favorite menuselect options so that every time you download
151 # a new version of Asterisk, you don't have to run menuselect to set them.
152 # The file /etc/asterisk.makeopts will also be included but can be overridden
153 # by the file in your home directory.
155 GLOBAL_MAKEOPTS=$(wildcard /etc/asterisk.makeopts)
156 USER_MAKEOPTS=$(wildcard ~/.asterisk.makeopts)
158 MOD_SUBDIR_CFLAGS=-I$(ASTTOPDIR)/include
159 OTHER_SUBDIR_CFLAGS=-I$(ASTTOPDIR)/include
161 # Create OPTIONS variable, but probably we can assign directly to ASTCFLAGS
164 ifeq ($(OSARCH),linux-gnu)
165 ifeq ($(PROC),x86_64)
166 # You must have GCC 3.4 to use k8, otherwise use athlon
171 ifeq ($(PROC),sparc64)
172 #The problem with sparc is the best stuff is in newer versions of gcc (post 3.0) only.
173 #This works for even old (2.96) versions of gcc and provides a small boost either way.
174 #A ultrasparc cpu is really v9 but the stock debian stable 3.0 gcc doesn't support it.
175 #So we go lowest common available by gcc and go a step down, still a step up from
176 #the default as we now have a better instruction set to work with. - Belgarath
178 OPTIONS+=$(shell if $(CC) -mtune=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mtune=$(PROC)"; fi)
179 OPTIONS+=$(shell if $(CC) -mcpu=v8 -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mcpu=v8"; fi)
180 OPTIONS+=-fomit-frame-pointer
184 # The Cirrus logic is the only heavily shipping arm processor with a real floating point unit
185 ifeq ($(SUB_PROC),maverick)
186 OPTIONS+=-fsigned-char -mcpu=ep9312
188 ifeq ($(SUB_PROC),xscale)
189 OPTIONS+=-fsigned-char -mcpu=xscale
191 OPTIONS+=-fsigned-char
197 ifeq ($(findstring -save-temps,$(_ASTCFLAGS) $(ASTCFLAGS)),)
198 ifeq ($(findstring -pipe,$(_ASTCFLAGS) $(ASTCFLAGS)),)
203 ifeq ($(findstring -Wall,$(_ASTCFLAGS) $(ASTCFLAGS)),)
207 _ASTCFLAGS+=-Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations $(DEBUG)
210 ifeq ($(AST_DEVMODE),yes)
213 _ASTCFLAGS+=$(AST_DECLARATION_AFTER_STATEMENT)
214 _ASTCFLAGS+=$(AST_FORTIFY_SOURCE)
216 _ASTCFLAGS+=-Wmissing-format-attribute
217 _ASTCFLAGS+=-Wformat=2
218 ADDL_TARGETS+=validate-docs
221 ifneq ($(findstring BSD,$(OSARCH)),)
222 _ASTCFLAGS+=-isystem /usr/local/include
225 ifeq ($(findstring -march,$(_ASTCFLAGS) $(ASTCFLAGS)),)
226 ifneq ($(AST_MARCH_NATIVE),)
227 _ASTCFLAGS+=$(AST_MARCH_NATIVE)
229 ifneq ($(PROC),ultrasparc)
230 _ASTCFLAGS+=$(shell if $(CC) -march=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-march=$(PROC)"; fi)
236 _ASTCFLAGS+=-fsigned-char
239 ifeq ($(OSARCH),FreeBSD)
240 ifeq ($(findstring -march,$(_ASTCFLAGS) $(ASTCFLAGS)),)
242 _ASTCFLAGS+=-march=i686
245 # -V is understood by BSD Make, not by GNU make.
246 BSDVERSION=$(shell make -V OSVERSION -f /usr/share/mk/bsd.port.subdir.mk)
247 _ASTCFLAGS+=$(shell if test $(BSDVERSION) -lt 500016 ; then echo "-D_THREAD_SAFE"; fi)
250 ifeq ($(OSARCH),NetBSD)
251 _ASTCFLAGS+=-pthread -I/usr/pkg/include
254 ifeq ($(OSARCH),OpenBSD)
255 _ASTCFLAGS+=-pthread -ftrampolines
258 ifeq ($(OSARCH),SunOS)
259 _ASTCFLAGS+=-Wcast-align -DSOLARIS -I../include/solaris-compat -I/opt/ssl/include -I/usr/local/ssl/include -D_XPG4_2 -D__EXTENSIONS__
262 ASTERISKVERSION:=$(shell GREP=$(GREP) AWK=$(AWK) build_tools/make_version .)
264 ifneq ($(wildcard .version),)
265 ASTERISKVERSIONNUM:=$(shell $(AWK) -F. '{printf "%01d%02d%02d", $$1, $$2, $$3}' .version)
268 ifneq ($(wildcard .svn),)
269 ASTERISKVERSIONNUM:=999999
272 _ASTCFLAGS+=$(OPTIONS)
274 MOD_SUBDIRS:=channels pbx apps codecs formats cdr cel bridges funcs tests main res addons $(LOCAL_MOD_SUBDIRS)
275 OTHER_SUBDIRS:=utils agi
276 SUBDIRS:=$(OTHER_SUBDIRS) $(MOD_SUBDIRS)
277 SUBDIRS_INSTALL:=$(SUBDIRS:%=%-install)
278 SUBDIRS_CLEAN:=$(SUBDIRS:%=%-clean)
279 SUBDIRS_DIST_CLEAN:=$(SUBDIRS:%=%-dist-clean)
280 SUBDIRS_UNINSTALL:=$(SUBDIRS:%=%-uninstall)
281 MOD_SUBDIRS_EMBED_LDSCRIPT:=$(MOD_SUBDIRS:%=%-embed-ldscript)
282 MOD_SUBDIRS_EMBED_LDFLAGS:=$(MOD_SUBDIRS:%=%-embed-ldflags)
283 MOD_SUBDIRS_EMBED_LIBS:=$(MOD_SUBDIRS:%=%-embed-libs)
284 MOD_SUBDIRS_MENUSELECT_TREE:=$(MOD_SUBDIRS:%=%-menuselect-tree)
286 ifneq ($(findstring darwin,$(OSARCH)),)
287 _ASTCFLAGS+=-D__Darwin__
288 SOLINK=-bundle -Xlinker -macosx_version_min -Xlinker 10.4 -Xlinker -undefined -Xlinker dynamic_lookup -force_flat_namespace
289 ifeq ($(shell /usr/bin/sw_vers -productVersion | cut -c1-4),10.6)
290 SOLINK+=/usr/lib/bundle1.o
292 _ASTLDFLAGS+=-L/usr/local/lib
294 # These are used for all but Darwin
296 ifneq ($(findstring BSD,$(OSARCH)),)
297 _ASTLDFLAGS+=-L/usr/local/lib
301 ifeq ($(OSARCH),SunOS)
302 SOLINK=-shared -fpic -L/usr/local/ssl/lib -lrt
305 ifeq ($(OSARCH),OpenBSD)
309 # comment to print directories during submakes
312 ifneq ($(INSIDE_EMACS),)
316 SILENTMAKE:=$(MAKE) --quiet --no-print-directory
317 ifneq ($(PRINT_DIR)$(NOISY_BUILD),)
320 SUBMAKE:=$(MAKE) --quiet --no-print-directory
323 # This is used when generating the doxygen documentation
330 # $(MAKE) is printed in several places, and we want it to be a
331 # fixed size string. Define a variable whose name has also the
332 # same size, so we can easily align text.
333 ifeq ($(MAKE), gmake)
340 @echo " +--------- Asterisk Build Complete ---------+"
341 @echo " + Asterisk has successfully been built, and +"
342 @echo " + can be installed by running: +"
344 @echo " + $(mK) install +"
345 @echo " +-------------------------------------------+"
347 _all: cleantest makeopts $(SUBDIRS) doc/core-en_US.xml $(ADDL_TARGETS)
351 @echo "**** The configure script must be executed before running '$(MAKE)'."
352 @echo "**** Please run \"./configure\"."
356 menuselect.makeopts: menuselect/menuselect menuselect-tree makeopts build_tools/menuselect-deps $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS)
357 ifeq ($(filter %menuselect,$(MAKECMDGOALS)),)
358 menuselect/menuselect --check-deps $@
359 menuselect/menuselect --check-deps $@ $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS)
362 $(MOD_SUBDIRS_EMBED_LDSCRIPT):
363 +@echo "EMBED_LDSCRIPTS+="`$(SILENTMAKE) -C $(@:-embed-ldscript=) SUBDIR=$(@:-embed-ldscript=) __embed_ldscript` >> makeopts.embed_rules
365 $(MOD_SUBDIRS_EMBED_LDFLAGS):
366 +@echo "EMBED_LDFLAGS+="`$(SILENTMAKE) -C $(@:-embed-ldflags=) SUBDIR=$(@:-embed-ldflags=) __embed_ldflags` >> makeopts.embed_rules
368 $(MOD_SUBDIRS_EMBED_LIBS):
369 +@echo "EMBED_LIBS+="`$(SILENTMAKE) -C $(@:-embed-libs=) SUBDIR=$(@:-embed-libs=) __embed_libs` >> makeopts.embed_rules
371 $(MOD_SUBDIRS_MENUSELECT_TREE):
372 +@$(SUBMAKE) -C $(@:-menuselect-tree=) SUBDIR=$(@:-menuselect-tree=) moduleinfo
373 +@$(SUBMAKE) -C $(@:-menuselect-tree=) SUBDIR=$(@:-menuselect-tree=) makeopts
375 makeopts.embed_rules: menuselect.makeopts
376 @echo "Generating embedded module rules ..."
378 +@$(SUBMAKE) $(MOD_SUBDIRS_EMBED_LDSCRIPT)
379 +@$(SUBMAKE) $(MOD_SUBDIRS_EMBED_LDFLAGS)
380 +@$(SUBMAKE) $(MOD_SUBDIRS_EMBED_LIBS)
382 $(SUBDIRS): main/version.c include/asterisk/version.h include/asterisk/build.h include/asterisk/buildopts.h defaults.h makeopts.embed_rules
384 ifeq ($(findstring $(OSARCH), mingw32 cygwin ),)
386 # ensure that all module subdirectories are processed before 'main' during
387 # a parallel build, since if there are modules selected to be embedded the
388 # directories containing them must be completed before the main Asterisk
389 # binary can be built
390 main: $(filter-out main,$(MOD_SUBDIRS))
392 # Windows: we need to build main (i.e. the asterisk dll) first,
393 # followed by res, followed by the other directories, because
394 # dll symbols must be resolved during linking and not at runtime.
395 D1:= $(filter-out main,$(MOD_SUBDIRS))
396 D1:= $(filter-out res,$(D1))
403 +@_ASTCFLAGS="$(MOD_SUBDIR_CFLAGS) $(_ASTCFLAGS)" ASTCFLAGS="$(ASTCFLAGS)" _ASTLDFLAGS="$(_ASTLDFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" $(SUBMAKE) --no-builtin-rules -C $@ SUBDIR=$@ all
406 +@_ASTCFLAGS="$(OTHER_SUBDIR_CFLAGS) $(_ASTCFLAGS)" ASTCFLAGS="$(ASTCFLAGS)" _ASTLDFLAGS="$(_ASTLDFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" $(SUBMAKE) --no-builtin-rules -C $@ SUBDIR=$@ all
409 @build_tools/make_defaults_h > $@.tmp
410 @cmp -s $@.tmp $@ || mv $@.tmp $@
413 main/version.c: FORCE
414 @build_tools/make_version_c > $@.tmp
415 @cmp -s $@.tmp $@ || mv $@.tmp $@
418 include/asterisk/version.h: FORCE
419 @build_tools/make_version_h > $@.tmp
420 @cmp -s $@.tmp $@ || mv $@.tmp $@
423 include/asterisk/buildopts.h: menuselect.makeopts
424 @build_tools/make_buildopts_h > $@.tmp
425 @cmp -s $@.tmp $@ || mv $@.tmp $@
428 include/asterisk/build.h:
429 @build_tools/make_build_h > $@.tmp
430 @cmp -s $@.tmp $@ || mv $@.tmp $@
434 +@$(SUBMAKE) -C $(@:-clean=) clean
436 $(SUBDIRS_DIST_CLEAN):
437 +@$(SUBMAKE) -C $(@:-dist-clean=) dist-clean
439 clean: $(SUBDIRS_CLEAN) _clean
443 rm -f include/asterisk/build.h
445 rm -f include/asterisk/version.h
446 @$(MAKE) -C menuselect clean
447 cp -f .cleancount .lastclean
449 dist-clean: distclean
451 distclean: $(SUBDIRS_DIST_CLEAN) _clean
452 @$(MAKE) -C menuselect dist-clean
453 @$(MAKE) -C sounds dist-clean
454 rm -f menuselect.makeopts makeopts menuselect-tree menuselect.makedeps
455 rm -f makeopts.embed_rules
456 rm -f config.log config.status config.cache
457 rm -rf autom4te.cache
458 rm -f include/asterisk/autoconfig.h
459 rm -f include/asterisk/buildopts.h
461 rm -f build_tools/menuselect-deps
463 datafiles: _all doc/core-en_US.xml
464 CFLAGS="$(_ASTCFLAGS) $(ASTCFLAGS)" build_tools/mkpkgconfig $(DESTDIR)$(libdir)/pkgconfig;
465 # Should static HTTP be installed during make samples or even with its own target ala
466 # webvoicemail? There are portions here that *could* be customized but might also be
467 # improved a lot. I'll put it here for now.
469 for x in static-http/*; do \
470 $(INSTALL) -m 644 $$x "$(DESTDIR)$(ASTDATADIR)/static-http" ; \
472 $(INSTALL) -m 644 doc/core-en_US.xml "$(DESTDIR)$(ASTDATADIR)/static-http";
473 if [ -d doc/tex/asterisk ] ; then \
474 $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/static-http/docs" ; \
475 for n in doc/tex/asterisk/* ; do \
476 $(INSTALL) -m 644 $$n "$(DESTDIR)$(ASTDATADIR)/static-http/docs" ; \
479 for x in images/*.jpg; do \
480 $(INSTALL) -m 644 $$x "$(DESTDIR)$(ASTDATADIR)/images" ; \
482 $(MAKE) -C sounds install
484 doc/core-en_US.xml: $(foreach dir,$(MOD_SUBDIRS),$(shell $(GREP) -l "language=\"en_US\"" $(dir)/*.c $(dir)/*.cc 2>/dev/null))
485 @printf "Building Documentation For: "
486 @echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" > $@
487 @echo "<!DOCTYPE docs SYSTEM \"appdocsxml.dtd\">" >> $@
488 @echo "<docs xmlns:xi=\"http://www.w3.org/2001/XInclude\">" >> $@
489 @for x in $(MOD_SUBDIRS); do \
491 for i in $$x/*.c; do \
492 $(AWK) -f build_tools/get_documentation $$i >> $@ ; \
496 @echo "</docs>" >> $@
498 validate-docs: doc/core-en_US.xml
499 ifeq ($(XMLSTARLET)$(XMLLINT),::)
500 @echo "--------------------------------------------------------------------------"
501 @echo "--- Please install xmllint or xmlstarlet to validate the documentation ---"
502 @echo "--------------------------------------------------------------------------"
505 $(XMLLINT) --dtdvalid doc/appdocsxml.dtd --noout $<
507 $(XMLSTARLET) val -d doc/appdocsxml.dtd $<
512 @if [ -d .svn ]; then \
513 echo "Updating from Subversion..." ; \
514 fromrev="`svn info | $(AWK) '/Revision: / {print $$2}'`"; \
515 svn update | tee update.out; \
516 torev="`svn info | $(AWK) '/Revision: / {print $$2}'`"; \
517 echo "`date` Updated from revision $${fromrev} to $${torev}." >> update.log; \
519 if [ `grep -c ^C update.out` -gt 0 ]; then \
520 echo ; echo "The following files have conflicts:" ; \
521 grep ^C update.out | cut -b4- ; \
525 echo "Not under version control"; \
528 NEWHEADERS=$(notdir $(wildcard include/asterisk/*.h))
529 OLDHEADERS=$(filter-out $(NEWHEADERS),$(notdir $(wildcard $(DESTDIR)$(ASTHEADERDIR)/*.h)))
532 $(INSTALL) -d "$(DESTDIR)$(MODULES_DIR)"
533 $(INSTALL) -d "$(DESTDIR)$(ASTSBINDIR)"
534 $(INSTALL) -d "$(DESTDIR)$(ASTETCDIR)"
535 $(INSTALL) -d "$(DESTDIR)$(ASTVARRUNDIR)"
536 $(INSTALL) -d "$(DESTDIR)$(ASTSPOOLDIR)"
537 $(INSTALL) -d "$(DESTDIR)$(ASTSPOOLDIR)/dictate"
538 $(INSTALL) -d "$(DESTDIR)$(ASTSPOOLDIR)/meetme"
539 $(INSTALL) -d "$(DESTDIR)$(ASTSPOOLDIR)/monitor"
540 $(INSTALL) -d "$(DESTDIR)$(ASTSPOOLDIR)/system"
541 $(INSTALL) -d "$(DESTDIR)$(ASTSPOOLDIR)/tmp"
542 $(INSTALL) -d "$(DESTDIR)$(ASTSPOOLDIR)/voicemail"
543 $(INSTALL) -d "$(DESTDIR)$(ASTHEADERDIR)"
544 $(INSTALL) -d "$(DESTDIR)$(ASTHEADERDIR)/doxygen"
545 $(INSTALL) -d "$(DESTDIR)$(ASTLOGDIR)"
546 $(INSTALL) -d "$(DESTDIR)$(ASTLOGDIR)/cdr-csv"
547 $(INSTALL) -d "$(DESTDIR)$(ASTLOGDIR)/cdr-custom"
548 $(INSTALL) -d "$(DESTDIR)$(ASTLOGDIR)/cel-custom"
549 $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)"
550 $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/documentation"
551 $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/documentation/thirdparty"
552 $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/firmware"
553 $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/firmware/iax"
554 $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/images"
555 $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/keys"
556 $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/phoneprov"
557 $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/static-http"
558 $(INSTALL) -d "$(DESTDIR)$(ASTMANDIR)/man8"
559 $(INSTALL) -d "$(DESTDIR)$(AGI_DIR)"
560 $(INSTALL) -d "$(DESTDIR)$(ASTDBDIR)"
562 bininstall: _all installdirs $(SUBDIRS_INSTALL)
563 $(INSTALL) -m 755 main/asterisk $(DESTDIR)$(ASTSBINDIR)/
564 $(LN) -sf asterisk $(DESTDIR)$(ASTSBINDIR)/rasterisk
565 $(INSTALL) -m 755 contrib/scripts/astgenkey $(DESTDIR)$(ASTSBINDIR)/
566 $(INSTALL) -m 755 contrib/scripts/autosupport $(DESTDIR)$(ASTSBINDIR)/
567 if [ ! -f $(DESTDIR)$(ASTSBINDIR)/safe_asterisk -a ! -f /sbin/launchd ]; then \
568 cat contrib/scripts/safe_asterisk | sed 's|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;s|__ASTERISK_LOG_DIR__|$(ASTLOGDIR)|;' > contrib/scripts/safe.tmp ; \
569 $(INSTALL) -m 755 contrib/scripts/safe.tmp $(DESTDIR)$(ASTSBINDIR)/safe_asterisk ; \
570 rm -f contrib/scripts/safe.tmp ; \
572 $(INSTALL) -m 644 include/asterisk.h $(DESTDIR)$(includedir)
573 $(INSTALL) -m 644 include/asterisk/*.h $(DESTDIR)$(ASTHEADERDIR)
574 $(INSTALL) -m 644 include/asterisk/doxygen/*.h $(DESTDIR)$(ASTHEADERDIR)/doxygen
575 if [ -n "$(OLDHEADERS)" ]; then \
576 rm -f $(addprefix $(DESTDIR)$(ASTHEADERDIR)/,$(OLDHEADERS)) ;\
579 $(INSTALL) -m 644 doc/core-*.xml "$(DESTDIR)$(ASTDATADIR)/documentation"
580 $(INSTALL) -m 644 doc/appdocsxml.dtd "$(DESTDIR)$(ASTDATADIR)/documentation"
581 $(INSTALL) -m 644 doc/asterisk.8 "$(DESTDIR)$(ASTMANDIR)/man8"
582 $(INSTALL) -m 644 contrib/scripts/astgenkey.8 "$(DESTDIR)$(ASTMANDIR)/man8"
583 $(INSTALL) -m 644 contrib/scripts/autosupport.8 "$(DESTDIR)$(ASTMANDIR)/man8"
584 $(INSTALL) -m 644 contrib/scripts/safe_asterisk.8 "$(DESTDIR)$(ASTMANDIR)/man8"
585 if [ -f contrib/firmware/iax/iaxy.bin ] ; then \
586 $(INSTALL) -m 644 contrib/firmware/iax/iaxy.bin "$(DESTDIR)$(ASTDATADIR)/firmware/iax/iaxy.bin"; \
590 +@DESTDIR="$(DESTDIR)" ASTSBINDIR="$(ASTSBINDIR)" $(SUBMAKE) -C $(@:-install=) install
592 NEWMODS:=$(foreach d,$(MOD_SUBDIRS),$(notdir $(wildcard $(d)/*.so)))
593 OLDMODS=$(filter-out $(NEWMODS),$(notdir $(wildcard "$(DESTDIR)$(MODULES_DIR)/*.so")))
596 @if [ -n "$(OLDMODS)" ]; then \
597 echo " WARNING WARNING WARNING" ;\
599 echo " Your Asterisk modules directory, located at" ;\
600 echo " $(DESTDIR)$(MODULES_DIR)" ;\
601 echo " contains modules that were not installed by this " ;\
602 echo " version of Asterisk. Please ensure that these" ;\
603 echo " modules are compatible with this version before" ;\
604 echo " attempting to run Asterisk." ;\
606 for f in $(OLDMODS); do \
610 echo " WARNING WARNING WARNING" ;\
614 ifneq ($(findstring ~,$(DESTDIR)),)
615 @echo "Your shell doesn't do ~ expansion when expected (specifically, when doing \"make install DESTDIR=~/path\")."
616 @echo "Try replacing ~ with \$$HOME, as in \"make install DESTDIR=\$$HOME/path\"."
620 install: badshell bininstall datafiles
621 @if [ -x /usr/sbin/asterisk-post-install ]; then \
622 /usr/sbin/asterisk-post-install $(DESTDIR) . ; \
624 @echo " +---- Asterisk Installation Complete -------+"
626 @echo " + YOU MUST READ THE SECURITY DOCUMENT +"
628 @echo " + Asterisk has successfully been installed. +"
629 @echo " + If you would like to install the sample +"
630 @echo " + configuration files (overwriting any +"
631 @echo " + existing config files), run: +"
633 @echo " + $(mK) samples +"
635 @echo " +----------------- or ---------------------+"
637 @echo " + You can go ahead and install the asterisk +"
638 @echo " + program documentation now or later run: +"
640 @echo " + $(mK) progdocs +"
642 @echo " + **Note** This requires that you have +"
643 @echo " + doxygen installed on your local system +"
644 @echo " +-------------------------------------------+"
645 @$(MAKE) -s oldmodcheck
651 # XXX why *.adsi is installed first ?
653 @echo Installing adsi config files...
654 $(INSTALL) -d $(DESTDIR)$(ASTETCDIR)
655 @for x in configs/*.adsi; do \
656 dst="$(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x`" ; \
657 if [ -f $${dst} ] ; then \
658 echo "Overwriting $$x" ; \
660 echo "Installing $$x" ; \
662 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x` ; \
666 @echo Installing other config files...
667 @for x in configs/*.sample; do \
668 dst="$(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample`" ; \
669 if [ -f $${dst} ]; then \
670 if [ "$(OVERWRITE)" = "y" ]; then \
671 if cmp -s $${dst} $$x ; then \
672 echo "Config file $$x is unchanged"; \
675 mv -f $${dst} $${dst}.old ; \
677 echo "Skipping config file $$x"; \
681 echo "Installing file $$x"; \
682 $(INSTALL) -m 644 $$x $${dst} ;\
684 if [ "$(OVERWRITE)" = "y" ]; then \
685 echo "Updating asterisk.conf" ; \
686 sed -e 's|^astetcdir.*$$|astetcdir => $(ASTETCDIR)|' \
687 -e 's|^astmoddir.*$$|astmoddir => $(MODULES_DIR)|' \
688 -e 's|^astvarlibdir.*$$|astvarlibdir => $(ASTVARLIBDIR)|' \
689 -e 's|^astdbdir.*$$|astdbdir => $(ASTDBDIR)|' \
690 -e 's|^astkeydir.*$$|astkeydir => $(ASTKEYDIR)|' \
691 -e 's|^astdatadir.*$$|astdatadir => $(ASTDATADIR)|' \
692 -e 's|^astagidir.*$$|astagidir => $(AGI_DIR)|' \
693 -e 's|^astspooldir.*$$|astspooldir => $(ASTSPOOLDIR)|' \
694 -e 's|^astrundir.*$$|astrundir => $(ASTVARRUNDIR)|' \
695 -e 's|^astlogdir.*$$|astlogdir => $(ASTLOGDIR)|' \
696 $(DESTDIR)$(ASTCONFPATH) > $(DESTDIR)$(ASTCONFPATH).tmp ; \
697 $(INSTALL) -m 644 $(DESTDIR)$(ASTCONFPATH).tmp $(DESTDIR)$(ASTCONFPATH) ; \
698 rm -f $(DESTDIR)$(ASTCONFPATH).tmp ; \
700 $(INSTALL) -d $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/INBOX
701 build_tools/make_sample_voicemail "$(DESTDIR)$(ASTDATADIR)" "$(DESTDIR)$(ASTSPOOLDIR)"
703 @for x in phoneprov/*; do \
704 dst="$(DESTDIR)$(ASTDATADIR)/$$x" ; \
705 if [ -f "$${dst}" ]; then \
706 if [ "$(OVERWRITE)" = "y" ]; then \
707 if cmp -s "$${dst}" $$x ; then \
708 echo "Config file $$x is unchanged"; \
711 mv -f "$${dst}" "$${dst}.old" ; \
713 echo "Skipping config file $$x"; \
717 echo "Installing file $$x"; \
718 $(INSTALL) -m 644 $$x "$${dst}" ;\
722 @[ -d $(DESTDIR)$(HTTP_DOCSDIR)/ ] || ( printf "http docs directory not found.\nUpdate assignment of variable HTTP_DOCSDIR in Makefile!\n" && exit 1 )
723 @[ -d $(DESTDIR)$(HTTP_CGIDIR) ] || ( printf "cgi-bin directory not found.\nUpdate assignment of variable HTTP_CGIDIR in Makefile!\n" && exit 1 )
724 $(INSTALL) -m 4755 contrib/scripts/vmail.cgi "$(DESTDIR)$(HTTP_CGIDIR)/vmail.cgi"
725 $(INSTALL) -d $(DESTDIR)$(HTTP_DOCSDIR)/_asterisk
726 for x in images/*.gif; do \
727 $(INSTALL) -m 644 $$x "$(DESTDIR)$(HTTP_DOCSDIR)/_asterisk/"; \
729 @echo " +--------- Asterisk Web Voicemail ----------+"
731 @echo " + Asterisk Web Voicemail is installed in +"
732 @echo " + your cgi-bin directory: +"
733 @echo " + $(DESTDIR)$(HTTP_CGIDIR)"
734 @echo " + IT USES A SETUID ROOT PERL SCRIPT, SO +"
735 @echo " + IF YOU DON'T LIKE THAT, UNINSTALL IT! +"
737 @echo " + Other static items have been stored in: +"
738 @echo " + $(DESTDIR)$(HTTP_DOCSDIR)"
740 @echo " + If these paths do not match your httpd +"
741 @echo " + installation, correct the definitions +"
742 @echo " + in your Makefile of HTTP_CGIDIR and +"
743 @echo " + HTTP_DOCSDIR +"
745 @echo " +-------------------------------------------+"
748 (cat contrib/asterisk-ng-doxygen; echo "HAVE_DOT=$(HAVEDOT)"; \
749 echo "PROJECT_NUMBER=$(ASTERISKVERSION)") | doxygen -
752 if [ ! -d $(ASTETCDIR)/../logrotate.d ]; then \
753 $(INSTALL) -d $(ASTETCDIR)/../logrotate.d ; \
755 sed 's#__LOGDIR__#$(ASTLOGDIR)#g' < contrib/scripts/asterisk.logrotate | sed 's#__SBINDIR__#$(ASTSBINDIR)#g' > contrib/scripts/asterisk.logrotate.tmp
756 $(INSTALL) -m 0644 contrib/scripts/asterisk.logrotate.tmp $(ASTETCDIR)/../logrotate.d/asterisk
757 rm -f contrib/scripts/asterisk.logrotate.tmp
760 @if [ "${OSARCH}" = "linux-gnu" ]; then \
761 if [ -f /etc/redhat-release -o -f /etc/fedora-release ]; then \
762 cat contrib/init.d/rc.redhat.asterisk | sed 's|__ASTERISK_ETC_DIR__|$(ASTETCDIR)|;s|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > contrib/init.d/rc.asterisk.tmp ; \
763 $(INSTALL) -m 755 contrib/init.d/rc.asterisk.tmp $(DESTDIR)/etc/rc.d/init.d/asterisk ; \
764 rm -f contrib/init.d/rc.asterisk.tmp ; \
765 if [ ! -f $(DESTDIR)/etc/sysconfig/asterisk ] ; then \
766 $(INSTALL) -m 644 contrib/init.d/etc_default_asterisk $(DESTDIR)/etc/sysconfig/asterisk ; \
768 if [ -z "$(DESTDIR)" ] ; then \
769 /sbin/chkconfig --add asterisk ; \
771 elif [ -f /etc/debian_version ] ; then \
772 cat contrib/init.d/rc.debian.asterisk | sed 's|__ASTERISK_ETC_DIR__|$(ASTETCDIR)|;s|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > contrib/init.d/rc.asterisk.tmp ; \
773 $(INSTALL) -m 755 contrib/init.d/rc.asterisk.tmp $(DESTDIR)/etc/init.d/asterisk ; \
774 rm -f contrib/init.d/rc.asterisk.tmp ; \
775 if [ ! -f $(DESTDIR)/etc/default/asterisk ] ; then \
776 $(INSTALL) -m 644 contrib/init.d/etc_default_asterisk $(DESTDIR)/etc/default/asterisk ; \
778 if [ -z "$(DESTDIR)" ] ; then \
779 /usr/sbin/update-rc.d asterisk defaults 50 91 ; \
781 elif [ -f /etc/gentoo-release ] ; then \
782 cat contrib/init.d/rc.gentoo.asterisk | sed 's|__ASTERISK_ETC_DIR__|$(ASTETCDIR)|;s|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > contrib/init.d/rc.asterisk.tmp ; \
783 $(INSTALL) -m 755 contrib/init.d/rc.asterisk.tmp $(DESTDIR)/etc/init.d/asterisk ; \
784 rm -f contrib/init.d/rc.asterisk.tmp ; \
785 if [ -z "$(DESTDIR)" ] ; then \
786 /sbin/rc-update add asterisk default ; \
788 elif [ -f /etc/mandrake-release -o -f /etc/mandriva-release ] ; then \
789 cat contrib/init.d/rc.mandriva.asterisk | sed 's|__ASTERISK_ETC_DIR__|$(ASTETCDIR)|;s|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > contrib/init.d/rc.asterisk.tmp ; \
790 $(INSTALL) -m 755 contrib/init.d/rc.asterisk.tmp $(DESTDIR)/etc/rc.d/init.d/asterisk ; \
791 rm -f contrib/init.d/rc.asterisk.tmp ; \
792 if [ ! -f /etc/sysconfig/asterisk ] ; then \
793 $(INSTALL) -m 644 contrib/init.d/etc_default_asterisk $(DESTDIR)/etc/sysconfig/asterisk ; \
795 if [ -z "$(DESTDIR)" ] ; then \
796 /sbin/chkconfig --add asterisk ; \
798 elif [ -f /etc/SuSE-release -o -f /etc/novell-release ] ; then \
799 cat contrib/init.d/rc.suse.asterisk | sed 's|__ASTERISK_ETC_DIR__|$(ASTETCDIR)|;s|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > contrib/init.d/rc.asterisk.tmp ; \
800 $(INSTALL) -m 755 contrib/init.d/rc.asterisk.tmp $(DESTDIR)/etc/init.d/asterisk ;\
801 rm -f contrib/init.d/rc.asterisk.tmp ; \
802 if [ ! -f /etc/sysconfig/asterisk ] ; then \
803 $(INSTALL) -m 644 contrib/init.d/etc_default_asterisk $(DESTDIR)/etc/sysconfig/asterisk ; \
805 if [ -z "$(DESTDIR)" ] ; then \
806 /sbin/chkconfig --add asterisk ; \
808 elif [ -f /etc/arch-release -o -f /etc/arch-release ] ; then \
809 cat contrib/init.d/rc.archlinux.asterisk | sed 's|__ASTERISK_ETC_DIR__|$(ASTETCDIR)|;s|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > contrib/init.d/rc.asterisk.tmp ; \
810 $(INSTALL) -m 755 contrib/init.d/rc.asterisk.tmp $(DESTDIR)/etc/rc.d/asterisk ; \
811 rm -f contrib/init.d/rc.asterisk.tmp ; \
812 elif [ -d $(DESTDIR)/Library/LaunchDaemons ]; then \
813 if [ ! -f $(DESTDIR)/Library/LaunchDaemons/org.asterisk.asterisk.plist ]; then \
814 sed 's|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;' < contrib/init.d/org.asterisk.asterisk.plist > asterisk.plist ; \
815 $(INSTALL) -m 644 asterisk.plist $(DESTDIR)/Library/LaunchDaemons/org.asterisk.asterisk.plist; \
816 rm -f asterisk.plist; \
818 if [ ! -f $(DESTDIR)/Library/LaunchDaemons/org.asterisk.muted.plist ]; then \
819 sed 's|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;' < contrib/init.d/org.asterisk.muted.plist > muted.plist ; \
820 $(INSTALL) -m 644 muted.plist $(DESTDIR)/Library/LaunchDaemons/org.asterisk.muted.plist; \
823 elif [ -f /etc/slackware-version ]; then \
824 echo "Slackware is not currently supported, although an init script does exist for it."; \
826 echo "We could not install init scripts for your distribution." ; \
829 echo "We could not install init scripts for your operating system." ; \
833 $(MAKE) -C sounds all
835 # If the cleancount has been changed, force a make clean.
836 # .cleancount is the global clean count, and .lastclean is the
837 # last clean count we had
840 @cmp -s .cleancount .lastclean || $(MAKE) clean
842 $(SUBDIRS_UNINSTALL):
843 +@$(SUBMAKE) -C $(@:-uninstall=) uninstall
845 _uninstall: $(SUBDIRS_UNINSTALL)
846 rm -f "$(DESTDIR)$(MODULES_DIR)/*"
847 rm -f $(DESTDIR)$(ASTSBINDIR)/*asterisk*
848 rm -f $(DESTDIR)$(ASTSBINDIR)/astgenkey
849 rm -f $(DESTDIR)$(ASTSBINDIR)/autosupport
850 rm -rf $(DESTDIR)$(ASTHEADERDIR)
851 rm -rf "$(DESTDIR)$(ASTDATADIR)/firmware"
852 rm -f $(DESTDIR)$(ASTMANDIR)/man8/asterisk.8
853 rm -f $(DESTDIR)$(ASTMANDIR)/man8/astgenkey.8
854 rm -f $(DESTDIR)$(ASTMANDIR)/man8/autosupport.8
855 rm -f $(DESTDIR)$(ASTMANDIR)/man8/safe_asterisk.8
856 $(MAKE) -C sounds uninstall
858 uninstall: _uninstall
859 @echo " +--------- Asterisk Uninstall Complete -----+"
860 @echo " + Asterisk binaries, sounds, man pages, +"
861 @echo " + headers, modules, and firmware builds, +"
862 @echo " + have all been uninstalled. +"
864 @echo " + To remove ALL traces of Asterisk, +"
865 @echo " + including configuration, spool +"
866 @echo " + directories, and logs, run the following +"
867 @echo " + command: +"
869 @echo " + $(mK) uninstall-all +"
870 @echo " +-------------------------------------------+"
872 uninstall-all: _uninstall
873 rm -rf "$(DESTDIR)$(ASTLIBDIR)"
874 rm -rf "$(DESTDIR)$(ASTVARLIBDIR)"
875 rm -rf "$(DESTDIR)$(ASTDATADIR)"
876 rm -rf "$(DESTDIR)$(ASTSPOOLDIR)"
877 rm -rf "$(DESTDIR)$(ASTETCDIR)"
878 rm -rf "$(DESTDIR)$(ASTLOGDIR)"
880 menuconfig: menuselect
882 cmenuconfig: cmenuselect
884 gmenuconfig: gmenuselect
886 nmenuconfig: nmenuselect
888 menuselect: menuselect/cmenuselect menuselect/nmenuselect menuselect/gmenuselect
889 @if [ -x menuselect/nmenuselect ]; then \
890 $(MAKE) nmenuselect; \
891 elif [ -x menuselect/cmenuselect ]; then \
892 $(MAKE) cmenuselect; \
893 elif [ -x menuselect/gmenuselect ]; then \
894 $(MAKE) gmenuselect; \
896 echo "No menuselect user interface found. Install ncurses,"; \
897 echo "newt or GTK libraries to build one and re-rerun"; \
898 echo "'./configure' and 'make menuselect'."; \
901 cmenuselect: menuselect/cmenuselect menuselect-tree menuselect.makeopts
902 -@menuselect/cmenuselect menuselect.makeopts && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
904 gmenuselect: menuselect/gmenuselect menuselect-tree menuselect.makeopts
905 -@menuselect/gmenuselect menuselect.makeopts && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
907 nmenuselect: menuselect/nmenuselect menuselect-tree menuselect.makeopts
908 -@menuselect/nmenuselect menuselect.makeopts && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
910 # options for make in menuselect/
911 MAKE_MENUSELECT=CC="$(BUILD_CC)" CXX="" LD="" AR="" RANLIB="" CFLAGS="" $(MAKE) -C menuselect CONFIGURE_SILENT="--silent"
913 menuselect/menuselect: menuselect/makeopts
914 +$(MAKE_MENUSELECT) menuselect
916 menuselect/cmenuselect: menuselect/makeopts
917 +$(MAKE_MENUSELECT) cmenuselect
919 menuselect/gmenuselect: menuselect/makeopts
920 +$(MAKE_MENUSELECT) gmenuselect
922 menuselect/nmenuselect: menuselect/makeopts
923 +$(MAKE_MENUSELECT) nmenuselect
925 menuselect/makeopts: makeopts
926 +$(MAKE_MENUSELECT) makeopts
928 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 makeopts
929 @echo "Generating input for menuselect ..."
930 @echo "<?xml version=\"1.0\"?>" > $@
932 @echo "<menu name=\"Asterisk Module and Build Option Selection\">" >> $@
933 +@for dir in $(sort $(filter-out main,$(MOD_SUBDIRS))); do $(SILENTMAKE) -C $${dir} SUBDIR=$${dir} moduleinfo >> $@; done
934 @cat build_tools/cflags.xml >> $@
935 +@for dir in $(sort $(filter-out main,$(MOD_SUBDIRS))); do $(SILENTMAKE) -C $${dir} SUBDIR=$${dir} makeopts >> $@; done
936 @if [ "${AST_DEVMODE}" = "yes" ]; then \
937 cat build_tools/cflags-devmode.xml >> $@; \
939 @cat utils/utils.xml >> $@
940 @cat agi/agi.xml >> $@
941 @cat build_tools/embed_modules.xml >> $@
942 @cat sounds/sounds.xml >> $@
943 @echo "</menu>" >> $@
956 .PHONY: uninstall-all
957 .PHONY: dont-optimize
960 .PHONY: validate-docs
962 .PHONY: $(SUBDIRS_INSTALL)
963 .PHONY: $(SUBDIRS_DIST_CLEAN)
964 .PHONY: $(SUBDIRS_CLEAN)
965 .PHONY: $(SUBDIRS_UNINSTALL)
967 .PHONY: $(MOD_SUBDIRS_EMBED_LDSCRIPT)
968 .PHONY: $(MOD_SUBDIRS_EMBED_LDFLAGS)
969 .PHONY: $(MOD_SUBDIRS_EMBED_LIBS)