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
17 # ASTLDFLAGS - linker flags (not libraries)
18 # AST_LIBS - libraries to build binaries XXX
19 # LIBS - additional libraries, at top-level for all links,
20 # on a single object just for that object
21 # SOLINK - linker flags used only for creating shared objects (.so files),
22 # used for all .so links
24 # Default values fo ASTCFLAGS and ASTLDFLAGS can be specified in the
25 # environment when running make, as follows:
27 # $ ASTCFLAGS="-Werror" make
30 export ASTERISKVERSION
31 export ASTERISKVERSIONNUM
48 export MENUSELECT_CFLAGS
72 # even though we could use '-include makeopts' here, use a wildcard
73 # lookup anyway, so that make won't try to build makeopts if it doesn't
74 # exist (other rules will force it to be built if needed)
75 ifneq ($(wildcard makeopts),)
79 # Some build systems, such as the one in openwrt, like to pass custom target
80 # CFLAGS and LDFLAGS in the COPTS and LDOPTS variables.
84 #Uncomment this to see all build commands instead of 'quiet' output
87 # Create OPTIONS variable
92 # Overwite config files on "make samples"
95 # Include debug and macro symbols in the executables (-g) and profiling info (-pg)
99 # Files are copied here temporarily during the install process
100 # For example, make DESTDIR=/tmp/asterisk woud put things in
101 # /tmp/asterisk/etc/asterisk
102 # !!! Watch out, put no spaces or comments after the value !!!
103 #DESTDIR?=/tmp/asterisk
105 # Define standard directories for various platforms
106 # These apply if they are not redefined in asterisk.conf
107 ifeq ($(OSARCH),SunOS)
108 ASTETCDIR=/var/etc/asterisk
109 ASTLIBDIR=/opt/asterisk/lib
110 ASTVARLIBDIR=/var/opt/asterisk
111 ASTDBDIR=$(ASTVARLIBDIR)
112 ASTKEYDIR=$(ASTVARLIBDIR)
113 ASTSPOOLDIR=/var/spool/asterisk
114 ASTLOGDIR=/var/log/asterisk
115 ASTHEADERDIR=/opt/asterisk/include
116 ASTBINDIR=/opt/asterisk/bin
117 ASTSBINDIR=/opt/asterisk/sbin
118 ASTVARRUNDIR=/var/run/asterisk
119 ASTMANDIR=/opt/asterisk/man
121 ASTETCDIR=$(sysconfdir)/asterisk
122 ASTLIBDIR=$(libdir)/asterisk
123 ASTHEADERDIR=$(includedir)/asterisk
125 ASTSBINDIR=$(sbindir)
126 ASTSPOOLDIR=$(localstatedir)/spool/asterisk
127 ASTLOGDIR=$(localstatedir)/log/asterisk
128 ASTVARRUNDIR=$(localstatedir)/run
130 ifneq ($(findstring BSD,$(OSARCH)),)
131 ASTVARLIBDIR=$(prefix)/share/asterisk
132 ASTVARRUNDIR=$(localstatedir)/run/asterisk
133 ASTDBDIR=$(localstatedir)/db/asterisk
135 ASTVARLIBDIR=$(localstatedir)/lib/asterisk
136 ASTDBDIR=$(ASTVARLIBDIR)
138 ASTKEYDIR=$(ASTVARLIBDIR)
140 ifeq ($(ASTDATADIR),)
141 ASTDATADIR:=$(ASTVARLIBDIR)
144 # Asterisk.conf is located in ASTETCDIR or by using the -C flag
145 # when starting Asterisk
146 ASTCONFPATH=$(ASTETCDIR)/asterisk.conf
147 MODULES_DIR=$(ASTLIBDIR)/modules
148 AGI_DIR=$(ASTDATADIR)/agi-bin
150 # If you use Apache, you may determine by a grep 'DocumentRoot' of your httpd.conf file
151 HTTP_DOCSDIR=/var/www/html
152 # Determine by a grep 'ScriptAlias' of your Apache httpd.conf file
153 HTTP_CGIDIR=/var/www/cgi-bin
155 # Uncomment this to use the older DSP routines
156 #ASTCFLAGS+=-DOLD_DSP_ROUTINES
158 # If the file .asterisk.makeopts is present in your home directory, you can
159 # include all of your favorite menuselect options so that every time you download
160 # a new version of Asterisk, you don't have to run menuselect to set them.
161 # The file /etc/asterisk.makeopts will also be included but can be overridden
162 # by the file in your home directory.
164 GLOBAL_MAKEOPTS=$(wildcard /etc/asterisk.makeopts)
165 USER_MAKEOPTS=$(wildcard ~/.asterisk.makeopts)
167 MOD_SUBDIR_CFLAGS=-I$(ASTTOPDIR)/include
168 OTHER_SUBDIR_CFLAGS=-I$(ASTTOPDIR)/include
170 ifeq ($(OSARCH),linux-gnu)
171 ifeq ($(PROC),x86_64)
172 # You must have GCC 3.4 to use k8, otherwise use athlon
177 ifeq ($(PROC),sparc64)
178 #The problem with sparc is the best stuff is in newer versions of gcc (post 3.0) only.
179 #This works for even old (2.96) versions of gcc and provides a small boost either way.
180 #A ultrasparc cpu is really v9 but the stock debian stable 3.0 gcc doesn't support it.
181 #So we go lowest common available by gcc and go a step down, still a step up from
182 #the default as we now have a better instruction set to work with. - Belgarath
184 OPTIONS+=$(shell if $(CC) -mtune=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mtune=$(PROC)"; fi)
185 OPTIONS+=$(shell if $(CC) -mcpu=v8 -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mcpu=v8"; fi)
186 OPTIONS+=-fomit-frame-pointer
190 # The Cirrus logic is the only heavily shipping arm processor with a real floating point unit
191 ifeq ($(SUB_PROC),maverick)
192 OPTIONS+=-fsigned-char -mcpu=ep9312
194 ifeq ($(SUB_PROC),xscale)
195 OPTIONS+=-fsigned-char -mcpu=xscale
197 OPTIONS+=-fsigned-char
203 ASTCFLAGS+=-pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations $(DEBUG)
205 ASTCFLAGS+=-include $(ASTTOPDIR)/include/asterisk/autoconfig.h
207 ifeq ($(AST_DEVMODE),yes)
208 ASTCFLAGS+=-Werror -Wunused -Wundef $(AST_DECLARATION_AFTER_STATEMENT)
211 ifneq ($(findstring BSD,$(OSARCH)),)
212 ASTCFLAGS+=-I/usr/local/include
213 ASTLDFLAGS+=-L/usr/local/lib
216 ifneq ($(PROC),ultrasparc)
217 ASTCFLAGS+=$(shell if $(CC) -march=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-march=$(PROC)"; fi)
221 ASTCFLAGS+=-fsigned-char
224 ifeq ($(OSARCH),FreeBSD)
225 # -V is understood by BSD Make, not by GNU make.
226 BSDVERSION=$(shell make -V OSVERSION -f /usr/share/mk/bsd.port.subdir.mk)
227 ASTCFLAGS+=$(shell if test $(BSDVERSION) -lt 500016 ; then echo "-D_THREAD_SAFE"; fi)
228 AST_LIBS+=$(shell if test $(BSDVERSION) -lt 502102 ; then echo "-lc_r"; else echo "-pthread"; fi)
231 ifeq ($(OSARCH),NetBSD)
232 ASTCFLAGS+=-pthread -I/usr/pkg/include
235 ifeq ($(OSARCH),OpenBSD)
239 ifeq ($(OSARCH),SunOS)
240 ASTCFLAGS+=-Wcast-align -DSOLARIS -I../include/solaris-compat -I/opt/ssl/include -I/usr/local/ssl/include
243 ASTERISKVERSION:=$(shell build_tools/make_version .)
245 ifneq ($(wildcard .version),)
246 ASTERISKVERSIONNUM:=$(shell awk -F. '{printf "%01d%02d%02d", $$1, $$2, $$3}' .version)
247 RPMVERSION:=$(shell sed 's/[-\/:]/_/g' .version)
252 ifneq ($(wildcard .svn),)
253 ASTERISKVERSIONNUM=999999
256 ASTCFLAGS+=$(MALLOC_DEBUG)$(BUSYDETECT)$(OPTIONS)
258 MOD_SUBDIRS:=res channels pbx apps codecs formats cdr funcs main
259 OTHER_SUBDIRS:=utils agi
260 SUBDIRS:=$(OTHER_SUBDIRS) $(MOD_SUBDIRS)
261 SUBDIRS_INSTALL:=$(SUBDIRS:%=%-install)
262 SUBDIRS_CLEAN:=$(SUBDIRS:%=%-clean)
263 SUBDIRS_DIST_CLEAN:=$(SUBDIRS:%=%-dist-clean)
264 SUBDIRS_UNINSTALL:=$(SUBDIRS:%=%-uninstall)
265 MOD_SUBDIRS_EMBED_LDSCRIPT:=$(MOD_SUBDIRS:%=%-embed-ldscript)
266 MOD_SUBDIRS_EMBED_LDFLAGS:=$(MOD_SUBDIRS:%=%-embed-ldflags)
267 MOD_SUBDIRS_EMBED_LIBS:=$(MOD_SUBDIRS:%=%-embed-libs)
269 ifneq ($(findstring darwin,$(OSARCH)),)
270 ASTCFLAGS+=-D__Darwin__
271 AUDIO_LIBS=-framework CoreAudio
272 SOLINK=-dynamic -bundle -undefined suppress -force_flat_namespace
274 # These are used for all but Darwin
275 SOLINK=-shared -Xlinker -x
276 ifneq ($(findstring BSD,$(OSARCH)),)
277 LDFLAGS+=-L/usr/local/lib
281 ifeq ($(OSARCH),SunOS)
282 SOLINK=-shared -fpic -L/usr/local/ssl/lib
285 # This is used when generating the doxygen documentation
293 @echo " +--------- Asterisk Build Complete ---------+"
294 @echo " + Asterisk has successfully been built, and +"
295 @echo " + can be installed by running: +"
297 ifeq ($(MAKE), gmake)
298 @echo " + $(MAKE) install +"
300 @echo " + $(MAKE) install +"
302 @echo " +-------------------------------------------+"
304 _all: cleantest $(SUBDIRS)
308 @echo "**** The configure script must be executed before running '$(MAKE)'."
309 @echo "**** Please run \"./configure\"."
313 menuselect.makeopts: menuselect/menuselect menuselect-tree
314 menuselect/menuselect --check-deps $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) menuselect.makeopts
316 $(MOD_SUBDIRS_EMBED_LDSCRIPT):
317 @echo "EMBED_LDSCRIPTS+="`$(MAKE) --quiet --no-print-directory -C $(@:-embed-ldscript=) SUBDIR=$(@:-embed-ldscript=) __embed_ldscript` >> makeopts.embed_rules
319 $(MOD_SUBDIRS_EMBED_LDFLAGS):
320 @echo "EMBED_LDFLAGS+="`$(MAKE) --quiet --no-print-directory -C $(@:-embed-ldflags=) SUBDIR=$(@:-embed-ldflags=) __embed_ldflags` >> makeopts.embed_rules
322 $(MOD_SUBDIRS_EMBED_LIBS):
323 @echo "EMBED_LIBS+="`$(MAKE) --quiet --no-print-directory -C $(@:-embed-libs=) SUBDIR=$(@:-embed-libs=) __embed_libs` >> makeopts.embed_rules
325 makeopts.embed_rules: menuselect.makeopts
326 @echo "Generating embedded module rules ..."
328 @$(MAKE) --no-print-directory $(MOD_SUBDIRS_EMBED_LDSCRIPT)
329 @$(MAKE) --no-print-directory $(MOD_SUBDIRS_EMBED_LDFLAGS)
330 @$(MAKE) --no-print-directory $(MOD_SUBDIRS_EMBED_LIBS)
332 $(SUBDIRS): include/asterisk/version.h include/asterisk/build.h include/asterisk/buildopts.h defaults.h makeopts.embed_rules
334 # ensure that all module subdirectories are processed before 'main' during
335 # a parallel build, since if there are modules selected to be embedded the
336 # directories containing them must be completed before the main Asterisk
337 # binary can be built
338 main: $(filter-out main,$(MOD_SUBDIRS))
341 @ASTCFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" AST_LIBS="$(AST_LIBS)" $(MAKE) --no-print-directory --no-builtin-rules -C $@ SUBDIR=$@ all
344 @ASTCFLAGS="$(OTHER_SUBDIR_CFLAGS) $(ASTCFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" AUDIO_LIBS="$(AUDIO_LIBS)" $(MAKE) --no-print-directory --no-builtin-rules -C $@ SUBDIR=$@ all
347 @build_tools/make_defaults_h > $@.tmp
348 @if cmp -s $@.tmp $@ ; then : ; else \
353 include/asterisk/version.h:
354 @build_tools/make_version_h > $@.tmp
355 @if cmp -s $@.tmp $@ ; then : ; else \
360 include/asterisk/buildopts.h: menuselect.makeopts
361 @build_tools/make_buildopts_h > $@.tmp
362 @if cmp -s $@.tmp $@ ; then : ; else \
367 include/asterisk/build.h:
368 @build_tools/make_build_h > $@.tmp
369 @if cmp -s $@.tmp $@ ; then : ; else \
375 @$(MAKE) --no-print-directory -C $(@:-clean=) clean
377 $(SUBDIRS_DIST_CLEAN):
378 @$(MAKE) --no-print-directory -C $(@:-dist-clean=) dist-clean
380 clean: $(SUBDIRS_CLEAN)
382 rm -f include/asterisk/build.h
383 rm -f include/asterisk/version.h
384 @$(MAKE) -C menuselect clean
385 cp -f .cleancount .lastclean
387 dist-clean: distclean
389 distclean: $(SUBDIRS_DIST_CLEAN) clean
390 @$(MAKE) -C menuselect dist-clean
391 @$(MAKE) -C sounds dist-clean
392 rm -f menuselect.makeopts makeopts menuselect-tree menuselect.makedeps
393 rm -f makeopts.embed_rules
394 rm -f config.log config.status
395 rm -rf autom4te.cache
396 rm -f include/asterisk/autoconfig.h
397 rm -f include/asterisk/buildopts.h
399 rm -f build_tools/menuselect-deps
402 if [ x`$(ID) -un` = xroot ]; then CFLAGS="$(ASTCFLAGS)" sh build_tools/mkpkgconfig $(DESTDIR)/usr/lib/pkgconfig; fi
403 # Should static HTTP be installed during make samples or even with its own target ala
404 # webvoicemail? There are portions here that *could* be customized but might also be
405 # improved a lot. I'll put it here for now.
406 mkdir -p $(DESTDIR)$(ASTDATADIR)/static-http
407 for x in static-http/*; do \
408 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTDATADIR)/static-http ; \
410 mkdir -p $(DESTDIR)$(ASTDATADIR)/images
411 for x in images/*.jpg; do \
412 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTDATADIR)/images ; \
414 mkdir -p $(DESTDIR)$(AGI_DIR)
415 $(MAKE) -C sounds install
418 @if [ -d .svn ]; then \
419 echo "Updating from Subversion..." ; \
420 svn update | tee update.out; \
422 if [ `grep -c ^C update.out` -gt 0 ]; then \
423 echo ; echo "The following files have conflicts:" ; \
424 grep ^C update.out | cut -b4- ; \
428 echo "Not under version control"; \
431 NEWHEADERS=$(notdir $(wildcard include/asterisk/*.h))
432 OLDHEADERS=$(filter-out $(NEWHEADERS),$(notdir $(wildcard $(DESTDIR)$(ASTHEADERDIR)/*.h)))
435 mkdir -p $(DESTDIR)$(MODULES_DIR)
436 mkdir -p $(DESTDIR)$(ASTSBINDIR)
437 mkdir -p $(DESTDIR)$(ASTETCDIR)
438 mkdir -p $(DESTDIR)$(ASTBINDIR)
439 mkdir -p $(DESTDIR)$(ASTVARRUNDIR)
440 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/voicemail
441 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/dictate
442 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/system
443 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/tmp
444 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/meetme
445 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/monitor
446 $(INSTALL) -m 755 main/asterisk $(DESTDIR)$(ASTSBINDIR)/
447 $(LN) -sf asterisk $(DESTDIR)$(ASTSBINDIR)/rasterisk
448 $(INSTALL) -m 755 contrib/scripts/astgenkey $(DESTDIR)$(ASTSBINDIR)/
449 $(INSTALL) -m 755 contrib/scripts/autosupport $(DESTDIR)$(ASTSBINDIR)/
450 if [ ! -f $(DESTDIR)$(ASTSBINDIR)/safe_asterisk ]; then \
451 cat contrib/scripts/safe_asterisk | sed 's|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;s|__ASTERISK_VARRUN_DIR__|$(ASTVARRUNDIR)|;' > $(DESTDIR)$(ASTSBINDIR)/safe_asterisk ;\
452 chmod 755 $(DESTDIR)$(ASTSBINDIR)/safe_asterisk;\
454 $(INSTALL) -d $(DESTDIR)$(ASTHEADERDIR)
455 $(INSTALL) -m 644 include/asterisk.h $(DESTDIR)$(includedir)
456 $(INSTALL) -m 644 include/asterisk/*.h $(DESTDIR)$(ASTHEADERDIR)
457 if [ -n "$(OLDHEADERS)" ]; then \
458 rm -f $(addprefix $(DESTDIR)$(ASTHEADERDIR)/,$(OLDHEADERS)) ;\
460 mkdir -p $(DESTDIR)$(ASTLOGDIR)/cdr-csv
461 mkdir -p $(DESTDIR)$(ASTLOGDIR)/cdr-custom
462 mkdir -p $(DESTDIR)$(ASTDATADIR)/keys
463 mkdir -p $(DESTDIR)$(ASTDATADIR)/firmware
464 mkdir -p $(DESTDIR)$(ASTDATADIR)/firmware/iax
465 mkdir -p $(DESTDIR)$(ASTMANDIR)/man8
466 $(INSTALL) -m 644 keys/iaxtel.pub $(DESTDIR)$(ASTDATADIR)/keys
467 $(INSTALL) -m 644 keys/freeworlddialup.pub $(DESTDIR)$(ASTDATADIR)/keys
468 $(INSTALL) -m 644 doc/asterisk.8 $(DESTDIR)$(ASTMANDIR)/man8
469 $(INSTALL) -m 644 contrib/scripts/astgenkey.8 $(DESTDIR)$(ASTMANDIR)/man8
470 $(INSTALL) -m 644 contrib/scripts/autosupport.8 $(DESTDIR)$(ASTMANDIR)/man8
471 $(INSTALL) -m 644 contrib/scripts/safe_asterisk.8 $(DESTDIR)$(ASTMANDIR)/man8
472 if [ -f contrib/firmware/iax/iaxy.bin ] ; then \
473 $(INSTALL) -m 644 contrib/firmware/iax/iaxy.bin $(DESTDIR)$(ASTDATADIR)/firmware/iax/iaxy.bin; \
477 @DESTDIR="$(DESTDIR)" ASTSBINDIR="$(ASTSBINDIR)" $(MAKE) -C $(@:-install=) install
479 NEWMODS=$(notdir $(wildcard */*.so))
480 OLDMODS=$(filter-out $(NEWMODS),$(notdir $(wildcard $(DESTDIR)$(MODULES_DIR)/*.so)))
483 @if [ -n "$(OLDMODS)" ]; then \
484 echo " WARNING WARNING WARNING" ;\
486 echo " Your Asterisk modules directory, located at" ;\
487 echo " $(DESTDIR)$(MODULES_DIR)" ;\
488 echo " contains modules that were not installed by this " ;\
489 echo " version of Asterisk. Please ensure that these" ;\
490 echo " modules are compatible with this version before" ;\
491 echo " attempting to run Asterisk." ;\
493 for f in $(OLDMODS); do \
497 echo " WARNING WARNING WARNING" ;\
500 install: datafiles bininstall $(SUBDIRS_INSTALL)
501 @if [ -x /usr/sbin/asterisk-post-install ]; then \
502 /usr/sbin/asterisk-post-install $(DESTDIR) . ; \
504 @echo " +---- Asterisk Installation Complete -------+"
506 @echo " + YOU MUST READ THE SECURITY DOCUMENT +"
508 @echo " + Asterisk has successfully been installed. +"
509 @echo " + If you would like to install the sample +"
510 @echo " + configuration files (overwriting any +"
511 @echo " + existing config files), run: +"
513 ifeq ($(MAKE), gmake)
514 @echo " + $(MAKE) samples +"
516 @echo " + $(MAKE) samples +"
519 @echo " +----------------- or ---------------------+"
521 @echo " + You can go ahead and install the asterisk +"
522 @echo " + program documentation now or later run: +"
524 ifeq ($(MAKE), gmake)
525 @echo " + $(MAKE) progdocs +"
527 @echo " + $(MAKE) progdocs +"
530 @echo " + **Note** This requires that you have +"
531 @echo " + doxygen installed on your local system +"
532 @echo " +-------------------------------------------+"
533 @$(MAKE) -s oldmodcheck
538 mkdir -p $(DESTDIR)$(ASTETCDIR)
539 for x in configs/*.adsi; do \
540 if [ ! -f $(DESTDIR)$(ASTETCDIR)/$$x ]; then \
541 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x` ; \
546 mkdir -p $(DESTDIR)$(ASTETCDIR)
547 for x in configs/*.sample; do \
548 if [ -f $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` ]; then \
549 if [ "$(OVERWRITE)" = "y" ]; then \
550 if cmp -s $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` $$x ; then \
551 echo "Config file $$x is unchanged"; \
554 mv -f $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample`.old ; \
556 echo "Skipping config file $$x"; \
560 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` ;\
562 if [ "$(OVERWRITE)" = "y" ] || [ ! -f $(DESTDIR)$(ASTCONFPATH) ]; then \
564 echo "[directories]" ; \
565 echo "astetcdir => $(ASTETCDIR)" ; \
566 echo "astmoddir => $(MODULES_DIR)" ; \
567 echo "astvarlibdir => $(ASTVARLIBDIR)" ; \
568 echo "astdbdir => $(ASTDBDIR)" ; \
569 echo "astkeydir => $(ASTKEYDIR)" ; \
570 echo "astdatadir => $(ASTDATADIR)" ; \
571 echo "astagidir => $(AGI_DIR)" ; \
572 echo "astspooldir => $(ASTSPOOLDIR)" ; \
573 echo "astrundir => $(ASTVARRUNDIR)" ; \
574 echo "astlogdir => $(ASTLOGDIR)" ; \
576 echo ";[options]" ; \
577 echo ";internal_timing = yes" ; \
578 echo ";systemname = my_system_name ; prefix uniqueid with a system name for global uniqueness issues" ; \
579 echo ";autosystemname = yes ; automatically set systemname to hostname - uses 'localhost' on failure, or systemname if set" ; \
580 echo ";maxcalls = 10 ; Maximum amount of calls allowed" ; \
581 echo ";maxload = 0.9 ; Asterisk stops accepting new calls if the load average exceed this limit" ; \
582 echo ";maxfiles = 1000 ; Maximum amount of openfiles" ; \
583 echo ";minmemfree = 1 ; in MBs, Asterisk stops accepting new calls if the amount of free memory falls below this watermark" ; \
584 echo ";cache_record_files = yes ; Cache recorded sound files to another directory during recording" ; \
585 echo ";record_cache_dir = /tmp ; Specify cache directory (used in cnjunction with cache_record_files)" ; \
586 echo ";transmit_silence_during_record = yes ; Transmit SLINEAR silence while a channel is being recorded" ; \
587 echo ";transcode_via_sln = yes ; Build transcode paths via SLINEAR, instead of directly" ; \
588 echo ";runuser = asterisk ; The user to run as" ; \
589 echo ";rungroup = asterisk ; The group to run as" ; \
591 echo "; Changing the following lines may compromise your security." ; \
593 echo ";astctlpermissions = 0660" ; \
594 echo ";astctlowner = root" ; \
595 echo ";astctlgroup = apache" ; \
596 echo ";astctl = asterisk.ctl" ; \
597 ) > $(DESTDIR)$(ASTCONFPATH) ; \
599 echo "Skipping asterisk.conf creation"; \
601 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/INBOX
602 build_tools/make_sample_voicemail $(DESTDIR)/$(ASTDATADIR) $(DESTDIR)/$(ASTSPOOLDIR)
605 @[ -d $(DESTDIR)$(HTTP_DOCSDIR)/ ] || ( printf "http docs directory not found.\nUpdate assignment of variable HTTP_DOCSDIR in Makefile!\n" && exit 1 )
606 @[ -d $(DESTDIR)$(HTTP_CGIDIR) ] || ( printf "cgi-bin directory not found.\nUpdate assignment of variable HTTP_CGIDIR in Makefile!\n" && exit 1 )
607 $(INSTALL) -m 4755 -o root -g root contrib/scripts/vmail.cgi $(DESTDIR)$(HTTP_CGIDIR)/vmail.cgi
608 mkdir -p $(DESTDIR)$(HTTP_DOCSDIR)/_asterisk
609 for x in images/*.gif; do \
610 $(INSTALL) -m 644 $$x $(DESTDIR)$(HTTP_DOCSDIR)/_asterisk/; \
612 @echo " +--------- Asterisk Web Voicemail ----------+"
614 @echo " + Asterisk Web Voicemail is installed in +"
615 @echo " + your cgi-bin directory: +"
616 @echo " + $(DESTDIR)$(HTTP_CGIDIR)"
617 @echo " + IT USES A SETUID ROOT PERL SCRIPT, SO +"
618 @echo " + IF YOU DON'T LIKE THAT, UNINSTALL IT! +"
620 @echo " + Other static items have been stored in: +"
621 @echo " + $(DESTDIR)$(HTTP_DOCSDIR)"
623 @echo " + If these paths do not match your httpd +"
624 @echo " + installation, correct the definitions +"
625 @echo " + in your Makefile of HTTP_CGIDIR and +"
626 @echo " + HTTP_DOCSDIR +"
628 @echo " +-------------------------------------------+"
631 sed "s/^Version:.*/Version: $(RPMVERSION)/g" redhat/asterisk.spec > asterisk.spec ; \
635 __rpm: include/asterisk/version.h include/asterisk/buildopts.h spec
636 rm -rf /tmp/asterisk ; \
637 mkdir -p /tmp/asterisk/redhat/RPMS/i386 ; \
638 $(MAKE) DESTDIR=/tmp/asterisk install ; \
639 $(MAKE) DESTDIR=/tmp/asterisk samples ; \
640 mkdir -p /tmp/asterisk/etc/rc.d/init.d ; \
641 cp -f contrib/init.d/rc.redhat.asterisk /tmp/asterisk/etc/rc.d/init.d/asterisk ; \
642 rpmbuild --rcfile /usr/lib/rpm/rpmrc:redhat/rpmrc -bb asterisk.spec
645 (cat contrib/asterisk-ng-doxygen; echo "HAVE_DOT=$(HAVEDOT)"; \
646 echo "PROJECT_NUMBER=$(ASTERISKVERSION)") | doxygen -
649 @if [ "${OSARCH}" = "linux-gnu" ]; then \
650 if [ -f /etc/redhat-release -o -f /etc/fedora-release ]; then \
651 $(INSTALL) -m 755 contrib/init.d/rc.redhat.asterisk $(DESTDIR)/etc/rc.d/init.d/asterisk; \
652 if [ -z "$(DESTDIR)" ]; then /sbin/chkconfig --add asterisk; fi; \
653 elif [ -f /etc/debian_version ]; then \
654 $(INSTALL) -m 755 contrib/init.d/rc.debian.asterisk $(DESTDIR)/etc/init.d/asterisk; \
655 if [ -z "$(DESTDIR)" ]; then /usr/sbin/update-rc.d asterisk start 10 2 3 4 5 . stop 91 2 3 4 5 .; fi; \
656 elif [ -f /etc/gentoo-release ]; then \
657 $(INSTALL) -m 755 contrib/init.d/rc.gentoo.asterisk $(DESTDIR)/etc/init.d/asterisk; \
658 if [ -z "$(DESTDIR)" ]; then /sbin/rc-update add asterisk default; fi; \
659 elif [ -f /etc/mandrake-release ]; then \
660 $(INSTALL) -m 755 contrib/init.d/rc.mandrake.asterisk $(DESTDIR)/etc/rc.d/init.d/asterisk; \
661 if [ -z "$(DESTDIR)" ]; then /sbin/chkconfig --add asterisk; fi; \
662 elif [ -f /etc/SuSE-release -o -f /etc/novell-release ]; then \
663 $(INSTALL) -m 755 contrib/init.d/rc.suse.asterisk $(DESTDIR)/etc/init.d/asterisk; \
664 if [ -z "$(DESTDIR)" ]; then /sbin/chkconfig --add asterisk; fi; \
665 elif [ -f /etc/slackware-version ]; then \
666 echo "Slackware is not currently supported, although an init script does exist for it." \
668 echo "We could not install init scripts for your distribution."; \
671 echo "We could not install init scripts for your operating system."; \
675 $(MAKE) -C sounds all
677 # If the cleancount has been changed, force a make clean.
678 # .cleancount is the global clean count, and .lastclean is the
679 # last clean count we had
682 @cmp -s .cleancount .lastclean || $(MAKE) clean
684 $(SUBDIRS_UNINSTALL):
685 @$(MAKE) --no-print-directory -C $(@:-uninstall=) uninstall
687 _uninstall: $(SUBDIRS_UNINSTALL)
688 rm -f $(DESTDIR)$(MODULES_DIR)/*
689 rm -f $(DESTDIR)$(ASTSBINDIR)/*asterisk*
690 rm -f $(DESTDIR)$(ASTSBINDIR)/astgenkey
691 rm -f $(DESTDIR)$(ASTSBINDIR)/autosupport
692 rm -rf $(DESTDIR)$(ASTHEADERDIR)
693 rm -rf $(DESTDIR)$(ASTDATADIR)/firmware
694 rm -f $(DESTDIR)$(ASTMANDIR)/man8/asterisk.8
695 rm -f $(DESTDIR)$(ASTMANDIR)/man8/astgenkey.8
696 rm -f $(DESTDIR)$(ASTMANDIR)/man8/autosupport.8
697 rm -f $(DESTDIR)$(ASTMANDIR)/man8/safe_asterisk.8
698 $(MAKE) -C sounds uninstall
700 uninstall: _uninstall
701 @echo " +--------- Asterisk Uninstall Complete -----+"
702 @echo " + Asterisk binaries, sounds, man pages, +"
703 @echo " + headers, modules, and firmware builds, +"
704 @echo " + have all been uninstalled. +"
706 @echo " + To remove ALL traces of Asterisk, +"
707 @echo " + including configuration, spool +"
708 @echo " + directories, and logs, run the following +"
709 @echo " + command: +"
711 ifeq ($(MAKE), gmake)
712 @echo " + $(MAKE) uninstall-all +"
714 @echo " + $(MAKE) uninstall-all +"
716 @echo " +-------------------------------------------+"
718 uninstall-all: _uninstall
719 rm -rf $(DESTDIR)$(ASTLIBDIR)
720 rm -rf $(DESTDIR)$(ASTVARLIBDIR)
721 rm -rf $(DESTDIR)$(ASTDATADIR)
722 rm -rf $(DESTDIR)$(ASTSPOOLDIR)
723 rm -rf $(DESTDIR)$(ASTETCDIR)
724 rm -rf $(DESTDIR)$(ASTLOGDIR)
726 menuconfig: menuselect
728 gmenuconfig: gmenuselect
730 menuselect: menuselect/menuselect menuselect-tree
731 -@menuselect/menuselect $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) menuselect.makeopts && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
733 gmenuselect: menuselect/gmenuselect menuselect-tree
734 -@menuselect/gmenuselect $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) menuselect.makeopts && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
736 menuselect/menuselect: makeopts menuselect/menuselect.c menuselect/menuselect_curses.c menuselect/menuselect_stub.c menuselect/menuselect.h menuselect/linkedlists.h makeopts
737 @CC="$(HOST_CC)" LD="" AR="" RANLIB="" CFLAGS="" $(MAKE) -C menuselect CONFIGURE_SILENT="--silent"
739 menuselect/gmenuselect: makeopts menuselect/menuselect.c menuselect/menuselect_gtk.c menuselect/menuselect_stub.c menuselect/menuselect.h menuselect/linkedlists.h makeopts
740 @CC="$(HOST_CC)" CXX="$(CXX)" LD="" AR="" RANLIB="" CFLAGS="" $(MAKE) -C menuselect _gmenuselect CONFIGURE_SILENT="--silent"
742 menuselect-tree: $(foreach dir,$(filter-out main,$(MOD_SUBDIRS)),$(wildcard $(dir)/*.c) $(wildcard $(dir)/*.cc)) build_tools/cflags.xml sounds/sounds.xml build_tools/embed_modules.xml configure
743 @echo "Generating input for menuselect ..."
744 @build_tools/prep_moduledeps > $@
747 $(MAKE) -C doc/tex asterisk.pdf
749 .PHONY: menuselect main sounds clean dist-clean distclean all prereqs cleantest uninstall _uninstall uninstall-all dont-optimize $(SUBDIRS_INSTALL) $(SUBDIRS_DIST_CLEAN) $(SUBDIRS_CLEAN) $(SUBDIRS_UNINSTALL) $(SUBDIRS) $(MOD_SUBDIRS_EMBED_LDSCRIPT) $(MOD_SUBDIRS_EMBED_LDFLAGS) $(MOD_SUBDIRS_EMBED_LIBS) menuselect.makeopts