func_pjsip_endpoint: Add PJSIP_ENDPOINT function for querying endpoint details
[asterisk/asterisk.git] / Makefile
1 #
2 # Asterisk -- An open source telephony toolkit.
3 #
4 # Top level Makefile
5 #
6 # Copyright (C) 1999-2010, Digium, Inc.
7 #
8 # Mark Spencer <markster@digium.com>
9 #
10 # This program is free software, distributed under the terms of
11 # the GNU General Public License
12 #
13
14 # All Makefiles use the following variables:
15 #
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 dynamically loadable modules
23 #          as .so files
24 # DYLINK - linker flags used only for creating shared libaries
25 #          (.so files on Unix-type platforms, .dylib on Darwin)
26 #
27 # Values for ASTCFLAGS and ASTLDFLAGS can be specified in the
28 # environment when running make, as follows:
29 #
30 #       $ ASTCFLAGS="-Werror" make ...
31 #
32 # or as a variable value on the make command line itself:
33 #
34 #       $ make ASTCFLAGS="-Werror" ...
35
36 export ASTTOPDIR                # Top level dir, used in subdirs' Makefiles
37 export ASTERISKVERSION
38 export ASTERISKVERSIONNUM
39
40 #--- values used for default paths
41
42 # DESTDIR is the staging (or final) directory where files are copied
43 # during the install process. Define it before 'export', otherwise
44 # export will set it to the empty string making ?= fail.
45 # Trying to run asterisk from the DESTDIR is completely unsupported
46 # behavior.
47 # WARNING: do not put spaces or comments after the value.
48 DESTDIR?=$(INSTALL_PATH)
49 export DESTDIR
50
51 export INSTALL_PATH       # Additional prefix for the following paths
52 export ASTETCDIR          # Path for config files
53 export ASTVARRUNDIR
54 export ASTSPOOLDIR
55 export ASTVARLIBDIR
56 export ASTDATADIR
57 export ASTDBDIR
58 export ASTLOGDIR
59 export ASTLIBDIR
60 export ASTMODDIR
61 export ASTMANDIR
62 export ASTHEADERDIR
63 export ASTSBINDIR
64 export AGI_DIR
65 export ASTCONFPATH
66 export ASTKEYDIR
67
68 export OSARCH             # Operating system
69
70 export NOISY_BUILD        # Used in Makefile.rules
71 export MENUSELECT_CFLAGS  # Options selected in menuselect.
72 export AST_DEVMODE        # Set to "yes" for additional compiler
73                           # and runtime checks
74 export AST_DEVMODE_STRICT # Enables shadow warnings (-Wshadow)
75
76 export _SOLINK            # linker flags for all shared objects
77 export SOLINK             # linker flags for loadable modules
78 export DYLINK             # linker flags for shared libraries
79 export STATIC_BUILD       # Additional cflags, set to -static
80                           # for static builds. Probably
81                           # should go directly to ASTLDFLAGS
82
83 #--- paths to various commands
84 # The makeopts include below tries to set these if they're found during
85 # configure.
86 export CC
87 export CXX
88 export AR
89 export RANLIB
90 export HOST_CC
91 export BUILD_CC
92 export INSTALL
93 export STRIP
94 export DOWNLOAD
95 export AWK
96 export GREP
97 export MD5
98 export WGET_EXTRA_ARGS
99 export LDCONFIG
100 export LDCONFIG_FLAGS
101 export PYTHON
102
103 -include makeopts
104
105 # start the primary CFLAGS and LDFLAGS with any that were provided
106 # to the configure script
107 _ASTCFLAGS:=$(CONFIG_CFLAGS)
108 _ASTLDFLAGS:=$(CONFIG_LDFLAGS)
109
110 # Some build systems, such as the one in openwrt, like to pass custom target
111 # CFLAGS and LDFLAGS in the COPTS and LDOPTS variables; these should also
112 # go before any build-system computed flags, since they are defaults, not
113 # overrides
114 _ASTCFLAGS+=$(COPTS)
115 _ASTLDFLAGS+=$(LDOPTS)
116
117 # libxml2 cflags
118 _ASTCFLAGS+=$(LIBXML2_INCLUDE)
119
120 #Uncomment this to see all build commands instead of 'quiet' output
121 #NOISY_BUILD=yes
122
123 empty:=
124 space:=$(empty) $(empty)
125 ASTTOPDIR:=$(subst $(space),\$(space),$(CURDIR))
126
127 # Overwite config files on "make samples"
128 OVERWRITE=y
129
130 # Include debug and macro symbols in the executables (-g) and profiling info (-pg)
131 DEBUG=-g3
132
133 # Asterisk.conf is located in ASTETCDIR or by using the -C flag
134 # when starting Asterisk
135 ASTCONFPATH=$(ASTETCDIR)/asterisk.conf
136 AGI_DIR=$(ASTDATADIR)/agi-bin
137
138 # If you use Apache, you may determine by a grep 'DocumentRoot' of your httpd.conf file
139 HTTP_DOCSDIR=/var/www/html
140 # Determine by a grep 'ScriptAlias' of your Apache httpd.conf file
141 HTTP_CGIDIR=/var/www/cgi-bin
142
143 # If your platform's linker expects a prefix on symbols generated from compiling C
144 # source files, set LINKER_SYMBOL_PREFIX to that value. On some systems, exported symbols
145 # from C source files are prefixed with '_', for example. If this value is not set
146 # properly, the linker scripts that live in the '*.exports' files in various places
147 # in this tree will unintentionally suppress symbols that should be visible
148 # in the final binary objects.
149 LINKER_SYMBOL_PREFIX=
150
151 # Uncomment this to use the older DSP routines
152 #_ASTCFLAGS+=-DOLD_DSP_ROUTINES
153
154 # If the file .asterisk.makeopts is present in your home directory, you can
155 # include all of your favorite menuselect options so that every time you download
156 # a new version of Asterisk, you don't have to run menuselect to set them.
157 # The file /etc/asterisk.makeopts will also be included but can be overridden
158 # by the file in your home directory.
159
160 GLOBAL_MAKEOPTS=$(wildcard /etc/asterisk.makeopts)
161 USER_MAKEOPTS=$(wildcard ~/.asterisk.makeopts)
162
163 MOD_SUBDIR_CFLAGS="-I$(ASTTOPDIR)/include"
164 OTHER_SUBDIR_CFLAGS="-I$(ASTTOPDIR)/include"
165
166 # Create OPTIONS variable, but probably we can assign directly to ASTCFLAGS
167 OPTIONS=
168
169 ifeq ($(OSARCH),linux-gnu)
170   # flag to tell 'ldconfig' to only process specified directories
171   LDCONFIG_FLAGS=-n
172 endif
173
174 ifeq ($(findstring -save-temps,$(_ASTCFLAGS) $(ASTCFLAGS)),)
175   ifeq ($(findstring -pipe,$(_ASTCFLAGS) $(ASTCFLAGS)),)
176     _ASTCFLAGS+=-pipe
177   endif
178 endif
179
180 ifeq ($(findstring -Wall,$(_ASTCFLAGS) $(ASTCFLAGS)),)
181   _ASTCFLAGS+=-Wall
182 endif
183
184 _ASTCFLAGS+=-Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations $(AST_NESTED_FUNCTIONS) $(DEBUG)
185 ADDL_TARGETS=
186
187 ifeq ($(AST_DEVMODE),yes)
188   _ASTCFLAGS+=-Werror
189   _ASTCFLAGS+=-Wunused
190   _ASTCFLAGS+=$(AST_DECLARATION_AFTER_STATEMENT)
191   _ASTCFLAGS+=$(AST_FORTIFY_SOURCE)
192   _ASTCFLAGS+=$(AST_TRAMPOLINES)
193   _ASTCFLAGS+=-Wundef
194   _ASTCFLAGS+=-Wmissing-format-attribute
195   _ASTCFLAGS+=-Wformat=2
196   ifeq ($(AST_DEVMODE_STRICT),yes)
197     _ASTCFLAGS+=-Wshadow
198   endif
199   ADDL_TARGETS+=validate-docs
200 endif
201
202 ifneq ($(findstring BSD,$(OSARCH)),)
203   _ASTCFLAGS+=-isystem /usr/local/include
204 endif
205
206 ifeq ($(OSARCH),FreeBSD)
207   # -V is understood by BSD Make, not by GNU make.
208   BSDVERSION=$(shell make -V OSVERSION -f /usr/share/mk/bsd.port.subdir.mk)
209   _ASTCFLAGS+=$(shell if test $(BSDVERSION) -lt 500016 ; then echo "-D_THREAD_SAFE"; fi)
210   # flag to tell 'ldconfig' to only process specified directories
211   LDCONFIG_FLAGS=-m
212 endif
213
214 ifeq ($(OSARCH),NetBSD)
215   _ASTCFLAGS+=-pthread -I/usr/pkg/include
216 endif
217
218 ifeq ($(OSARCH),OpenBSD)
219   _ASTCFLAGS+=-pthread -ftrampolines
220 endif
221
222 ifeq ($(OSARCH),SunOS)
223   _ASTCFLAGS+=-Wcast-align -DSOLARIS -I../include/solaris-compat -I/opt/ssl/include -I/usr/local/ssl/include -D_XPG4_2 -D__EXTENSIONS__
224 endif
225
226 ifneq ($(GREP),)
227   ASTERISKVERSION:=$(shell GREP=$(GREP) AWK=$(AWK) GIT=$(GIT) build_tools/make_version .)
228 endif
229 ifneq ($(AWK),)
230   ifneq ($(wildcard .version),)
231     ASTERISKVERSIONNUM:=$(shell $(AWK) -F. '{printf "%01d%02d%02d", $$1, $$2, $$3}' .version)
232   endif
233 endif
234
235 ifneq ($(wildcard .svn),)
236   ASTERISKVERSIONNUM:=999999
237 endif
238
239 _ASTCFLAGS+=$(OPTIONS)
240
241 MOD_SUBDIRS:=channels pbx apps codecs formats cdr cel bridges funcs tests main res addons $(LOCAL_MOD_SUBDIRS)
242 OTHER_SUBDIRS:=utils agi
243 SUBDIRS:=$(OTHER_SUBDIRS) $(MOD_SUBDIRS)
244 SUBDIRS_INSTALL:=$(SUBDIRS:%=%-install)
245 SUBDIRS_CLEAN:=$(SUBDIRS:%=%-clean)
246 SUBDIRS_DIST_CLEAN:=$(SUBDIRS:%=%-dist-clean)
247 SUBDIRS_UNINSTALL:=$(SUBDIRS:%=%-uninstall)
248 MOD_SUBDIRS_EMBED_LDSCRIPT:=$(MOD_SUBDIRS:%=%-embed-ldscript)
249 MOD_SUBDIRS_EMBED_LDFLAGS:=$(MOD_SUBDIRS:%=%-embed-ldflags)
250 MOD_SUBDIRS_EMBED_LIBS:=$(MOD_SUBDIRS:%=%-embed-libs)
251 MOD_SUBDIRS_MENUSELECT_TREE:=$(MOD_SUBDIRS:%=%-menuselect-tree)
252
253 ifneq ($(findstring darwin,$(OSARCH)),)
254   _ASTCFLAGS+=-D__Darwin__ -mmacosx-version-min=10.6
255   _SOLINK=-mmacosx-version-min=10.6 -Xlinker -undefined -Xlinker dynamic_lookup
256   _SOLINK+=/usr/lib/bundle1.o
257   SOLINK=-bundle $(_SOLINK)
258   DYLINK=-Xlinker -dylib $(_SOLINK)
259   _ASTLDFLAGS+=-L/usr/local/lib
260 else
261 # These are used for all but Darwin
262   SOLINK=-shared
263   DYLINK=$(SOLINK)
264   ifneq ($(findstring BSD,$(OSARCH)),)
265     _ASTLDFLAGS+=-L/usr/local/lib
266   endif
267 endif
268
269 # Include rpath settings
270 _ASTLDFLAGS+=$(AST_RPATH)
271
272 ifeq ($(OSARCH),SunOS)
273   SOLINK=-shared -fpic -L/usr/local/ssl/lib -lrt
274   DYLINK=$(SOLINK)
275 endif
276
277 ifeq ($(OSARCH),OpenBSD)
278   SOLINK=-shared -fpic
279   DYLINK=$(SOLINK)
280 endif
281
282 # comment to print directories during submakes
283 #PRINT_DIR=yes
284
285 ifneq ($(INSIDE_EMACS),)
286 PRINT_DIR=yes
287 endif
288
289 SILENTMAKE:=$(MAKE) --quiet --no-print-directory
290 ifneq ($(PRINT_DIR)$(NOISY_BUILD),)
291 SUBMAKE:=$(MAKE)
292 else
293 SUBMAKE:=$(MAKE) --quiet --no-print-directory
294 endif
295
296 # $(MAKE) is printed in several places, and we want it to be a
297 # fixed size string. Define a variable whose name has also the
298 # same size, so we can easily align text.
299 ifeq ($(MAKE), gmake)
300         mK="gmake"
301 else
302         mK=" make"
303 endif
304
305 all: _all
306         @echo " +--------- Asterisk Build Complete ---------+"
307         @echo " + Asterisk has successfully been built, and +"
308         @echo " + can be installed by running:              +"
309         @echo " +                                           +"
310         @echo " +               $(mK) install               +"
311         @echo " +-------------------------------------------+"
312
313 full: _full
314         @echo " +--------- Asterisk Build Complete ---------+"
315         @echo " + Asterisk has successfully been built, and +"
316         @echo " + can be installed by running:              +"
317         @echo " +                                           +"
318         @echo " +               $(mK) install               +"
319         @echo " +-------------------------------------------+"
320
321
322 _all: makeopts $(SUBDIRS) doc/core-en_US.xml $(ADDL_TARGETS)
323
324 _full: makeopts $(SUBDIRS) doc/full-en_US.xml $(ADDL_TARGETS)
325
326 makeopts: configure
327         @echo "****"
328         @echo "**** The configure script must be executed before running '$(MAKE)'."
329         @echo "****               Please run \"./configure\"."
330         @echo "****"
331         @exit 1
332
333 menuselect.makeopts: menuselect/menuselect menuselect-tree makeopts build_tools/menuselect-deps $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS)
334 ifeq ($(filter %menuselect,$(MAKECMDGOALS)),)
335         menuselect/menuselect --check-deps $@
336         menuselect/menuselect --check-deps $@ $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS)
337 endif
338
339 $(MOD_SUBDIRS_EMBED_LDSCRIPT):
340         +@echo "EMBED_LDSCRIPTS+="`$(SILENTMAKE) -C $(@:-embed-ldscript=) SUBDIR=$(@:-embed-ldscript=) __embed_ldscript` >> makeopts.embed_rules
341
342 $(MOD_SUBDIRS_EMBED_LDFLAGS):
343         +@echo "EMBED_LDFLAGS+="`$(SILENTMAKE) -C $(@:-embed-ldflags=) SUBDIR=$(@:-embed-ldflags=) __embed_ldflags` >> makeopts.embed_rules
344
345 $(MOD_SUBDIRS_EMBED_LIBS):
346         +@echo "EMBED_LIBS+="`$(SILENTMAKE) -C $(@:-embed-libs=) SUBDIR=$(@:-embed-libs=) __embed_libs` >> makeopts.embed_rules
347
348 $(MOD_SUBDIRS_MENUSELECT_TREE):
349         +@$(SUBMAKE) -C $(@:-menuselect-tree=) SUBDIR=$(@:-menuselect-tree=) moduleinfo
350         +@$(SUBMAKE) -C $(@:-menuselect-tree=) SUBDIR=$(@:-menuselect-tree=) makeopts
351
352 makeopts.embed_rules: menuselect.makeopts
353         @echo "Generating embedded module rules ..."
354         @rm -f $@
355         +@$(SUBMAKE) $(MOD_SUBDIRS_EMBED_LDSCRIPT)
356         +@$(SUBMAKE) $(MOD_SUBDIRS_EMBED_LDFLAGS)
357         +@$(SUBMAKE) $(MOD_SUBDIRS_EMBED_LIBS)
358
359 $(SUBDIRS): makeopts .lastclean main/version.c include/asterisk/build.h include/asterisk/buildopts.h defaults.h makeopts.embed_rules
360
361 ifeq ($(findstring $(OSARCH), mingw32 cygwin ),)
362     # Non-windows:
363     # ensure that all module subdirectories are processed before 'main' during
364     # a parallel build, since if there are modules selected to be embedded the
365     # directories containing them must be completed before the main Asterisk
366     # binary can be built
367 main: $(filter-out main,$(MOD_SUBDIRS))
368 else
369     # Windows: we need to build main (i.e. the asterisk dll) first,
370     # followed by res, followed by the other directories, because
371     # dll symbols must be resolved during linking and not at runtime.
372 D1:= $(filter-out main,$(MOD_SUBDIRS))
373 D1:= $(filter-out res,$(D1))
374
375 $(D1): res
376 res:    main
377 endif
378
379 $(MOD_SUBDIRS): makeopts
380         +@_ASTCFLAGS="$(MOD_SUBDIR_CFLAGS) $(_ASTCFLAGS)" ASTCFLAGS="$(ASTCFLAGS)" _ASTLDFLAGS="$(_ASTLDFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" $(SUBMAKE) --no-builtin-rules -C $@ SUBDIR=$@ all
381
382 $(OTHER_SUBDIRS): makeopts
383         +@_ASTCFLAGS="$(OTHER_SUBDIR_CFLAGS) $(_ASTCFLAGS)" ASTCFLAGS="$(ASTCFLAGS)" _ASTLDFLAGS="$(_ASTLDFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" $(SUBMAKE) --no-builtin-rules -C $@ SUBDIR=$@ all
384
385 defaults.h: makeopts .lastclean build_tools/make_defaults_h
386         @build_tools/make_defaults_h > $@.tmp
387         @cmp -s $@.tmp $@ || mv $@.tmp $@
388         @rm -f $@.tmp
389
390 main/version.c: FORCE .lastclean
391         @build_tools/make_version_c > $@.tmp
392         @cmp -s $@.tmp $@ || mv $@.tmp $@
393         @rm -f $@.tmp
394
395 include/asterisk/buildopts.h: menuselect.makeopts .lastclean
396         @build_tools/make_buildopts_h > $@.tmp
397         @cmp -s $@.tmp $@ || mv $@.tmp $@
398         @rm -f $@.tmp
399
400 # build.h must depend on .lastclean, or parallel make may wipe it out after it's
401 # been created.
402 include/asterisk/build.h: .lastclean
403         @build_tools/make_build_h > $@
404
405 $(SUBDIRS_CLEAN):
406         +@$(SUBMAKE) -C $(@:-clean=) clean
407
408 $(SUBDIRS_DIST_CLEAN):
409         +@$(SUBMAKE) -C $(@:-dist-clean=) dist-clean
410
411 clean: $(SUBDIRS_CLEAN) _clean
412
413 _clean:
414         rm -f defaults.h
415         rm -f include/asterisk/build.h
416         rm -f main/version.c
417         rm -f doc/core-en_US.xml
418         rm -f doc/full-en_US.xml
419         rm -f doc/rest-api/*.wiki
420         rm -f rest-api-templates/*.pyc
421         @$(MAKE) -C menuselect clean
422         cp -f .cleancount .lastclean
423
424 dist-clean: distclean
425
426 distclean: $(SUBDIRS_DIST_CLEAN) _clean
427         @$(MAKE) -C menuselect dist-clean
428         @$(MAKE) -C sounds dist-clean
429         rm -f menuselect.makeopts makeopts menuselect-tree menuselect.makedeps
430         rm -f makeopts.embed_rules
431         rm -f config.log config.status config.cache
432         rm -rf autom4te.cache
433         rm -f include/asterisk/autoconfig.h
434         rm -f include/asterisk/buildopts.h
435         rm -rf doc/api
436         rm -f build_tools/menuselect-deps
437
438 datafiles: _all doc/core-en_US.xml
439         CFLAGS="$(_ASTCFLAGS) $(ASTCFLAGS)" build_tools/mkpkgconfig "$(DESTDIR)$(libdir)/pkgconfig";
440
441 #       # Recursively install contents of the static-http directory, in case
442 #       # extra content is provided there. See contrib/scripts/get_swagger_ui.sh
443         find static-http | while read x; do \
444                 if test -d $$x; then \
445                         $(INSTALL) -m 755 -d "$(DESTDIR)$(ASTDATADIR)/$$x"; \
446                 else \
447                         $(INSTALL) -m 644 $$x "$(DESTDIR)$(ASTDATADIR)/$$x" ; \
448                 fi \
449         done
450         $(INSTALL) -m 644 doc/core-en_US.xml "$(DESTDIR)$(ASTDATADIR)/static-http";
451         $(INSTALL) -m 644 doc/appdocsxml.xslt "$(DESTDIR)$(ASTDATADIR)/static-http";
452         if [ -d doc/tex/asterisk ] ; then \
453                 $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/static-http/docs" ; \
454                 for n in doc/tex/asterisk/* ; do \
455                         $(INSTALL) -m 644 $$n "$(DESTDIR)$(ASTDATADIR)/static-http/docs" ; \
456                 done \
457         fi
458         for x in images/*.jpg; do \
459                 $(INSTALL) -m 644 $$x "$(DESTDIR)$(ASTDATADIR)/images" ; \
460         done
461         $(MAKE) -C sounds install
462         find rest-api -name "*.json" | while read x; do \
463                 $(INSTALL) -m 644 $$x "$(DESTDIR)$(ASTDATADIR)/rest-api" ; \
464         done
465
466 ifneq ($(GREP),)
467   XML_core_en_US = $(foreach dir,$(MOD_SUBDIRS),$(shell $(GREP) -l "language=\"en_US\"" $(dir)/*.c $(dir)/*.cc 2>/dev/null))
468 endif
469
470 doc/core-en_US.xml: makeopts .lastclean $(XML_core_en_US)
471         @printf "Building Documentation For: "
472         @echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" > $@
473         @echo "<!DOCTYPE docs SYSTEM \"appdocsxml.dtd\">" >> $@
474         @echo "<?xml-stylesheet type=\"text/xsl\" href=\"appdocsxml.xslt\"?>" > $@
475         @echo "<docs xmlns:xi=\"http://www.w3.org/2001/XInclude\">" >> $@
476         @for x in $(MOD_SUBDIRS); do \
477                 printf "$$x " ; \
478                 for i in `find $$x -name '*.c'`; do \
479                         $(AWK) -f build_tools/get_documentation $$i >> $@ ; \
480                 done ; \
481         done
482         @echo
483         @echo "</docs>" >> $@
484
485 ifneq ($(GREP),)
486   XML_full_en_US = $(foreach dir,$(MOD_SUBDIRS),$(shell $(GREP) -l "language=\"en_US\"" $(dir)/*.c $(dir)/*.cc 2>/dev/null))
487 endif
488
489 doc/full-en_US.xml: makeopts .lastclean $(XML_full_en_US)
490 ifeq ($(PYTHON),:)
491         @echo "--------------------------------------------------------------------------"
492         @echo "---        Please install python to build full documentation           ---"
493         @echo "--------------------------------------------------------------------------"
494 else
495         @printf "Building Documentation For: "
496         @echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" > $@
497         @echo "<!DOCTYPE docs SYSTEM \"appdocsxml.dtd\">" >> $@
498         @echo "<?xml-stylesheet type=\"text/xsl\" href=\"appdocsxml.xslt\"?>" > $@
499         @echo "<docs xmlns:xi=\"http://www.w3.org/2001/XInclude\">" >> $@
500         @for x in $(MOD_SUBDIRS); do \
501                 printf "$$x " ; \
502                 for i in `find $$x -name '*.c'`; do \
503                         $(PYTHON) build_tools/get_documentation.py < $$i >> $@ ; \
504                 done ; \
505         done
506         @echo
507         @echo "</docs>" >> $@
508         @$(PYTHON) build_tools/post_process_documentation.py -i $@ -o "doc/core-en_US.xml"
509 endif
510
511 validate-docs: doc/core-en_US.xml
512 ifeq ($(XMLSTARLET)$(XMLLINT),::)
513         @echo "--------------------------------------------------------------------------"
514         @echo "--- Please install xmllint or xmlstarlet to validate the documentation ---"
515         @echo "--------------------------------------------------------------------------"
516 else
517   ifneq ($(XMLLINT),:)
518         $(XMLLINT) --dtdvalid doc/appdocsxml.dtd --noout $<
519   else
520         $(XMLSTARLET) val -d doc/appdocsxml.dtd $<
521   endif
522 endif
523
524 update:
525         @if [ -d .svn ]; then \
526                 echo "Updating from Subversion..." ; \
527                 fromrev="`svn info | $(AWK) '/Revision: / {print $$2}'`"; \
528                 svn update | tee update.out; \
529                 torev="`svn info | $(AWK) '/Revision: / {print $$2}'`"; \
530                 echo "`date`  Updated from revision $${fromrev} to $${torev}." >> update.log; \
531                 rm -f .version; \
532                 if [ `grep -c ^C update.out` -gt 0 ]; then \
533                         echo ; echo "The following files have conflicts:" ; \
534                         grep ^C update.out | cut -b4- ; \
535                 fi ; \
536                 rm -f update.out; \
537         else \
538                 echo "Not under version control";  \
539         fi
540
541 NEWHEADERS=$(notdir $(wildcard include/asterisk/*.h))
542 OLDHEADERS=$(filter-out $(NEWHEADERS) $(notdir $(DESTDIR)$(ASTHEADERDIR)),$(notdir $(wildcard $(DESTDIR)$(ASTHEADERDIR)/*.h)))
543 INSTALLDIRS="$(ASTLIBDIR)" "$(ASTMODDIR)" "$(ASTSBINDIR)" "$(ASTETCDIR)" "$(ASTVARRUNDIR)" \
544         "$(ASTSPOOLDIR)" "$(ASTSPOOLDIR)/dictate" "$(ASTSPOOLDIR)/meetme" \
545         "$(ASTSPOOLDIR)/monitor" "$(ASTSPOOLDIR)/system" "$(ASTSPOOLDIR)/tmp" \
546         "$(ASTSPOOLDIR)/voicemail" "$(ASTSPOOLDIR)/recording" \
547         "$(ASTHEADERDIR)" "$(ASTHEADERDIR)/doxygen" \
548         "$(ASTLOGDIR)" "$(ASTLOGDIR)/cdr-csv" "$(ASTLOGDIR)/cdr-custom" \
549         "$(ASTLOGDIR)/cel-custom" "$(ASTDATADIR)" "$(ASTDATADIR)/documentation" \
550         "$(ASTDATADIR)/documentation/thirdparty" "$(ASTDATADIR)/firmware" \
551         "$(ASTDATADIR)/firmware/iax" "$(ASTDATADIR)/images" "$(ASTDATADIR)/keys" \
552         "$(ASTDATADIR)/phoneprov" "$(ASTDATADIR)/rest-api" "$(ASTDATADIR)/static-http" \
553         "$(ASTDATADIR)/sounds" "$(ASTDATADIR)/moh" "$(ASTMANDIR)/man8" "$(AGI_DIR)" "$(ASTDBDIR)"
554
555 installdirs:
556         @for i in $(INSTALLDIRS); do \
557                 if [ ! -z "$${i}" -a ! -d "$(DESTDIR)$${i}" ]; then \
558                         $(INSTALL) -d "$(DESTDIR)$${i}"; \
559                 fi; \
560         done
561
562 main-bininstall:
563         +@DESTDIR="$(DESTDIR)" ASTSBINDIR="$(ASTSBINDIR)" ASTLIBDIR="$(ASTLIBDIR)" $(SUBMAKE) -C main bininstall
564
565 bininstall: _all installdirs $(SUBDIRS_INSTALL) main-bininstall
566         $(INSTALL) -m 755 contrib/scripts/astgenkey "$(DESTDIR)$(ASTSBINDIR)/"
567         $(INSTALL) -m 755 contrib/scripts/autosupport "$(DESTDIR)$(ASTSBINDIR)/"
568         if [ ! -f "$(DESTDIR)$(ASTSBINDIR)/safe_asterisk" -a ! -f /sbin/launchd ]; then \
569                 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 ; \
570                 $(INSTALL) -m 755 contrib/scripts/safe.tmp "$(DESTDIR)$(ASTSBINDIR)/safe_asterisk" ; \
571                 rm -f contrib/scripts/safe.tmp ; \
572         fi
573         $(INSTALL) -m 644 include/asterisk.h "$(DESTDIR)$(includedir)"
574         $(INSTALL) -m 644 include/asterisk/*.h "$(DESTDIR)$(ASTHEADERDIR)"
575         $(INSTALL) -m 644 include/asterisk/doxygen/*.h "$(DESTDIR)$(ASTHEADERDIR)/doxygen"
576         if [ -n "$(OLDHEADERS)" ]; then \
577                 for h in $(OLDHEADERS); do rm -f "$(DESTDIR)$(ASTHEADERDIR)/$$h"; done \
578         fi
579
580         $(INSTALL) -m 644 doc/core-*.xml "$(DESTDIR)$(ASTDATADIR)/documentation"
581         $(INSTALL) -m 644 doc/appdocsxml.xslt "$(DESTDIR)$(ASTDATADIR)/documentation"
582         $(INSTALL) -m 644 doc/appdocsxml.dtd "$(DESTDIR)$(ASTDATADIR)/documentation"
583         $(INSTALL) -m 644 doc/asterisk.8 "$(DESTDIR)$(ASTMANDIR)/man8"
584         $(INSTALL) -m 644 doc/astdb*.8 "$(DESTDIR)$(ASTMANDIR)/man8"
585         $(INSTALL) -m 644 contrib/scripts/astgenkey.8 "$(DESTDIR)$(ASTMANDIR)/man8"
586         $(INSTALL) -m 644 contrib/scripts/autosupport.8 "$(DESTDIR)$(ASTMANDIR)/man8"
587         $(INSTALL) -m 644 contrib/scripts/safe_asterisk.8 "$(DESTDIR)$(ASTMANDIR)/man8"
588         if [ -f contrib/firmware/iax/iaxy.bin ] ; then \
589                 $(INSTALL) -m 644 contrib/firmware/iax/iaxy.bin "$(DESTDIR)$(ASTDATADIR)/firmware/iax/iaxy.bin"; \
590         fi
591
592 $(SUBDIRS_INSTALL):
593         +@DESTDIR="$(DESTDIR)" ASTSBINDIR="$(ASTSBINDIR)" $(SUBMAKE) -C $(@:-install=) install
594
595 NEWMODS:=$(foreach d,$(MOD_SUBDIRS),$(notdir $(wildcard $(d)/*.so)))
596 OLDMODS=$(filter-out $(NEWMODS) $(notdir $(DESTDIR)$(ASTMODDIR)),$(notdir $(wildcard $(DESTDIR)$(ASTMODDIR)/*.so)))
597
598 oldmodcheck:
599         @if [ -n "$(OLDMODS)" ]; then \
600                 echo " WARNING WARNING WARNING" ;\
601                 echo "" ;\
602                 echo " Your Asterisk modules directory, located at" ;\
603                 echo " $(DESTDIR)$(ASTMODDIR)" ;\
604                 echo " contains modules that were not installed by this " ;\
605                 echo " version of Asterisk. Please ensure that these" ;\
606                 echo " modules are compatible with this version before" ;\
607                 echo " attempting to run Asterisk." ;\
608                 echo "" ;\
609                 for f in $(OLDMODS); do \
610                         echo "    $$f" ;\
611                 done ;\
612                 echo "" ;\
613                 echo " WARNING WARNING WARNING" ;\
614         fi
615
616 badshell:
617 ifneq ($(findstring ~,$(DESTDIR)),)
618         @echo "Your shell doesn't do ~ expansion when expected (specifically, when doing \"make install DESTDIR=~/path\")."
619         @echo "Try replacing ~ with \$$HOME, as in \"make install DESTDIR=\$$HOME/path\"."
620         @exit 1
621 endif
622
623 install: badshell bininstall datafiles
624         @if [ -x /usr/sbin/asterisk-post-install ]; then \
625                 /usr/sbin/asterisk-post-install "$(DESTDIR)" . ; \
626         fi
627         @echo " +---- Asterisk Installation Complete -------+"
628         @echo " +                                           +"
629         @echo " +    YOU MUST READ THE SECURITY DOCUMENT    +"
630         @echo " +                                           +"
631         @echo " + Asterisk has successfully been installed. +"
632         @echo " + If you would like to install the sample   +"
633         @echo " + configuration files (overwriting any      +"
634         @echo " + existing config files), run:              +"
635         @echo " +                                           +"
636         @echo " +               $(mK) samples               +"
637         @echo " +                                           +"
638         @echo " +-----------------  or ---------------------+"
639         @echo " +                                           +"
640         @echo " + You can go ahead and install the asterisk +"
641         @echo " + program documentation now or later run:   +"
642         @echo " +                                           +"
643         @echo " +              $(mK) progdocs               +"
644         @echo " +                                           +"
645         @echo " + **Note** This requires that you have      +"
646         @echo " + doxygen installed on your local system    +"
647         @echo " +-------------------------------------------+"
648         @$(MAKE) -s oldmodcheck
649
650 isntall: install
651
652 upgrade: bininstall
653
654 # XXX why *.adsi is installed first ?
655 adsi:
656         @echo Installing adsi config files...
657         $(INSTALL) -d "$(DESTDIR)$(ASTETCDIR)"
658         @for x in configs/*.adsi; do \
659                 dst="$(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x`" ; \
660                 if [ -f "$${dst}" ] ; then \
661                         echo "Overwriting $$x" ; \
662                 else \
663                         echo "Installing $$x" ; \
664                 fi ; \
665                 $(INSTALL) -m 644 "$$x" "$(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x`" ; \
666         done
667
668 samples: adsi
669         @echo Installing other config files...
670         @for x in configs/*.sample; do \
671                 dst="$(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample`" ;        \
672                 if [ -f "$${dst}" ]; then \
673                         if [ "$(OVERWRITE)" = "y" ]; then \
674                                 if cmp -s "$${dst}" "$$x" ; then \
675                                         echo "Config file $$x is unchanged"; \
676                                         continue; \
677                                 fi ; \
678                                 mv -f "$${dst}" "$${dst}.old" ; \
679                         else \
680                                 echo "Skipping config file $$x"; \
681                                 continue; \
682                         fi ;\
683                 fi ; \
684                 echo "Installing file $$x"; \
685                 $(INSTALL) -m 644 "$$x" "$${dst}" ;\
686         done
687         if [ "$(OVERWRITE)" = "y" ]; then \
688                 echo "Updating asterisk.conf" ; \
689                 sed -e 's|^astetcdir.*$$|astetcdir => $(ASTETCDIR)|' \
690                         -e 's|^astmoddir.*$$|astmoddir => $(ASTMODDIR)|' \
691                         -e 's|^astvarlibdir.*$$|astvarlibdir => $(ASTVARLIBDIR)|' \
692                         -e 's|^astdbdir.*$$|astdbdir => $(ASTDBDIR)|' \
693                         -e 's|^astkeydir.*$$|astkeydir => $(ASTKEYDIR)|' \
694                         -e 's|^astdatadir.*$$|astdatadir => $(ASTDATADIR)|' \
695                         -e 's|^astagidir.*$$|astagidir => $(AGI_DIR)|' \
696                         -e 's|^astspooldir.*$$|astspooldir => $(ASTSPOOLDIR)|' \
697                         -e 's|^astrundir.*$$|astrundir => $(ASTVARRUNDIR)|' \
698                         -e 's|^astlogdir.*$$|astlogdir => $(ASTLOGDIR)|' \
699                         -e 's|^astsbindir.*$$|astsbindir => $(ASTSBINDIR)|' \
700                         "$(DESTDIR)$(ASTCONFPATH)" > "$(DESTDIR)$(ASTCONFPATH).tmp" ; \
701                 $(INSTALL) -m 644 "$(DESTDIR)$(ASTCONFPATH).tmp" "$(DESTDIR)$(ASTCONFPATH)" ; \
702                 rm -f "$(DESTDIR)$(ASTCONFPATH).tmp" ; \
703         fi ; \
704         $(INSTALL) -d "$(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/INBOX"
705         build_tools/make_sample_voicemail "$(DESTDIR)/$(ASTDATADIR)" "$(DESTDIR)/$(ASTSPOOLDIR)"
706
707         @for x in phoneprov/*; do \
708                 dst="$(DESTDIR)$(ASTDATADIR)/$$x" ;     \
709                 if [ -f "$${dst}" ]; then \
710                         if [ "$(OVERWRITE)" = "y" ]; then \
711                                 if cmp -s "$${dst}" "$$x" ; then \
712                                         echo "Config file $$x is unchanged"; \
713                                         continue; \
714                                 fi ; \
715                                 mv -f "$${dst}" "$${dst}.old" ; \
716                         else \
717                                 echo "Skipping config file $$x"; \
718                                 continue; \
719                         fi ;\
720                 fi ; \
721                 echo "Installing file $$x"; \
722                 $(INSTALL) -m 644 "$$x" "$${dst}" ;\
723         done
724
725 webvmail:
726         @[ -d "$(DESTDIR)$(HTTP_DOCSDIR)/" ] || ( printf "http docs directory not found.\nUpdate assignment of variable HTTP_DOCSDIR in Makefile!\n" && exit 1 )
727         @[ -d "$(DESTDIR)$(HTTP_CGIDIR)" ] || ( printf "cgi-bin directory not found.\nUpdate assignment of variable HTTP_CGIDIR in Makefile!\n" && exit 1 )
728         $(INSTALL) -m 4755 contrib/scripts/vmail.cgi "$(DESTDIR)$(HTTP_CGIDIR)/vmail.cgi"
729         $(INSTALL) -d "$(DESTDIR)$(HTTP_DOCSDIR)/_asterisk"
730         for x in images/*.gif; do \
731                 $(INSTALL) -m 644 $$x "$(DESTDIR)$(HTTP_DOCSDIR)/_asterisk/"; \
732         done
733         @echo " +--------- Asterisk Web Voicemail ----------+"
734         @echo " +                                           +"
735         @echo " + Asterisk Web Voicemail is installed in    +"
736         @echo " + your cgi-bin directory:                   +"
737         @echo " + $(DESTDIR)$(HTTP_CGIDIR)"
738         @echo " + IT USES A SETUID ROOT PERL SCRIPT, SO     +"
739         @echo " + IF YOU DON'T LIKE THAT, UNINSTALL IT!     +"
740         @echo " +                                           +"
741         @echo " + Other static items have been stored in:   +"
742         @echo " + $(DESTDIR)$(HTTP_DOCSDIR)"
743         @echo " +                                           +"
744         @echo " + If these paths do not match your httpd    +"
745         @echo " + installation, correct the definitions     +"
746         @echo " + in your Makefile of HTTP_CGIDIR and       +"
747         @echo " + HTTP_DOCSDIR                              +"
748         @echo " +                                           +"
749         @echo " +-------------------------------------------+"
750
751 progdocs:
752         # Note, Makefile conditionals must not be tabbed out. Wasted hours with that.
753 ifeq ($(DOXYGEN),:)
754         @echo "Doxygen is not installed.  Please install and re-run the configuration script."
755 else
756 ifeq ($(DOT),:)
757         @echo "DOT is not installed. Doxygen will not produce any diagrams. Please install and re-run the configuration script."
758 else
759         # Enable DOT
760         @echo "HAVE_DOT = YES" >> contrib/asterisk-ng-doxygen
761 endif
762         # Set Doxygen PROJECT_NUMBER variable
763 ifneq ($(ASTERISKVERSION),UNKNOWN__and_probably_unsupported)
764         @echo "PROJECT_NUMBER = $(ASTERISKVERSION)" >> contrib/asterisk-ng-doxygen
765 else
766         echo "Asterisk Version is unknown, not configuring Doxygen PROJECT_NUMBER."
767 endif
768         # Validate Doxygen Configuration
769         @doxygen -u contrib/asterisk-ng-doxygen
770         # Run Doxygen
771         @doxygen contrib/asterisk-ng-doxygen
772         # Remove configuration backup file
773         @rm -f contrib/asterisk-ng-doxygen.bak
774 endif
775
776 install-logrotate:
777         if [ ! -d "$(DESTDIR)$(ASTETCDIR)/../logrotate.d" ]; then \
778                 $(INSTALL) -d "$(DESTDIR)$(ASTETCDIR)/../logrotate.d" ; \
779         fi
780         sed 's#__LOGDIR__#$(ASTLOGDIR)#g' < contrib/scripts/asterisk.logrotate | sed 's#__SBINDIR__#$(ASTSBINDIR)#g' > contrib/scripts/asterisk.logrotate.tmp
781         $(INSTALL) -m 0644 contrib/scripts/asterisk.logrotate.tmp "$(DESTDIR)$(ASTETCDIR)/../logrotate.d/asterisk"
782         rm -f contrib/scripts/asterisk.logrotate.tmp
783
784 config:
785         @if [ "${OSARCH}" = "linux-gnu" ]; then \
786                 if [ -f /etc/redhat-release -o -f /etc/fedora-release ]; then \
787                         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 ; \
788                         $(INSTALL) -m 755 contrib/init.d/rc.asterisk.tmp "$(DESTDIR)/etc/rc.d/init.d/asterisk" ; \
789                         rm -f contrib/init.d/rc.asterisk.tmp ; \
790                         if [ ! -f "$(DESTDIR)/etc/sysconfig/asterisk" ] ; then \
791                                 $(INSTALL) -m 644 contrib/init.d/etc_default_asterisk "$(DESTDIR)/etc/sysconfig/asterisk" ; \
792                         fi ; \
793                         if [ -z "$(DESTDIR)" ] ; then \
794                                 /sbin/chkconfig --add asterisk ; \
795                         fi ; \
796                 elif [ -f /etc/debian_version ] ; then \
797                         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 ; \
798                         $(INSTALL) -m 755 contrib/init.d/rc.asterisk.tmp "$(DESTDIR)/etc/init.d/asterisk" ; \
799                         rm -f contrib/init.d/rc.asterisk.tmp ; \
800                         if [ ! -f "$(DESTDIR)/etc/default/asterisk" ] ; then \
801                                 $(INSTALL) -m 644 contrib/init.d/etc_default_asterisk "$(DESTDIR)/etc/default/asterisk" ; \
802                         fi ; \
803                         if [ -z "$(DESTDIR)" ] ; then \
804                                 /usr/sbin/update-rc.d asterisk defaults 50 91 ; \
805                         fi ; \
806                 elif [ -f /etc/gentoo-release ] ; then \
807                         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 ; \
808                         $(INSTALL) -m 755 contrib/init.d/rc.asterisk.tmp "$(DESTDIR)/etc/init.d/asterisk" ; \
809                         rm -f contrib/init.d/rc.asterisk.tmp ; \
810                         if [ -z "$(DESTDIR)" ] ; then \
811                                 /sbin/rc-update add asterisk default ; \
812                         fi ; \
813                 elif [ -f /etc/mandrake-release -o -f /etc/mandriva-release ] ; then \
814                         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 ; \
815                         $(INSTALL) -m 755 contrib/init.d/rc.asterisk.tmp "$(DESTDIR)/etc/rc.d/init.d/asterisk" ; \
816                         rm -f contrib/init.d/rc.asterisk.tmp ; \
817                         if [ ! -f /etc/sysconfig/asterisk ] ; then \
818                                 $(INSTALL) -m 644 contrib/init.d/etc_default_asterisk "$(DESTDIR)/etc/sysconfig/asterisk" ; \
819                         fi ; \
820                         if [ -z "$(DESTDIR)" ] ; then \
821                                 /sbin/chkconfig --add asterisk ; \
822                         fi ; \
823                 elif [ -f /etc/SuSE-release -o -f /etc/novell-release ] ; then \
824                         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 ; \
825                         $(INSTALL) -m 755 contrib/init.d/rc.asterisk.tmp "$(DESTDIR)/etc/init.d/asterisk" ;\
826                         rm -f contrib/init.d/rc.asterisk.tmp ; \
827                         if [ ! -f /etc/sysconfig/asterisk ] ; then \
828                                 $(INSTALL) -m 644 contrib/init.d/etc_default_asterisk "$(DESTDIR)/etc/sysconfig/asterisk" ; \
829                         fi ; \
830                         if [ -z "$(DESTDIR)" ] ; then \
831                                 /sbin/chkconfig --add asterisk ; \
832                         fi ; \
833                 elif [ -f /etc/arch-release -o -f /etc/arch-release ] ; then \
834                         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 ; \
835                         $(INSTALL) -m 755 contrib/init.d/rc.asterisk.tmp "$(DESTDIR)/etc/rc.d/asterisk" ; \
836                         rm -f contrib/init.d/rc.asterisk.tmp ; \
837                 elif [ -d "$(DESTDIR)/Library/LaunchDaemons" ]; then \
838                         if [ ! -f "$(DESTDIR)/Library/LaunchDaemons/org.asterisk.asterisk.plist" ]; then \
839                                 sed 's|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;' < contrib/init.d/org.asterisk.asterisk.plist > asterisk.plist ; \
840                                 $(INSTALL) -m 644 asterisk.plist "$(DESTDIR)/Library/LaunchDaemons/org.asterisk.asterisk.plist"; \
841                                 rm -f asterisk.plist; \
842                         fi; \
843                         if [ ! -f "$(DESTDIR)/Library/LaunchDaemons/org.asterisk.muted.plist" ]; then \
844                                 sed 's|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;' < contrib/init.d/org.asterisk.muted.plist > muted.plist ; \
845                                 $(INSTALL) -m 644 muted.plist "$(DESTDIR)/Library/LaunchDaemons/org.asterisk.muted.plist"; \
846                                 rm -f muted.plist; \
847                         fi; \
848                 elif [ -f /etc/slackware-version ]; then \
849                         echo "Slackware is not currently supported, although an init script does exist for it."; \
850                 else \
851                         echo "We could not install init scripts for your distribution." ; \
852                 fi \
853         else \
854                 echo "We could not install init scripts for your operating system." ; \
855         fi
856
857 sounds:
858         $(MAKE) -C sounds all
859
860 # If the cleancount has been changed, force a make clean.
861 # .cleancount is the global clean count, and .lastclean is the
862 # last clean count we had
863
864 .lastclean: .cleancount
865         @$(MAKE) clean
866         @[ -f "$(DESTDIR)$(ASTDBDIR)/astdb.sqlite3" ] || [ ! -f "$(DESTDIR)$(ASTDBDIR)/astdb" ] || [ ! -f menuselect.makeopts ] || grep -q MENUSELECT_UTILS=.*astdb2sqlite3 menuselect.makeopts || (sed -i.orig -e's/MENUSELECT_UTILS=\(.*\)/MENUSELECT_UTILS=\1 astdb2sqlite3/' menuselect.makeopts && echo "Updating menuselect.makeopts to include astdb2sqlite3" && echo "Original version backed up to menuselect.makeopts.orig")
867
868 $(SUBDIRS_UNINSTALL):
869         +@$(SUBMAKE) -C $(@:-uninstall=) uninstall
870
871 main-binuninstall:
872         +@DESTDIR="$(DESTDIR)" ASTSBINDIR="$(ASTSBINDIR)" ASTLIBDIR="$(ASTLIBDIR)" $(SUBMAKE) -C main binuninstall
873
874 _uninstall: $(SUBDIRS_UNINSTALL) main-binuninstall
875         rm -f "$(DESTDIR)$(ASTMODDIR)/"*
876         rm -f "$(DESTDIR)$(ASTSBINDIR)/astgenkey"
877         rm -f "$(DESTDIR)$(ASTSBINDIR)/autosupport"
878         rm -rf "$(DESTDIR)$(ASTHEADERDIR)"
879         rm -rf "$(DESTDIR)$(ASTDATADIR)/firmware"
880         rm -f "$(DESTDIR)$(ASTMANDIR)/man8/asterisk.8"
881         rm -f "$(DESTDIR)$(ASTMANDIR)/man8/astgenkey.8"
882         rm -f "$(DESTDIR)$(ASTMANDIR)/man8/autosupport.8"
883         rm -f "$(DESTDIR)$(ASTMANDIR)/man8/safe_asterisk.8"
884         $(MAKE) -C sounds uninstall
885
886 uninstall: _uninstall
887         @echo " +--------- Asterisk Uninstall Complete -----+"
888         @echo " + Asterisk binaries, sounds, man pages,     +"
889         @echo " + headers, modules, and firmware builds,    +"
890         @echo " + have all been uninstalled.                +"
891         @echo " +                                           +"
892         @echo " + To remove ALL traces of Asterisk,         +"
893         @echo " + including configuration, spool            +"
894         @echo " + directories, and logs, run the following  +"
895         @echo " + command:                                  +"
896         @echo " +                                           +"
897         @echo " +            $(mK) uninstall-all            +"
898         @echo " +-------------------------------------------+"
899
900 uninstall-all: _uninstall
901         rm -rf "$(DESTDIR)$(ASTMODDIR)"
902         rm -rf "$(DESTDIR)$(ASTVARLIBDIR)"
903         rm -rf "$(DESTDIR)$(ASTDATADIR)"
904         rm -rf "$(DESTDIR)$(ASTSPOOLDIR)"
905         rm -rf "$(DESTDIR)$(ASTETCDIR)"
906         rm -rf "$(DESTDIR)$(ASTLOGDIR)"
907
908 menuconfig: menuselect
909
910 cmenuconfig: cmenuselect
911
912 gmenuconfig: gmenuselect
913
914 nmenuconfig: nmenuselect
915
916 menuselect: menuselect/cmenuselect menuselect/nmenuselect menuselect/gmenuselect
917         @if [ -x menuselect/nmenuselect ]; then \
918                 $(MAKE) nmenuselect; \
919         elif [ -x menuselect/cmenuselect ]; then \
920                 $(MAKE) cmenuselect; \
921         elif [ -x menuselect/gmenuselect ]; then \
922                 $(MAKE) gmenuselect; \
923         else \
924                 echo "No menuselect user interface found. Install ncurses,"; \
925                 echo "newt or GTK libraries to build one and re-rerun"; \
926                 echo "'./configure' and 'make menuselect'."; \
927         fi
928
929 cmenuselect: menuselect/cmenuselect menuselect-tree menuselect.makeopts
930         -@menuselect/cmenuselect menuselect.makeopts && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
931
932 gmenuselect: menuselect/gmenuselect menuselect-tree menuselect.makeopts
933         -@menuselect/gmenuselect menuselect.makeopts && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
934
935 nmenuselect: menuselect/nmenuselect menuselect-tree menuselect.makeopts
936         -@menuselect/nmenuselect menuselect.makeopts && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
937
938 # options for make in menuselect/
939 MAKE_MENUSELECT=CC="$(BUILD_CC)" CXX="" LD="" AR="" RANLIB="" \
940                 CFLAGS="$(BUILD_CFLAGS)" LDFLAGS="$(BUILD_LDFLAGS)" \
941                 $(MAKE) -C menuselect CONFIGURE_SILENT="--silent"
942
943 menuselect/menuselect: menuselect/makeopts .lastclean
944         +$(MAKE_MENUSELECT) menuselect
945
946 menuselect/cmenuselect: menuselect/makeopts .lastclean
947         +$(MAKE_MENUSELECT) cmenuselect
948
949 menuselect/gmenuselect: menuselect/makeopts .lastclean
950         +$(MAKE_MENUSELECT) gmenuselect
951
952 menuselect/nmenuselect: menuselect/makeopts .lastclean
953         +$(MAKE_MENUSELECT) nmenuselect
954
955 menuselect/makeopts: makeopts .lastclean
956         +$(MAKE_MENUSELECT) makeopts
957
958 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
959         @echo "Generating input for menuselect ..."
960         @echo "<?xml version=\"1.0\"?>" > $@
961         @echo >> $@
962         @echo "<menu name=\"Asterisk Module and Build Option Selection\">" >> $@
963         +@for dir in $(sort $(filter-out main,$(MOD_SUBDIRS))); do $(SILENTMAKE) -C $${dir} SUBDIR=$${dir} moduleinfo >> $@; done
964         @cat build_tools/cflags.xml >> $@
965         +@for dir in $(sort $(filter-out main,$(MOD_SUBDIRS))); do $(SILENTMAKE) -C $${dir} SUBDIR=$${dir} makeopts >> $@; done
966         @if [ "${AST_DEVMODE}" = "yes" ]; then \
967                 cat build_tools/cflags-devmode.xml >> $@; \
968         fi
969         @cat utils/utils.xml >> $@
970         @cat agi/agi.xml >> $@
971         @cat build_tools/embed_modules.xml >> $@
972         @cat sounds/sounds.xml >> $@
973         @echo "</menu>" >> $@
974
975 # We don't want to require Python or Pystache for every build, so this is its
976 # own target.
977 ari-stubs:
978 ifeq ($(PYTHON),:)
979         @echo "--------------------------------------------------------------------------"
980         @echo "---        Please install python to build ARI stubs            ---"
981         @echo "--------------------------------------------------------------------------"
982         @false
983 else
984         $(PYTHON) rest-api-templates/make_ari_stubs.py \
985                 rest-api/resources.json .
986 endif
987
988 .PHONY: menuselect
989 .PHONY: main
990 .PHONY: sounds
991 .PHONY: clean
992 .PHONY: dist-clean
993 .PHONY: distclean
994 .PHONY: all
995 .PHONY: _all
996 .PHONY: full
997 .PHONY: _full
998 .PHONY: prereqs
999 .PHONY: uninstall
1000 .PHONY: _uninstall
1001 .PHONY: uninstall-all
1002 .PHONY: dont-optimize
1003 .PHONY: badshell
1004 .PHONY: installdirs
1005 .PHONY: validate-docs
1006 .PHONY: _clean
1007 .PHONY: ari-stubs
1008 .PHONY: $(SUBDIRS_INSTALL)
1009 .PHONY: $(SUBDIRS_DIST_CLEAN)
1010 .PHONY: $(SUBDIRS_CLEAN)
1011 .PHONY: $(SUBDIRS_UNINSTALL)
1012 .PHONY: $(SUBDIRS)
1013 .PHONY: $(MOD_SUBDIRS_EMBED_LDSCRIPT)
1014 .PHONY: $(MOD_SUBDIRS_EMBED_LDFLAGS)
1015 .PHONY: $(MOD_SUBDIRS_EMBED_LIBS)
1016
1017 FORCE:
1018