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
43 export MENUSELECT_CFLAGS
55 # even though we could use '-include makeopts' here, use a wildcard
56 # lookup anyway, so that make won't try to build makeopts if it doesn't
57 # exist (other rules will force it to be built if needed)
58 ifneq ($(wildcard makeopts),)
62 #Uncomment this to see all build commands instead of 'quiet' output
65 # Create OPTIONS variable
68 ASTTOPDIR:=$(shell pwd)
70 # Overwite config files on "make samples"
73 # Include debug and macro symbols in the executables (-g) and profiling info (-pg)
77 # Files are copied here temporarily during the install process
78 # For example, make DESTDIR=/tmp/asterisk woud put things in
79 # /tmp/asterisk/etc/asterisk
80 # !!! Watch out, put no spaces or comments after the value !!!
81 #DESTDIR?=/tmp/asterisk
83 # Define standard directories for various platforms
84 # These apply if they are not redefined in asterisk.conf
85 ifeq ($(OSARCH),SunOS)
86 ASTETCDIR=/var/etc/asterisk
87 ASTLIBDIR=/opt/asterisk/lib
88 ASTVARLIBDIR=/var/opt/asterisk
89 ASTSPOOLDIR=/var/spool/asterisk
90 ASTLOGDIR=/var/log/asterisk
91 ASTHEADERDIR=/opt/asterisk/include
92 ASTBINDIR=/opt/asterisk/bin
93 ASTSBINDIR=/opt/asterisk/sbin
94 ASTVARRUNDIR=/var/run/asterisk
95 ASTMANDIR=/opt/asterisk/man
97 ASTETCDIR=$(sysconfdir)/asterisk
98 ASTLIBDIR=$(libdir)/asterisk
99 ASTHEADERDIR=$(includedir)/asterisk
101 ASTSBINDIR=$(sbindir)
102 ASTSPOOLDIR=$(localstatedir)/spool/asterisk
103 ASTLOGDIR=$(localstatedir)/log/asterisk
104 ASTVARRUNDIR=$(localstatedir)/run
106 ifeq ($(OSARCH),FreeBSD)
107 ASTVARLIBDIR=$(prefix)/share/asterisk
109 ASTVARLIBDIR=$(localstatedir)/lib/asterisk
112 ifeq ($(ASTDATADIR),)
113 ASTDATADIR:=$(ASTVARLIBDIR)
116 # Asterisk.conf is located in ASTETCDIR or by using the -C flag
117 # when starting Asterisk
118 ASTCONFPATH=$(ASTETCDIR)/asterisk.conf
119 MODULES_DIR=$(ASTLIBDIR)/modules
120 AGI_DIR=$(ASTDATADIR)/agi-bin
122 # If you use Apache, you may determine by a grep 'DocumentRoot' of your httpd.conf file
123 HTTP_DOCSDIR=/var/www/html
124 # Determine by a grep 'ScriptAlias' of your Apache httpd.conf file
125 HTTP_CGIDIR=/var/www/cgi-bin
127 # Uncomment this to use the older DSP routines
128 #ASTCFLAGS+=-DOLD_DSP_ROUTINES
130 # If the file .asterisk.makeopts is present in your home directory, you can
131 # include all of your favorite menuselect options so that every time you download
132 # a new version of Asterisk, you don't have to run menuselect to set them.
133 # The file /etc/asterisk.makeopts will also be included but can be overridden
134 # by the file in your home directory.
136 GLOBAL_MAKEOPTS=$(wildcard /etc/asterisk.makeopts)
137 USER_MAKEOPTS=$(wildcard ~/.asterisk.makeopts)
139 MOD_SUBDIR_CFLAGS=-I$(ASTTOPDIR)/include
140 OTHER_SUBDIR_CFLAGS=-I$(ASTTOPDIR)/include
142 ifeq ($(OSARCH),linux-gnu)
143 ifeq ($(PROC),x86_64)
144 # You must have GCC 3.4 to use k8, otherwise use athlon
149 ifeq ($(PROC),sparc64)
150 #The problem with sparc is the best stuff is in newer versions of gcc (post 3.0) only.
151 #This works for even old (2.96) versions of gcc and provides a small boost either way.
152 #A ultrasparc cpu is really v9 but the stock debian stable 3.0 gcc doesn't support it.
153 #So we go lowest common available by gcc and go a step down, still a step up from
154 #the default as we now have a better instruction set to work with. - Belgarath
156 OPTIONS+=$(shell if $(CC) -mtune=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mtune=$(PROC)"; fi)
157 OPTIONS+=$(shell if $(CC) -mcpu=v8 -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mcpu=v8"; fi)
158 OPTIONS+=-fomit-frame-pointer
162 # The Cirrus logic is the only heavily shipping arm processor with a real floating point unit
163 ifeq ($(SUB_PROC),maverick)
164 OPTIONS+=-fsigned-char -mcpu=ep9312
166 ifeq ($(SUB_PROC),xscale)
167 OPTIONS+=-fsigned-char -mcpu=xscale
169 OPTIONS+=-fsigned-char
175 ASTCFLAGS+=-pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations $(DEBUG)
177 ifeq ($(AST_DEVMODE),yes)
178 ASTCFLAGS+=-Werror -Wunused
181 ifneq ($(findstring BSD,$(OSARCH)),)
182 ASTCFLAGS+=-I/usr/local/include
183 ASTLDFLAGS+=-L/usr/local/lib
186 ifneq ($(PROC),ultrasparc)
187 ASTCFLAGS+=$(shell if $(CC) -march=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-march=$(PROC)"; fi)
191 ASTCFLAGS+=-fsigned-char
194 ifeq ($(OSARCH),FreeBSD)
195 # -V is understood by BSD Make, not by GNU make.
196 BSDVERSION=$(shell make -V OSVERSION -f /usr/share/mk/bsd.port.subdir.mk)
197 ASTCFLAGS+=$(shell if test $(BSDVERSION) -lt 500016 ; then echo "-D_THREAD_SAFE"; fi)
198 AST_LIBS+=$(shell if test $(BSDVERSION) -lt 502102 ; then echo "-lc_r"; else echo "-pthread"; fi)
201 ifeq ($(OSARCH),NetBSD)
202 ASTCFLAGS+=-pthread -I/usr/pkg/include
205 ifeq ($(OSARCH),OpenBSD)
209 ifeq ($(OSARCH),SunOS)
210 ASTCFLAGS+=-Wcast-align -DSOLARIS -I../include/solaris-compat -I/opt/ssl/include -I/usr/local/ssl/include
213 ASTERISKVERSION:=$(shell build_tools/make_version .)
215 ifneq ($(wildcard .version),)
216 ASTERISKVERSIONNUM:=$(shell awk -F. '{printf "%02d%02d%02d", $$1, $$2, $$3}' .version)
217 RPMVERSION:=$(shell sed 's/[-\/:]/_/g' .version)
222 ifneq ($(wildcard .svn),)
223 ASTERISKVERSIONNUM=999999
226 ASTCFLAGS+=$(MALLOC_DEBUG)$(BUSYDETECT)$(OPTIONS)
228 MOD_SUBDIRS:=res channels pbx apps codecs formats cdr funcs main
229 OTHER_SUBDIRS:=utils agi
230 SUBDIRS:=$(OTHER_SUBDIRS) $(MOD_SUBDIRS)
231 SUBDIRS_INSTALL:=$(SUBDIRS:%=%-install)
232 SUBDIRS_CLEAN:=$(SUBDIRS:%=%-clean)
233 SUBDIRS_CLEAN_DEPEND:=$(SUBDIRS:%=%-clean-depend)
234 MOD_SUBDIRS_DEPEND:=$(MOD_SUBDIRS:%=%-depend)
235 OTHER_SUBDIRS_DEPEND:=$(OTHER_SUBDIRS:%=%-depend)
236 SUBDIRS_DEPEND:=$(OTHER_SUBDIRS_DEPEND) $(MOD_SUBDIRS_DEPEND)
237 SUBDIRS_UNINSTALL:=$(SUBDIRS:%=%-uninstall)
238 MOD_SUBDIRS_EMBED_LDSCRIPT:=$(MOD_SUBDIRS:%=%-embed-ldscript)
239 MOD_SUBDIRS_EMBED_LDFLAGS:=$(MOD_SUBDIRS:%=%-embed-ldflags)
240 MOD_SUBDIRS_EMBED_LIBS:=$(MOD_SUBDIRS:%=%-embed-libs)
242 ifneq ($(findstring darwin,$(OSARCH)),)
243 ASTCFLAGS+=-D__Darwin__
244 AUDIO_LIBS=-framework CoreAudio
245 SOLINK=-dynamic -bundle -undefined suppress -force_flat_namespace
247 # These are used for all but Darwin
248 SOLINK=-shared -Xlinker -x
249 ifneq ($(findstring BSD,$(OSARCH)),)
250 LDFLAGS+=-L/usr/local/lib
254 ifeq ($(OSARCH),SunOS)
255 SOLINK=-shared -fpic -L/usr/local/ssl/lib
258 # This is used when generating the doxygen documentation
266 @echo " +--------- Asterisk Build Complete ---------+"
267 @echo " + Asterisk has successfully been built, and +"
268 @echo " + can be installed by running: +"
270 @echo " + make install +"
271 @echo " +-------------------------------------------+"
273 _all: cleantest $(SUBDIRS)
277 @echo "**** The configure script must be executed before running 'make'."
281 menuselect.makeopts: menuselect/menuselect menuselect-tree
282 menuselect/menuselect --check-deps $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) menuselect.makeopts
284 $(MOD_SUBDIRS_EMBED_LDSCRIPT):
285 @echo "EMBED_LDSCRIPTS+="`$(MAKE) --quiet --no-print-directory -C $(@:-embed-ldscript=) SUBDIR=$(@:-embed-ldscript=) __embed_ldscript` >> makeopts.embed_rules
287 $(MOD_SUBDIRS_EMBED_LDFLAGS):
288 @echo "EMBED_LDFLAGS+="`$(MAKE) --quiet --no-print-directory -C $(@:-embed-ldflags=) SUBDIR=$(@:-embed-ldflags=) __embed_ldflags` >> makeopts.embed_rules
290 $(MOD_SUBDIRS_EMBED_LIBS):
291 @echo "EMBED_LIBS+="`$(MAKE) --quiet --no-print-directory -C $(@:-embed-libs=) SUBDIR=$(@:-embed-libs=) __embed_libs` >> makeopts.embed_rules
293 makeopts.embed_rules: menuselect.makeopts
294 @echo "Generating embedded module rules ..."
296 @$(MAKE) --no-print-directory $(MOD_SUBDIRS_EMBED_LDSCRIPT)
297 @$(MAKE) --no-print-directory $(MOD_SUBDIRS_EMBED_LDFLAGS)
298 @$(MAKE) --no-print-directory $(MOD_SUBDIRS_EMBED_LIBS)
300 $(SUBDIRS): depend makeopts.embed_rules
302 # ensure that all module subdirectories are processed before 'main' during
303 # a parallel build, since if there are modules selected to be embedded the
304 # directories containing them must be completed before the main Asterisk
305 # binary can be built
306 main: $(filter-out main,$(MOD_SUBDIRS))
309 @ASTCFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" AST_LIBS="$(AST_LIBS)" $(MAKE) --no-print-directory -C $@ SUBDIR=$@ all
312 @ASTCFLAGS="$(OTHER_SUBDIR_CFLAGS) $(ASTCFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" AUDIO_LIBS="$(AUDIO_LIBS)" $(MAKE) --no-print-directory -C $@ SUBDIR=$@ all
315 @build_tools/make_defaults_h > $@.tmp
316 @if cmp -s $@.tmp $@ ; then : ; else \
321 include/asterisk/version.h:
322 @build_tools/make_version_h > $@.tmp
323 @if cmp -s $@.tmp $@ ; then : ; else \
328 include/asterisk/buildopts.h: menuselect.makeopts
329 @build_tools/make_buildopts_h > $@.tmp
330 @if cmp -s $@.tmp $@ ; then : ; else \
335 include/asterisk/build.h:
336 @build_tools/make_build_h > $@.tmp
337 @if cmp -s $@.tmp $@ ; then : ; else \
342 $(SUBDIRS_CLEAN_DEPEND):
343 @$(MAKE) --no-print-directory -C $(@:-clean-depend=) clean-depend
346 @$(MAKE) --no-print-directory -C $(@:-clean=) clean
348 clean-depend: $(SUBDIRS_CLEAN_DEPEND)
350 clean: $(SUBDIRS_CLEAN) clean-depend
352 rm -f include/asterisk/build.h
353 rm -f include/asterisk/version.h
355 @$(MAKE) -C menuselect clean
356 cp -f .cleancount .lastclean
358 dist-clean: distclean
361 @$(MAKE) -C menuselect dist-clean
362 @$(MAKE) -C sounds dist-clean
363 rm -f menuselect.makeopts makeopts menuselect-tree menuselect.makedeps
364 rm -f makeopts.embed_rules
365 rm -f config.log config.status
366 rm -rf autom4te.cache
367 rm -f include/asterisk/autoconfig.h
368 rm -f include/asterisk/buildopts.h
370 rm -f build_tools/menuselect-deps
373 if [ x`$(ID) -un` = xroot ]; then CFLAGS="$(ASTCFLAGS)" sh build_tools/mkpkgconfig $(DESTDIR)/usr/lib/pkgconfig; fi
374 # Should static HTTP be installed during make samples or even with its own target ala
375 # webvoicemail? There are portions here that *could* be customized but might also be
376 # improved a lot. I'll put it here for now.
377 mkdir -p $(DESTDIR)$(ASTDATADIR)/static-http
378 for x in static-http/*; do \
379 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTDATADIR)/static-http ; \
381 mkdir -p $(DESTDIR)$(ASTDATADIR)/images
382 for x in images/*.jpg; do \
383 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTDATADIR)/images ; \
385 mkdir -p $(DESTDIR)$(AGI_DIR)
386 $(MAKE) -C sounds install
389 @if [ -d .svn ]; then \
390 echo "Updating from Subversion..." ; \
391 svn update | tee update.out; \
393 if [ `grep -c ^C update.out` -gt 0 ]; then \
394 echo ; echo "The following files have conflicts:" ; \
395 grep ^C update.out | cut -b4- ; \
398 $(MAKE) clean-depend; \
400 echo "Not under version control"; \
403 NEWHEADERS=$(notdir $(wildcard include/asterisk/*.h))
404 OLDHEADERS=$(filter-out $(NEWHEADERS),$(notdir $(wildcard $(DESTDIR)$(ASTHEADERDIR)/*.h)))
407 mkdir -p $(DESTDIR)$(MODULES_DIR)
408 mkdir -p $(DESTDIR)$(ASTSBINDIR)
409 mkdir -p $(DESTDIR)$(ASTETCDIR)
410 mkdir -p $(DESTDIR)$(ASTBINDIR)
411 mkdir -p $(DESTDIR)$(ASTVARRUNDIR)
412 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/voicemail
413 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/dictate
414 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/system
415 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/tmp
416 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/meetme
417 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/monitor
418 $(INSTALL) -m 755 main/asterisk $(DESTDIR)$(ASTSBINDIR)/
419 $(LN) -sf asterisk $(DESTDIR)$(ASTSBINDIR)/rasterisk
420 $(INSTALL) -m 755 contrib/scripts/astgenkey $(DESTDIR)$(ASTSBINDIR)/
421 $(INSTALL) -m 755 contrib/scripts/autosupport $(DESTDIR)$(ASTSBINDIR)/
422 if [ ! -f $(DESTDIR)$(ASTSBINDIR)/safe_asterisk ]; then \
423 cat contrib/scripts/safe_asterisk | sed 's|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;' > $(DESTDIR)$(ASTSBINDIR)/safe_asterisk ;\
424 chmod 755 $(DESTDIR)$(ASTSBINDIR)/safe_asterisk;\
426 $(INSTALL) -d $(DESTDIR)$(ASTHEADERDIR)
427 $(INSTALL) -m 644 include/asterisk.h $(DESTDIR)$(includedir)
428 $(INSTALL) -m 644 include/asterisk/*.h $(DESTDIR)$(ASTHEADERDIR)
429 if [ -n "$(OLDHEADERS)" ]; then \
430 rm -f $(addprefix $(DESTDIR)$(ASTHEADERDIR)/,$(OLDHEADERS)) ;\
432 mkdir -p $(DESTDIR)$(ASTLOGDIR)/cdr-csv
433 mkdir -p $(DESTDIR)$(ASTLOGDIR)/cdr-custom
434 mkdir -p $(DESTDIR)$(ASTDATADIR)/keys
435 mkdir -p $(DESTDIR)$(ASTDATADIR)/firmware
436 mkdir -p $(DESTDIR)$(ASTDATADIR)/firmware/iax
437 mkdir -p $(DESTDIR)$(ASTMANDIR)/man8
438 $(INSTALL) -m 644 keys/iaxtel.pub $(DESTDIR)$(ASTDATADIR)/keys
439 $(INSTALL) -m 644 keys/freeworlddialup.pub $(DESTDIR)$(ASTDATADIR)/keys
440 $(INSTALL) -m 644 doc/asterisk.8 $(DESTDIR)$(ASTMANDIR)/man8
441 $(INSTALL) -m 644 contrib/scripts/astgenkey.8 $(DESTDIR)$(ASTMANDIR)/man8
442 $(INSTALL) -m 644 contrib/scripts/autosupport.8 $(DESTDIR)$(ASTMANDIR)/man8
443 $(INSTALL) -m 644 contrib/scripts/safe_asterisk.8 $(DESTDIR)$(ASTMANDIR)/man8
444 $(INSTALL) -m 644 contrib/firmware/iax/iaxy.bin $(DESTDIR)$(ASTDATADIR)/firmware/iax/iaxy.bin; \
447 @DESTDIR="$(DESTDIR)" ASTSBINDIR="$(ASTSBINDIR)" $(MAKE) -C $(@:-install=) install
449 NEWMODS=$(notdir $(wildcard */*.so))
450 OLDMODS=$(filter-out $(NEWMODS),$(notdir $(wildcard $(DESTDIR)$(MODULES_DIR)/*.so)))
453 @if [ -n "$(OLDMODS)" ]; then \
454 echo " WARNING WARNING WARNING" ;\
456 echo " Your Asterisk modules directory, located at" ;\
457 echo " $(DESTDIR)$(MODULES_DIR)" ;\
458 echo " contains modules that were not installed by this " ;\
459 echo " version of Asterisk. Please ensure that these" ;\
460 echo " modules are compatible with this version before" ;\
461 echo " attempting to run Asterisk." ;\
463 for f in $(OLDMODS); do \
467 echo " WARNING WARNING WARNING" ;\
470 install: datafiles bininstall $(SUBDIRS_INSTALL)
471 @if [ -x /usr/sbin/asterisk-post-install ]; then \
472 /usr/sbin/asterisk-post-install $(DESTDIR) . ; \
474 @echo " +---- Asterisk Installation Complete -------+"
476 @echo " + YOU MUST READ THE SECURITY DOCUMENT +"
478 @echo " + Asterisk has successfully been installed. +"
479 @echo " + If you would like to install the sample +"
480 @echo " + configuration files (overwriting any +"
481 @echo " + existing config files), run: +"
483 @echo " + $(MAKE) samples +"
485 @echo " +----------------- or ---------------------+"
487 @echo " + You can go ahead and install the asterisk +"
488 @echo " + program documentation now or later run: +"
490 @echo " + $(MAKE) progdocs +"
492 @echo " + **Note** This requires that you have +"
493 @echo " + doxygen installed on your local system +"
494 @echo " +-------------------------------------------+"
495 @$(MAKE) -s oldmodcheck
500 mkdir -p $(DESTDIR)$(ASTETCDIR)
501 for x in configs/*.adsi; do \
502 if [ ! -f $(DESTDIR)$(ASTETCDIR)/$$x ]; then \
503 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x` ; \
508 mkdir -p $(DESTDIR)$(ASTETCDIR)
509 for x in configs/*.sample; do \
510 if [ -f $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` ]; then \
511 if [ "$(OVERWRITE)" = "y" ]; then \
512 if cmp -s $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` $$x ; then \
513 echo "Config file $$x is unchanged"; \
516 mv -f $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample`.old ; \
518 echo "Skipping config file $$x"; \
522 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` ;\
524 if [ "$(OVERWRITE)" = "y" ] || [ ! -f $(DESTDIR)$(ASTCONFPATH) ]; then \
526 echo "[directories]" ; \
527 echo "astetcdir => $(ASTETCDIR)" ; \
528 echo "astmoddir => $(MODULES_DIR)" ; \
529 echo "astvarlibdir => $(ASTVARLIBDIR)" ; \
530 echo "astdatadir => $(ASTDATADIR)" ; \
531 echo "astagidir => $(AGI_DIR)" ; \
532 echo "astspooldir => $(ASTSPOOLDIR)" ; \
533 echo "astrundir => $(ASTVARRUNDIR)" ; \
534 echo "astlogdir => $(ASTLOGDIR)" ; \
536 echo "; Changing the following lines may compromise your security." ; \
538 echo ";astctlpermissions = 0660" ; \
539 echo ";astctlowner = root" ; \
540 echo ";astctlgroup = apache" ; \
541 echo ";astctl = asterisk.ctl" ; \
542 echo ";[options]" ; \
543 echo ";internal_timing = yes" ; \
544 ) > $(DESTDIR)$(ASTCONFPATH) ; \
546 echo "Skipping asterisk.conf creation"; \
548 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/INBOX
549 :> $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/unavail.gsm
550 for x in vm-theperson digits/1 digits/2 digits/3 digits/4 vm-isunavail; do \
551 cat $(DESTDIR)$(ASTDATADIR)/sounds/$$x.gsm >> $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/unavail.gsm ; \
553 :> $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/busy.gsm
554 for x in vm-theperson digits/1 digits/2 digits/3 digits/4 vm-isonphone; do \
555 cat $(DESTDIR)$(ASTDATADIR)/sounds/$$x.gsm >> $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/busy.gsm ; \
559 @[ -d $(DESTDIR)$(HTTP_DOCSDIR)/ ] || ( printf "http docs directory not found.\nUpdate assignment of variable HTTP_DOCSDIR in Makefile!\n" && exit 1 )
560 @[ -d $(DESTDIR)$(HTTP_CGIDIR) ] || ( printf "cgi-bin directory not found.\nUpdate assignment of variable HTTP_CGIDIR in Makefile!\n" && exit 1 )
561 $(INSTALL) -m 4755 -o root -g root contrib/scripts/vmail.cgi $(DESTDIR)$(HTTP_CGIDIR)/vmail.cgi
562 mkdir -p $(DESTDIR)$(HTTP_DOCSDIR)/_asterisk
563 for x in images/*.gif; do \
564 $(INSTALL) -m 644 $$x $(DESTDIR)$(HTTP_DOCSDIR)/_asterisk/; \
566 @echo " +--------- Asterisk Web Voicemail ----------+"
568 @echo " + Asterisk Web Voicemail is installed in +"
569 @echo " + your cgi-bin directory: +"
570 @echo " + $(DESTDIR)$(HTTP_CGIDIR)"
571 @echo " + IT USES A SETUID ROOT PERL SCRIPT, SO +"
572 @echo " + IF YOU DON'T LIKE THAT, UNINSTALL IT! +"
574 @echo " + Other static items have been stored in: +"
575 @echo " + $(DESTDIR)$(HTTP_DOCSDIR)"
577 @echo " + If these paths do not match your httpd +"
578 @echo " + installation, correct the definitions +"
579 @echo " + in your Makefile of HTTP_CGIDIR and +"
580 @echo " + HTTP_DOCSDIR +"
582 @echo " +-------------------------------------------+"
585 sed "s/^Version:.*/Version: $(RPMVERSION)/g" redhat/asterisk.spec > asterisk.spec ; \
589 __rpm: include/asterisk/version.h include/asterisk/buildopts.h spec
590 rm -rf /tmp/asterisk ; \
591 mkdir -p /tmp/asterisk/redhat/RPMS/i386 ; \
592 $(MAKE) DESTDIR=/tmp/asterisk install ; \
593 $(MAKE) DESTDIR=/tmp/asterisk samples ; \
594 mkdir -p /tmp/asterisk/etc/rc.d/init.d ; \
595 cp -f contrib/init.d/rc.redhat.asterisk /tmp/asterisk/etc/rc.d/init.d/asterisk ; \
596 rpmbuild --rcfile /usr/lib/rpm/rpmrc:redhat/rpmrc -bb asterisk.spec
599 (cat contrib/asterisk-ng-doxygen; echo "HAVE_DOT=$(HAVEDOT)"; \
600 echo "PROJECT_NUMBER=$(ASTERISKVERSION)") | doxygen -
603 @if [ "${OSARCH}" = "linux-gnu" ]; then \
604 if [ -f /etc/redhat-release -o -f /etc/fedora-release ]; then \
605 $(INSTALL) -m 755 contrib/init.d/rc.redhat.asterisk /etc/rc.d/init.d/asterisk; \
606 /sbin/chkconfig --add asterisk; \
607 elif [ -f /etc/debian_version ]; then \
608 $(INSTALL) -m 755 contrib/init.d/rc.debian.asterisk /etc/init.d/asterisk; \
609 /usr/sbin/update-rc.d asterisk start 10 2 3 4 5 . stop 91 2 3 4 5 .; \
610 elif [ -f /etc/gentoo-release ]; then \
611 $(INSTALL) -m 755 contrib/init.d/rc.gentoo.asterisk /etc/init.d/asterisk; \
612 /sbin/rc-update add asterisk default; \
613 elif [ -f /etc/mandrake-release ]; then \
614 $(INSTALL) -m 755 contrib/init.d/rc.mandrake.asterisk /etc/rc.d/init.d/asterisk; \
615 /sbin/chkconfig --add asterisk; \
616 elif [ -f /etc/SuSE-release -o -f /etc/novell-release ]; then \
617 $(INSTALL) -m 755 contrib/init.d/rc.suse.asterisk /etc/init.d/asterisk; \
618 /sbin/chkconfig --add asterisk; \
619 elif [ -f /etc/slackware-version ]; then \
620 echo "Slackware is not currently supported, although an init script does exist for it." \
622 echo "We could not install init scripts for your distribution."; \
625 echo "We could not install init scripts for your operating system."; \
628 $(MOD_SUBDIRS_DEPEND):
629 @ASTCFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" $(MAKE) --no-print-directory -C $(@:-depend=) depend
631 $(OTHER_SUBDIRS_DEPEND):
632 @ASTCFLAGS="$(OTHER_SUBDIR_CFLAGS) $(ASTCFLAGS)" $(MAKE) --no-print-directory -C $(@:-depend=) depend
634 depend: include/asterisk/version.h include/asterisk/buildopts.h include/asterisk/build.h defaults.h $(SUBDIRS_DEPEND)
637 $(MAKE) -C sounds all
639 # If the cleancount has been changed, force a make clean.
640 # .cleancount is the global clean count, and .lastclean is the
641 # last clean count we had
644 @if ! cmp -s .cleancount .lastclean ; then \
648 $(SUBDIRS_UNINSTALL):
649 @$(MAKE) --no-print-directory -C $(@:-uninstall=) uninstall
651 _uninstall: $(SUBDIRS_UNINSTALL)
652 rm -f $(DESTDIR)$(MODULES_DIR)/*
653 rm -f $(DESTDIR)$(ASTSBINDIR)/*asterisk*
654 rm -f $(DESTDIR)$(ASTSBINDIR)/astgenkey
655 rm -f $(DESTDIR)$(ASTSBINDIR)/autosupport
656 rm -rf $(DESTDIR)$(ASTHEADERDIR)
657 rm -rf $(DESTDIR)$(ASTDATADIR)/firmware
658 rm -rf $(DESTDIR)$(ASTMANDIR)/man8
659 $(MAKE) -C sounds uninstall
661 uninstall: _uninstall
662 @echo " +--------- Asterisk Uninstall Complete -----+"
663 @echo " + Asterisk binaries, sounds, man pages, +"
664 @echo " + headers, modules, and firmware builds, +"
665 @echo " + have all been uninstalled. +"
667 @echo " + To remove ALL traces of Asterisk, +"
668 @echo " + including configuration, spool +"
669 @echo " + directories, and logs, run the following +"
670 @echo " + command: +"
672 @echo " + $(MAKE) uninstall-all +"
673 @echo " +-------------------------------------------+"
675 uninstall-all: _uninstall
676 rm -rf $(DESTDIR)$(ASTLIBDIR)
677 rm -rf $(DESTDIR)$(ASTVARLIBDIR)
678 rm -rf $(DESTDIR)$(ASTDATADIR)
679 rm -rf $(DESTDIR)$(ASTSPOOLDIR)
680 rm -rf $(DESTDIR)$(ASTETCDIR)
681 rm -rf $(DESTDIR)$(ASTLOGDIR)
683 menuselect: menuselect/menuselect menuselect-tree
684 -@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!"
686 menuselect/menuselect: makeopts menuselect/menuselect.c menuselect/menuselect_curses.c menuselect/menuselect_stub.c menuselect/menuselect.h menuselect/linkedlists.h makeopts
687 @unset CC LD AR RANLIB && $(MAKE) -C menuselect CONFIGURE_SILENT="--silent"
689 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
690 @echo "Generating input for menuselect ..."
691 @build_tools/prep_moduledeps > $@
693 .PHONY: menuselect main sounds clean clean-depend dist-clean distclean all prereqs depend cleantest uninstall _uninstall uninstall-all dont-optimize $(SUBDIRS_INSTALL) $(SUBDIRS_CLEAN) $(SUBDIRS_CLEAN_DEPEND) $(SUBDIRS_DEPEND) $(SUBDIRS_UNINSTALL) $(SUBDIRS) $(MOD_SUBDIRS_EMBED_LDSCRIPT) $(MOD_SUBDIRS_EMBED_LDFLAGS) $(MOD_SUBDIRS_EMBED_LIBS)