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