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 # LDFLAGS - linker flags (not libraries), used for all links
17 # LIBS - additional libraries, at top-level for all links,
18 # on a single object just for that object
19 # SOLINK - linker flags used only for creating shared objects (.so files),
20 # used for all .so links
23 .EXPORT_ALL_VARIABLES:
27 #Uncomment this to see all build commands instead of 'quiet' output
30 # Create OPTIONS variable
33 ASTTOPDIR:=$(shell pwd)
35 # Overwite config files on "make samples"
38 # Include debug and macro symbols in the executables (-g) and profiling info (-pg)
42 # Files are copied here temporarily during the install process
43 # For example, make DESTDIR=/tmp/asterisk woud put things in
44 # /tmp/asterisk/etc/asterisk
45 # !!! Watch out, put no spaces or comments after the value !!!
46 #DESTDIR?=/tmp/asterisk
48 # Define standard directories for various platforms
49 # These apply if they are not redefined in asterisk.conf
50 ifeq ($(OSARCH),SunOS)
51 ASTETCDIR=/var/etc/asterisk
52 ASTLIBDIR=/opt/asterisk/lib
53 ASTVARLIBDIR=/var/opt/asterisk
54 ASTSPOOLDIR=/var/spool/asterisk
55 ASTLOGDIR=/var/log/asterisk
56 ASTHEADERDIR=/opt/asterisk/include
57 ASTBINDIR=/opt/asterisk/bin
58 ASTSBINDIR=/opt/asterisk/sbin
59 ASTVARRUNDIR=/var/run/asterisk
60 ASTMANDIR=/opt/asterisk/man
62 ASTETCDIR=$(sysconfdir)/asterisk
63 ASTLIBDIR=$(libdir)/asterisk
64 ASTHEADERDIR=$(includedir)/asterisk
67 ASTSPOOLDIR=$(localstatedir)/spool/asterisk
68 ASTLOGDIR=$(localstatedir)/log/asterisk
69 ASTVARRUNDIR=$(localstatedir)/run
71 ifeq ($(OSARCH),FreeBSD)
72 ASTVARLIBDIR=$(prefix)/share/asterisk
74 ASTVARLIBDIR=$(localstatedir)/lib/asterisk
77 ASTDATADIR?=$(ASTVARLIBDIR)
79 # Asterisk.conf is located in ASTETCDIR or by using the -C flag
80 # when starting Asterisk
81 ASTCONFPATH=$(ASTETCDIR)/asterisk.conf
82 MODULES_DIR=$(ASTLIBDIR)/modules
83 AGI_DIR=$(ASTDATADIR)/agi-bin
85 # If you use Apache, you may determine by a grep 'DocumentRoot' of your httpd.conf file
86 HTTP_DOCSDIR=/var/www/html
87 # Determine by a grep 'ScriptAlias' of your Apache httpd.conf file
88 HTTP_CGIDIR=/var/www/cgi-bin
92 # Uncomment this to use the older DSP routines
93 #ASTCFLAGS+=-DOLD_DSP_ROUTINES
95 # If the file .asterisk.makeopts is present in your home directory, you can
96 # include all of your favorite menuselect options so that every time you download
97 # a new version of Asterisk, you don't have to run menuselect to set them.
98 # The file /etc/asterisk.makeopts will also be included but can be overridden
99 # by the file in your home directory.
101 GLOBAL_MAKEOPTS=$(wildcard /etc/asterisk.makeopts)
102 USER_MAKEOPTS=$(wildcard ~/.asterisk.makeopts)
104 MOD_SUBDIR_CFLAGS=-I../include -I../main
105 OTHER_SUBDIR_CFLAGS=-I../include
107 ifeq ($(OSARCH),linux-gnu)
108 ifeq ($(PROC),x86_64)
109 # You must have GCC 3.4 to use k8, otherwise use athlon
114 ifeq ($(PROC),sparc64)
115 #The problem with sparc is the best stuff is in newer versions of gcc (post 3.0) only.
116 #This works for even old (2.96) versions of gcc and provides a small boost either way.
117 #A ultrasparc cpu is really v9 but the stock debian stable 3.0 gcc doesn't support it.
118 #So we go lowest common available by gcc and go a step down, still a step up from
119 #the default as we now have a better instruction set to work with. - Belgarath
121 OPTIONS+=$(shell if $(CC) -mtune=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mtune=$(PROC)"; fi)
122 OPTIONS+=$(shell if $(CC) -mcpu=v8 -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mcpu=v8"; fi)
123 OPTIONS+=-fomit-frame-pointer
127 # The Cirrus logic is the only heavily shipping arm processor with a real floating point unit
128 ifeq ($(SUB_PROC),maverick)
129 OPTIONS+=-fsigned-char -mcpu=ep9312
131 ifeq ($(SUB_PROC),xscale)
132 OPTIONS+=-fsigned-char -mcpu=xscale
134 OPTIONS+=-fsigned-char
142 ifeq ($(OSARCH),SunOS)
147 ASTCFLAGS+=-pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations $(DEBUG)
149 ifeq ($(AST_DEVMODE),yes)
150 ASTCFLAGS+=-Werror -Wunused
153 ifneq ($(findstring BSD,$(OSARCH)),)
154 ASTCFLAGS+=-I/usr/local/include -L/usr/local/lib
157 ifneq ($(PROC),ultrasparc)
158 ASTCFLAGS+=$(shell if $(CC) -march=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-march=$(PROC)"; fi)
162 ASTCFLAGS+=-fsigned-char
165 ifeq ($(OSARCH),FreeBSD)
166 BSDVERSION=$(shell $(MAKE) -V OSVERSION -f /usr/share/mk/bsd.port.subdir.mk)
167 ASTCFLAGS+=$(shell if test $(BSDVERSION) -lt 500016 ; then echo "-D_THREAD_SAFE"; fi)
168 AST_LIBS+=$(shell if test $(BSDVERSION) -lt 502102 ; then echo "-lc_r"; else echo "-pthread"; fi)
171 ifeq ($(OSARCH),NetBSD)
172 ASTCFLAGS+=-pthread -I/usr/pkg/include
175 ifeq ($(OSARCH),OpenBSD)
179 ifeq ($(OSARCH),SunOS)
180 ASTCFLAGS+=-Wcast-align -DSOLARIS -I../include/solaris-compat -I/opt/ssl/include -I/usr/local/ssl/include
183 ASTERISKVERSION:=$(shell build_tools/make_version .)
185 ifneq ($(wildcard .version),)
186 ASTERISKVERSIONNUM:=$(shell awk -F. '{printf "%02d%02d%02d", $$1, $$2, $$3}' .version)
187 RPMVERSION:=$(shell sed 's/[-\/:]/_/g' .version)
192 ifneq ($(wildcard .svn),)
193 ASTERISKVERSIONNUM=999999
196 ASTCFLAGS+=$(MALLOC_DEBUG)$(BUSYDETECT)$(OPTIONS)
198 MOD_SUBDIRS:=res channels pbx apps codecs formats cdr funcs main
199 OTHER_SUBDIRS:=utils agi
200 SUBDIRS:=$(OTHER_SUBDIRS) $(MOD_SUBDIRS)
201 SUBDIRS_INSTALL:=$(SUBDIRS:%=%-install)
202 SUBDIRS_CLEAN:=$(SUBDIRS:%=%-clean)
203 SUBDIRS_CLEAN_DEPEND:=$(SUBDIRS:%=%-clean-depend)
204 MOD_SUBDIRS_DEPEND:=$(MOD_SUBDIRS:%=%-depend)
205 OTHER_SUBDIRS_DEPEND:=$(OTHER_SUBDIRS:%=%-depend)
206 SUBDIRS_DEPEND:=$(OTHER_SUBDIRS_DEPEND) $(MOD_SUBDIRS_DEPEND)
207 SUBDIRS_UNINSTALL:=$(SUBDIRS:%=%-uninstall)
208 MOD_SUBDIRS_EMBED_LDSCRIPT:=$(MOD_SUBDIRS:%=%-embed-ldscript)
209 MOD_SUBDIRS_EMBED_LDFLAGS:=$(MOD_SUBDIRS:%=%-embed-ldflags)
210 MOD_SUBDIRS_EMBED_LIBS:=$(MOD_SUBDIRS:%=%-embed-libs)
212 ifneq ($(findstring darwin,$(OSARCH)),)
213 ASTCFLAGS+=-D__Darwin__
214 AUDIO_LIBS=-framework CoreAudio
215 SOLINK=-dynamic -bundle -undefined suppress -force_flat_namespace
217 # These are used for all but Darwin
218 SOLINK=-shared -Xlinker -x
219 ifneq ($(findstring BSD,$(OSARCH)),)
220 LDFLAGS+=-L/usr/local/lib
224 ifeq ($(OSARCH),SunOS)
225 SOLINK=-shared -fpic -L/usr/local/ssl/lib
228 # This is used when generating the doxygen documentation
235 all: cleantest $(SUBDIRS)
236 @echo " +--------- Asterisk Build Complete ---------+"
237 @echo " + Asterisk has successfully been built, but +"
238 @echo " + cannot be run before being installed by +"
239 @echo " + running: +"
241 @echo " + make install +"
242 @echo " +-------------------------------------------+"
246 @echo "**** The configure script must be executed before running 'make'."
250 menuselect.makeopts: menuselect/menuselect menuselect-tree
251 menuselect/menuselect --check-deps $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) menuselect.makeopts
253 $(MOD_SUBDIRS_EMBED_LDSCRIPT):
254 @echo "EMBED_LDSCRIPTS+="`$(MAKE) --quiet --no-print-directory -C $(@:-embed-ldscript=) SUBDIR=$(@:-embed-ldscript=) __embed_ldscript` >> makeopts.embed_rules
256 $(MOD_SUBDIRS_EMBED_LDFLAGS):
257 @echo "EMBED_LDFLAGS+="`$(MAKE) --quiet --no-print-directory -C $(@:-embed-ldflags=) SUBDIR=$(@:-embed-ldflags=) __embed_ldflags` >> makeopts.embed_rules
259 $(MOD_SUBDIRS_EMBED_LIBS):
260 @echo "EMBED_LIBS+="`$(MAKE) --quiet --no-print-directory -C $(@:-embed-libs=) SUBDIR=$(@:-embed-libs=) __embed_libs` >> makeopts.embed_rules
262 makeopts.embed_rules: menuselect.makeopts
263 @echo "Generating embedded module rules ..."
265 @$(MAKE) --no-print-directory $(MOD_SUBDIRS_EMBED_LDSCRIPT)
266 @$(MAKE) --no-print-directory $(MOD_SUBDIRS_EMBED_LDFLAGS)
267 @$(MAKE) --no-print-directory $(MOD_SUBDIRS_EMBED_LIBS)
269 $(SUBDIRS): depend makeopts.embed_rules
271 # ensure that all module subdirectories are processed before 'main' during
272 # a parallel build, since if there are modules selected to be embedded the
273 # directories containing them must be completed before the main Asterisk
274 # binary can be built
275 main: $(filter-out main,$(MOD_SUBDIRS))
278 @CFLAGS="$(MOD_SUBDIR_CFLAGS)$(ASTCFLAGS)" $(MAKE) --no-print-directory -C $@ SUBDIR=$@ all
281 @CFLAGS="$(OTHER_SUBDIR_CFLAGS)$(ASTCFLAGS)" $(MAKE) --no-print-directory -C $@ SUBDIR=$@ all
284 @build_tools/make_defaults_h > $@.tmp
285 @if cmp -s $@.tmp $@ ; then : ; else \
290 include/asterisk/version.h:
291 @build_tools/make_version_h > $@.tmp
292 @if cmp -s $@.tmp $@ ; then : ; else \
297 include/asterisk/buildopts.h: menuselect.makeopts
298 @build_tools/make_buildopts_h > $@.tmp
299 @if cmp -s $@.tmp $@ ; then : ; else \
304 $(SUBDIRS_CLEAN_DEPEND):
305 @$(MAKE) --no-print-directory -C $(@:-clean-depend=) clean-depend
308 @$(MAKE) --no-print-directory -C $(@:-clean=) clean
310 clean-depend: $(SUBDIRS_CLEAN_DEPEND)
312 clean: $(SUBDIRS_CLEAN) clean-depend
314 rm -f include/asterisk/build.h
315 rm -f include/asterisk/version.h
317 @$(MAKE) -C menuselect clean
319 dist-clean: distclean
322 @$(MAKE) -C menuselect dist-clean
323 @$(MAKE) -C sounds dist-clean
324 rm -f menuselect.makeopts makeopts menuselect-tree menuselect.makedeps
325 rm -f makeopts.embed_rules
326 rm -f config.log config.status
327 rm -rf autom4te.cache
328 rm -f include/asterisk/autoconfig.h
329 rm -f include/asterisk/buildopts.h
331 rm -f build_tools/menuselect-deps
334 if [ x`$(ID) -un` = xroot ]; then CFLAGS="$(ASTCFLAGS)" sh build_tools/mkpkgconfig $(DESTDIR)/usr/lib/pkgconfig; fi
335 # Should static HTTP be installed during make samples or even with its own target ala
336 # webvoicemail? There are portions here that *could* be customized but might also be
337 # improved a lot. I'll put it here for now.
338 mkdir -p $(DESTDIR)$(ASTDATADIR)/static-http
339 for x in static-http/*; do \
340 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTDATADIR)/static-http ; \
342 mkdir -p $(DESTDIR)$(ASTDATADIR)/images
343 for x in images/*.jpg; do \
344 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTDATADIR)/images ; \
346 mkdir -p $(DESTDIR)$(AGI_DIR)
347 $(MAKE) -C sounds install
350 @if [ -d .svn ]; then \
351 echo "Updating from Subversion..." ; \
352 svn update | tee update.out; \
354 if [ `grep -c ^C update.out` -gt 0 ]; then \
355 echo ; echo "The following files have conflicts:" ; \
356 grep ^C update.out | cut -b4- ; \
359 $(MAKE) clean-depend; \
361 echo "Not under version control"; \
364 NEWHEADERS=$(notdir $(wildcard include/asterisk/*.h))
365 OLDHEADERS=$(filter-out $(NEWHEADERS),$(notdir $(wildcard $(DESTDIR)$(ASTHEADERDIR)/*.h)))
368 mkdir -p $(DESTDIR)$(MODULES_DIR)
369 mkdir -p $(DESTDIR)$(ASTSBINDIR)
370 mkdir -p $(DESTDIR)$(ASTETCDIR)
371 mkdir -p $(DESTDIR)$(ASTBINDIR)
372 mkdir -p $(DESTDIR)$(ASTVARRUNDIR)
373 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/voicemail
374 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/dictate
375 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/system
376 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/tmp
377 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/meetme
378 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/monitor
379 $(INSTALL) -m 755 main/asterisk $(DESTDIR)$(ASTSBINDIR)/
380 $(LN) -sf asterisk $(DESTDIR)$(ASTSBINDIR)/rasterisk
381 $(INSTALL) -m 755 contrib/scripts/astgenkey $(DESTDIR)$(ASTSBINDIR)/
382 $(INSTALL) -m 755 contrib/scripts/autosupport $(DESTDIR)$(ASTSBINDIR)/
383 if [ ! -f $(DESTDIR)$(ASTSBINDIR)/safe_asterisk ]; then \
384 cat contrib/scripts/safe_asterisk | sed 's|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;' > $(DESTDIR)$(ASTSBINDIR)/safe_asterisk ;\
385 chmod 755 $(DESTDIR)$(ASTSBINDIR)/safe_asterisk;\
387 $(INSTALL) -d $(DESTDIR)$(ASTHEADERDIR)
388 $(INSTALL) -m 644 include/asterisk.h $(DESTDIR)$(includedir)
389 $(INSTALL) -m 644 include/asterisk/*.h $(DESTDIR)$(ASTHEADERDIR)
390 if [ -n "$(OLDHEADERS)" ]; then \
391 rm -f $(addprefix $(DESTDIR)$(ASTHEADERDIR)/,$(OLDHEADERS)) ;\
393 mkdir -p $(DESTDIR)$(ASTLOGDIR)/cdr-csv
394 mkdir -p $(DESTDIR)$(ASTLOGDIR)/cdr-custom
395 mkdir -p $(DESTDIR)$(ASTDATADIR)/keys
396 mkdir -p $(DESTDIR)$(ASTDATADIR)/firmware
397 mkdir -p $(DESTDIR)$(ASTDATADIR)/firmware/iax
398 mkdir -p $(DESTDIR)$(ASTMANDIR)/man8
399 $(INSTALL) -m 644 keys/iaxtel.pub $(DESTDIR)$(ASTDATADIR)/keys
400 $(INSTALL) -m 644 keys/freeworlddialup.pub $(DESTDIR)$(ASTDATADIR)/keys
401 $(INSTALL) -m 644 doc/asterisk.8 $(DESTDIR)$(ASTMANDIR)/man8
402 $(INSTALL) -m 644 contrib/scripts/astgenkey.8 $(DESTDIR)$(ASTMANDIR)/man8
403 $(INSTALL) -m 644 contrib/scripts/autosupport.8 $(DESTDIR)$(ASTMANDIR)/man8
404 $(INSTALL) -m 644 contrib/scripts/safe_asterisk.8 $(DESTDIR)$(ASTMANDIR)/man8
405 $(INSTALL) -m 644 contrib/firmware/iax/iaxy.bin $(DESTDIR)$(ASTDATADIR)/firmware/iax/iaxy.bin; \
408 @$(MAKE) -C $(@:-install=) install
410 NEWMODS=$(notdir $(wildcard */*.so))
411 OLDMODS=$(filter-out $(NEWMODS),$(notdir $(wildcard $(DESTDIR)$(MODULES_DIR)/*.so)))
414 @if [ -n "$(OLDMODS)" ]; then \
415 echo " WARNING WARNING WARNING" ;\
417 echo " Your Asterisk modules directory, located at" ;\
418 echo " $(DESTDIR)$(MODULES_DIR)" ;\
419 echo " contains modules that were not installed by this " ;\
420 echo " version of Asterisk. Please ensure that these" ;\
421 echo " modules are compatible with this version before" ;\
422 echo " attempting to run Asterisk." ;\
424 for f in $(OLDMODS); do \
428 echo " WARNING WARNING WARNING" ;\
431 install: all datafiles bininstall $(SUBDIRS_INSTALL)
432 @if [ -x /usr/sbin/asterisk-post-install ]; then \
433 /usr/sbin/asterisk-post-install $(DESTDIR) . ; \
435 @echo " +---- Asterisk Installation Complete -------+"
437 @echo " + YOU MUST READ THE SECURITY DOCUMENT +"
439 @echo " + Asterisk has successfully been installed. +"
440 @echo " + If you would like to install the sample +"
441 @echo " + configuration files (overwriting any +"
442 @echo " + existing config files), run: +"
444 @echo " + $(MAKE) samples +"
446 @echo " +----------------- or ---------------------+"
448 @echo " + You can go ahead and install the asterisk +"
449 @echo " + program documentation now or later run: +"
451 @echo " + $(MAKE) progdocs +"
453 @echo " + **Note** This requires that you have +"
454 @echo " + doxygen installed on your local system +"
455 @echo " +-------------------------------------------+"
456 @$(MAKE) -s oldmodcheck
458 upgrade: all bininstall
461 mkdir -p $(DESTDIR)$(ASTETCDIR)
462 for x in configs/*.adsi; do \
463 if [ ! -f $(DESTDIR)$(ASTETCDIR)/$$x ]; then \
464 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x` ; \
469 mkdir -p $(DESTDIR)$(ASTETCDIR)
470 for x in configs/*.sample; do \
471 if [ -f $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` ]; then \
472 if [ "$(OVERWRITE)" = "y" ]; then \
473 if cmp -s $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` $$x ; then \
474 echo "Config file $$x is unchanged"; \
477 mv -f $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample`.old ; \
479 echo "Skipping config file $$x"; \
483 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` ;\
485 if [ "$(OVERWRITE)" = "y" ] || [ ! -f $(DESTDIR)$(ASTCONFPATH) ]; then \
487 echo "[directories]" ; \
488 echo "astetcdir => $(ASTETCDIR)" ; \
489 echo "astmoddir => $(MODULES_DIR)" ; \
490 echo "astvarlibdir => $(ASTVARLIBDIR)" ; \
491 echo "astdatadir => $(ASTDATADIR)" ; \
492 echo "astagidir => $(AGI_DIR)" ; \
493 echo "astspooldir => $(ASTSPOOLDIR)" ; \
494 echo "astrundir => $(ASTVARRUNDIR)" ; \
495 echo "astlogdir => $(ASTLOGDIR)" ; \
497 echo "; Changing the following lines may compromise your security." ; \
499 echo ";astctlpermissions = 0660" ; \
500 echo ";astctlowner = root" ; \
501 echo ";astctlgroup = apache" ; \
502 echo ";astctl = asterisk.ctl" ; \
503 echo ";[options]" ; \
504 echo ";internal_timing = yes" ; \
505 ) > $(DESTDIR)$(ASTCONFPATH) ; \
507 echo "Skipping asterisk.conf creation"; \
509 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/INBOX
510 :> $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/unavail.gsm
511 for x in vm-theperson digits/1 digits/2 digits/3 digits/4 vm-isunavail; do \
512 cat $(DESTDIR)$(ASTDATADIR)/sounds/$$x.gsm >> $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/unavail.gsm ; \
514 :> $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/busy.gsm
515 for x in vm-theperson digits/1 digits/2 digits/3 digits/4 vm-isonphone; do \
516 cat $(DESTDIR)$(ASTDATADIR)/sounds/$$x.gsm >> $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/busy.gsm ; \
520 @[ -d $(DESTDIR)$(HTTP_DOCSDIR)/ ] || ( printf "http docs directory not found.\nUpdate assignment of variable HTTP_DOCSDIR in Makefile!\n" && exit 1 )
521 @[ -d $(DESTDIR)$(HTTP_CGIDIR) ] || ( printf "cgi-bin directory not found.\nUpdate assignment of variable HTTP_CGIDIR in Makefile!\n" && exit 1 )
522 $(INSTALL) -m 4755 -o root -g root contrib/scripts/vmail.cgi $(DESTDIR)$(HTTP_CGIDIR)/vmail.cgi
523 mkdir -p $(DESTDIR)$(HTTP_DOCSDIR)/_asterisk
524 for x in images/*.gif; do \
525 $(INSTALL) -m 644 $$x $(DESTDIR)$(HTTP_DOCSDIR)/_asterisk/; \
527 @echo " +--------- Asterisk Web Voicemail ----------+"
529 @echo " + Asterisk Web Voicemail is installed in +"
530 @echo " + your cgi-bin directory: +"
531 @echo " + $(DESTDIR)$(HTTP_CGIDIR)"
532 @echo " + IT USES A SETUID ROOT PERL SCRIPT, SO +"
533 @echo " + IF YOU DON'T LIKE THAT, UNINSTALL IT! +"
535 @echo " + Other static items have been stored in: +"
536 @echo " + $(DESTDIR)$(HTTP_DOCSDIR)"
538 @echo " + If these paths do not match your httpd +"
539 @echo " + installation, correct the definitions +"
540 @echo " + in your Makefile of HTTP_CGIDIR and +"
541 @echo " + HTTP_DOCSDIR +"
543 @echo " +-------------------------------------------+"
546 sed "s/^Version:.*/Version: $(RPMVERSION)/g" redhat/asterisk.spec > asterisk.spec ; \
550 __rpm: include/asterisk/version.h include/asterisk/buildopts.h spec
551 rm -rf /tmp/asterisk ; \
552 mkdir -p /tmp/asterisk/redhat/RPMS/i386 ; \
553 $(MAKE) DESTDIR=/tmp/asterisk install ; \
554 $(MAKE) DESTDIR=/tmp/asterisk samples ; \
555 mkdir -p /tmp/asterisk/etc/rc.d/init.d ; \
556 cp -f contrib/init.d/rc.redhat.asterisk /tmp/asterisk/etc/rc.d/init.d/asterisk ; \
557 rpmbuild --rcfile /usr/lib/rpm/rpmrc:redhat/rpmrc -bb asterisk.spec
560 (cat contrib/asterisk-ng-doxygen; echo "HAVE_DOT=$(HAVEDOT)"; \
561 echo "PROJECT_NUMBER=$(ASTERISKVERSION)") | doxygen -
564 @if [ "${OSARCH}" = "linux-gnu" ]; then \
565 if [ -f /etc/redhat-release -o -f /etc/fedora-release ]; then \
566 $(INSTALL) -m 755 contrib/init.d/rc.redhat.asterisk /etc/rc.d/init.d/asterisk; \
567 /sbin/chkconfig --add asterisk; \
568 elif [ -f /etc/debian_version ]; then \
569 $(INSTALL) -m 755 contrib/init.d/rc.debian.asterisk /etc/init.d/asterisk; \
570 /usr/sbin/update-rc.d asterisk start 10 2 3 4 5 . stop 91 2 3 4 5 .; \
571 elif [ -f /etc/gentoo-release ]; then \
572 $(INSTALL) -m 755 contrib/init.d/rc.gentoo.asterisk /etc/init.d/asterisk; \
573 /sbin/rc-update add asterisk default; \
574 elif [ -f /etc/mandrake-release ]; then \
575 $(INSTALL) -m 755 contrib/init.d/rc.mandrake.asterisk /etc/rc.d/init.d/asterisk; \
576 /sbin/chkconfig --add asterisk; \
577 elif [ -f /etc/SuSE-release -o -f /etc/novell-release ]; then \
578 $(INSTALL) -m 755 contrib/init.d/rc.suse.asterisk /etc/init.d/asterisk; \
579 /sbin/chkconfig --add asterisk; \
580 elif [ -f /etc/slackware-version ]; then \
581 echo "Slackware is not currently supported, although an init script does exist for it." \
583 echo "We could not install init scripts for your distribution."; \
586 echo "We could not install init scripts for your operating system."; \
589 $(MOD_SUBDIRS_DEPEND):
590 @CFLAGS="$(MOD_SUBDIR_CFLAGS)$(ASTCFLAGS)" $(MAKE) --no-print-directory -C $(@:-depend=) depend
592 $(OTHER_SUBDIRS_DEPEND):
593 @CFLAGS="$(OTHER_SUBDIR_CFLAGS)$(ASTCFLAGS)" $(MAKE) --no-print-directory -C $(@:-depend=) depend
595 depend: include/asterisk/version.h include/asterisk/buildopts.h defaults.h $(SUBDIRS_DEPEND)
598 $(MAKE) -C sounds all
600 # If the cleancount has been changed, force a make clean.
601 # .cleancount is the global clean count, and .lastclean is the
602 # last clean count we had
605 @if ! cmp -s .cleancount .lastclean ; then \
606 $(MAKE) clean; cp -f .cleancount .lastclean;\
610 $(SUBDIRS_UNINSTALL):
611 @$(MAKE) --no-print-directory -C $(@:-uninstall=) uninstall
613 _uninstall: $(SUBDIRS_UNINSTALL)
614 rm -f $(DESTDIR)$(MODULES_DIR)/*
615 rm -f $(DESTDIR)$(ASTSBINDIR)/*asterisk*
616 rm -f $(DESTDIR)$(ASTSBINDIR)/astgenkey
617 rm -f $(DESTDIR)$(ASTSBINDIR)/autosupport
618 rm -rf $(DESTDIR)$(ASTHEADERDIR)
619 rm -rf $(DESTDIR)$(ASTDATADIR)/firmware
620 rm -rf $(DESTDIR)$(ASTMANDIR)/man8
621 $(MAKE) -C sounds uninstall
623 uninstall: _uninstall
624 @echo " +--------- Asterisk Uninstall Complete -----+"
625 @echo " + Asterisk binaries, sounds, man pages, +"
626 @echo " + headers, modules, and firmware builds, +"
627 @echo " + have all been uninstalled. +"
629 @echo " + To remove ALL traces of Asterisk, +"
630 @echo " + including configuration, spool +"
631 @echo " + directories, and logs, run the following +"
632 @echo " + command: +"
634 @echo " + $(MAKE) uninstall-all +"
635 @echo " +-------------------------------------------+"
637 uninstall-all: _uninstall
638 rm -rf $(DESTDIR)$(ASTLIBDIR)
639 rm -rf $(DESTDIR)$(ASTVARLIBDIR)
640 rm -rf $(DESTDIR)$(ASTDATADIR)
641 rm -rf $(DESTDIR)$(ASTSPOOLDIR)
642 rm -rf $(DESTDIR)$(ASTETCDIR)
643 rm -rf $(DESTDIR)$(ASTLOGDIR)
645 menuselect: menuselect/menuselect menuselect-tree
646 -@menuselect/menuselect $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) menuselect.makeopts && echo "menuselect changes saved!" || echo "menuselect changes NOT saved!"
648 menuselect/menuselect: makeopts menuselect/menuselect.c menuselect/menuselect_curses.c menuselect/menuselect_stub.c menuselect/menuselect.h menuselect/linkedlists.h makeopts
649 @CFLAGS="-include $(ASTTOPDIR)/include/asterisk/autoconfig.h -I$(ASTTOPDIR)/include" PARENTSRC="$(ASTTOPDIR)" $(MAKE) -C menuselect CC="$(HOST_CC)"
651 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
652 @echo "Generating input for menuselect ..."
653 @build_tools/prep_moduledeps > $@
655 .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)