add an API so that translators can activate/deactivate themselves when needed
[asterisk-bristuff.git] / Makefile
blobd6198b750798859951c79ef156dadb4c55366b27
2 # Asterisk -- A telephony toolkit for Linux.
3 #
4 # Top level Makefile
6 # Copyright (C) 1999-2006, Digium, Inc.
8 # Mark Spencer <markster@digium.com>
10 # This program is free software, distributed under the terms of
11 # the GNU General Public License
14 # All Makefiles use the following variables:
16 # ASTCFLAGS - compiler options
17 # ASTLDFLAGS - linker flags (not libraries)
18 # AST_LIBS - libraries to build binaries XXX
19 # LIBS - additional libraries, at top-level for all links,
20 # on a single object just for that object
21 # SOLINK - linker flags used only for creating shared objects (.so files),
22 # used for all .so links
24 # Default values fo ASTCFLAGS and ASTLDFLAGS can be specified in the
25 # environment when running make, as follows:
27 # $ ASTCFLAGS="-Werror" make
29 export ASTTOPDIR
30 export ASTERISKVERSION
31 export ASTERISKVERSIONNUM
32 export INSTALL_PATH
33 export ASTETCDIR
34 export ASTVARRUNDIR
35 export MODULES_DIR
36 export ASTSPOOLDIR
37 export ASTVARLIBDIR
38 export ASTDATADIR
39 export ASTLOGDIR
40 export AGI_DIR
41 export ASTCONFPATH
42 export NOISY_BUILD
43 export MENUSELECT_CFLAGS
44 export CC
45 export CXX
46 export AR
47 export RANLIB
48 export HOST_CC
49 export STATIC_BUILD
50 export INSTALL
51 export DESTDIR
52 export PROC
53 export SOLINK
55 # even though we could use '-include makeopts' here, use a wildcard
56 # lookup anyway, so that make won't try to build makeopts if it doesn't
57 # exist (other rules will force it to be built if needed)
58 ifneq ($(wildcard makeopts),)
59 include makeopts
60 endif
62 #Uncomment this to see all build commands instead of 'quiet' output
63 #NOISY_BUILD=yes
65 # Create OPTIONS variable
66 OPTIONS=
68 ASTTOPDIR:=$(shell pwd)
70 # Overwite config files on "make samples"
71 OVERWRITE=y
73 # Include debug and macro symbols in the executables (-g) and profiling info (-pg)
74 DEBUG=-g3
76 # Staging directory
77 # Files are copied here temporarily during the install process
78 # For example, make DESTDIR=/tmp/asterisk woud put things in
79 # /tmp/asterisk/etc/asterisk
80 # !!! Watch out, put no spaces or comments after the value !!!
81 #DESTDIR?=/tmp/asterisk
83 # Define standard directories for various platforms
84 # These apply if they are not redefined in asterisk.conf
85 ifeq ($(OSARCH),SunOS)
86 ASTETCDIR=/var/etc/asterisk
87 ASTLIBDIR=/opt/asterisk/lib
88 ASTVARLIBDIR=/var/opt/asterisk
89 ASTSPOOLDIR=/var/spool/asterisk
90 ASTLOGDIR=/var/log/asterisk
91 ASTHEADERDIR=/opt/asterisk/include
92 ASTBINDIR=/opt/asterisk/bin
93 ASTSBINDIR=/opt/asterisk/sbin
94 ASTVARRUNDIR=/var/run/asterisk
95 ASTMANDIR=/opt/asterisk/man
96 else
97 ASTETCDIR=$(sysconfdir)/asterisk
98 ASTLIBDIR=$(libdir)/asterisk
99 ASTHEADERDIR=$(includedir)/asterisk
100 ASTBINDIR=$(bindir)
101 ASTSBINDIR=$(sbindir)
102 ASTSPOOLDIR=$(localstatedir)/spool/asterisk
103 ASTLOGDIR=$(localstatedir)/log/asterisk
104 ASTVARRUNDIR=$(localstatedir)/run
105 ASTMANDIR=$(mandir)
106 ifeq ($(OSARCH),FreeBSD)
107 ASTVARLIBDIR=$(prefix)/share/asterisk
108 else
109 ASTVARLIBDIR=$(localstatedir)/lib/asterisk
110 endif
111 endif
112 ifeq ($(ASTDATADIR),)
113 ASTDATADIR:=$(ASTVARLIBDIR)
114 endif
116 # Asterisk.conf is located in ASTETCDIR or by using the -C flag
117 # when starting Asterisk
118 ASTCONFPATH=$(ASTETCDIR)/asterisk.conf
119 MODULES_DIR=$(ASTLIBDIR)/modules
120 AGI_DIR=$(ASTDATADIR)/agi-bin
122 # If you use Apache, you may determine by a grep 'DocumentRoot' of your httpd.conf file
123 HTTP_DOCSDIR=/var/www/html
124 # Determine by a grep 'ScriptAlias' of your Apache httpd.conf file
125 HTTP_CGIDIR=/var/www/cgi-bin
127 # Uncomment this to use the older DSP routines
128 #ASTCFLAGS+=-DOLD_DSP_ROUTINES
130 # If the file .asterisk.makeopts is present in your home directory, you can
131 # include all of your favorite menuselect options so that every time you download
132 # a new version of Asterisk, you don't have to run menuselect to set them.
133 # The file /etc/asterisk.makeopts will also be included but can be overridden
134 # by the file in your home directory.
136 GLOBAL_MAKEOPTS=$(wildcard /etc/asterisk.makeopts)
137 USER_MAKEOPTS=$(wildcard ~/.asterisk.makeopts)
139 MOD_SUBDIR_CFLAGS=-I$(ASTTOPDIR)/include
140 OTHER_SUBDIR_CFLAGS=-I$(ASTTOPDIR)/include
142 ifeq ($(OSARCH),linux-gnu)
143 ifeq ($(PROC),x86_64)
144 # You must have GCC 3.4 to use k8, otherwise use athlon
145 PROC=k8
146 #PROC=athlon
147 endif
149 ifeq ($(PROC),sparc64)
150 #The problem with sparc is the best stuff is in newer versions of gcc (post 3.0) only.
151 #This works for even old (2.96) versions of gcc and provides a small boost either way.
152 #A ultrasparc cpu is really v9 but the stock debian stable 3.0 gcc doesn't support it.
153 #So we go lowest common available by gcc and go a step down, still a step up from
154 #the default as we now have a better instruction set to work with. - Belgarath
155 PROC=ultrasparc
156 OPTIONS+=$(shell if $(CC) -mtune=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mtune=$(PROC)"; fi)
157 OPTIONS+=$(shell if $(CC) -mcpu=v8 -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-mcpu=v8"; fi)
158 OPTIONS+=-fomit-frame-pointer
159 endif
161 ifeq ($(PROC),arm)
162 # The Cirrus logic is the only heavily shipping arm processor with a real floating point unit
163 ifeq ($(SUB_PROC),maverick)
164 OPTIONS+=-fsigned-char -mcpu=ep9312
165 else
166 ifeq ($(SUB_PROC),xscale)
167 OPTIONS+=-fsigned-char -mcpu=xscale
168 else
169 OPTIONS+=-fsigned-char
170 endif
171 endif
172 endif
173 endif
175 ASTCFLAGS+=-pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations $(DEBUG)
177 ifeq ($(AST_DEVMODE),yes)
178 ASTCFLAGS+=-Werror -Wunused
179 endif
181 ifneq ($(findstring BSD,$(OSARCH)),)
182 ASTCFLAGS+=-I/usr/local/include
183 ASTLDFLAGS+=-L/usr/local/lib
184 endif
186 ifneq ($(PROC),ultrasparc)
187 ASTCFLAGS+=$(shell if $(CC) -march=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo "-march=$(PROC)"; fi)
188 endif
190 ifeq ($(PROC),ppc)
191 ASTCFLAGS+=-fsigned-char
192 endif
194 ifeq ($(OSARCH),FreeBSD)
195 # -V is understood by BSD Make, not by GNU make.
196 BSDVERSION=$(shell make -V OSVERSION -f /usr/share/mk/bsd.port.subdir.mk)
197 ASTCFLAGS+=$(shell if test $(BSDVERSION) -lt 500016 ; then echo "-D_THREAD_SAFE"; fi)
198 AST_LIBS+=$(shell if test $(BSDVERSION) -lt 502102 ; then echo "-lc_r"; else echo "-pthread"; fi)
199 endif
201 ifeq ($(OSARCH),NetBSD)
202 ASTCFLAGS+=-pthread -I/usr/pkg/include
203 endif
205 ifeq ($(OSARCH),OpenBSD)
206 ASTCFLAGS+=-pthread
207 endif
209 ifeq ($(OSARCH),SunOS)
210 ASTCFLAGS+=-Wcast-align -DSOLARIS -I../include/solaris-compat -I/opt/ssl/include -I/usr/local/ssl/include
211 endif
213 ASTERISKVERSION:=$(shell build_tools/make_version .)
215 ifneq ($(wildcard .version),)
216 ASTERISKVERSIONNUM:=$(shell awk -F. '{printf "%02d%02d%02d", $$1, $$2, $$3}' .version)
217 RPMVERSION:=$(shell sed 's/[-\/:]/_/g' .version)
218 else
219 RPMVERSION=unknown
220 endif
222 ifneq ($(wildcard .svn),)
223 ASTERISKVERSIONNUM=999999
224 endif
226 ASTCFLAGS+=$(MALLOC_DEBUG)$(BUSYDETECT)$(OPTIONS)
228 MOD_SUBDIRS:=res channels pbx apps codecs formats cdr funcs main
229 OTHER_SUBDIRS:=utils agi
230 SUBDIRS:=$(OTHER_SUBDIRS) $(MOD_SUBDIRS)
231 SUBDIRS_INSTALL:=$(SUBDIRS:%=%-install)
232 SUBDIRS_CLEAN:=$(SUBDIRS:%=%-clean)
233 SUBDIRS_CLEAN_DEPEND:=$(SUBDIRS:%=%-clean-depend)
234 MOD_SUBDIRS_DEPEND:=$(MOD_SUBDIRS:%=%-depend)
235 OTHER_SUBDIRS_DEPEND:=$(OTHER_SUBDIRS:%=%-depend)
236 SUBDIRS_DEPEND:=$(OTHER_SUBDIRS_DEPEND) $(MOD_SUBDIRS_DEPEND)
237 SUBDIRS_UNINSTALL:=$(SUBDIRS:%=%-uninstall)
238 MOD_SUBDIRS_EMBED_LDSCRIPT:=$(MOD_SUBDIRS:%=%-embed-ldscript)
239 MOD_SUBDIRS_EMBED_LDFLAGS:=$(MOD_SUBDIRS:%=%-embed-ldflags)
240 MOD_SUBDIRS_EMBED_LIBS:=$(MOD_SUBDIRS:%=%-embed-libs)
242 ifneq ($(findstring darwin,$(OSARCH)),)
243 ASTCFLAGS+=-D__Darwin__
244 AUDIO_LIBS=-framework CoreAudio
245 SOLINK=-dynamic -bundle -undefined suppress -force_flat_namespace
246 else
247 # These are used for all but Darwin
248 SOLINK=-shared -Xlinker -x
249 ifneq ($(findstring BSD,$(OSARCH)),)
250 LDFLAGS+=-L/usr/local/lib
251 endif
252 endif
254 ifeq ($(OSARCH),SunOS)
255 SOLINK=-shared -fpic -L/usr/local/ssl/lib
256 endif
258 # This is used when generating the doxygen documentation
259 ifneq ($(DOT),:)
260 HAVEDOT=yes
261 else
262 HAVEDOT=no
263 endif
265 all: _all
266 @echo " +--------- Asterisk Build Complete ---------+"
267 @echo " + Asterisk has successfully been built, and +"
268 @echo " + can be installed by running: +"
269 @echo " + +"
270 @echo " + make install +"
271 @echo " +-------------------------------------------+"
273 _all: cleantest $(SUBDIRS)
275 makeopts: configure
276 @echo "****"
277 @echo "**** The configure script must be executed before running 'make'."
278 @echo "****"
279 @exit 1
281 menuselect.makeopts: menuselect/menuselect menuselect-tree
282 menuselect/menuselect --check-deps $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) menuselect.makeopts
284 $(MOD_SUBDIRS_EMBED_LDSCRIPT):
285 @echo "EMBED_LDSCRIPTS+="`$(MAKE) --quiet --no-print-directory -C $(@:-embed-ldscript=) SUBDIR=$(@:-embed-ldscript=) __embed_ldscript` >> makeopts.embed_rules
287 $(MOD_SUBDIRS_EMBED_LDFLAGS):
288 @echo "EMBED_LDFLAGS+="`$(MAKE) --quiet --no-print-directory -C $(@:-embed-ldflags=) SUBDIR=$(@:-embed-ldflags=) __embed_ldflags` >> makeopts.embed_rules
290 $(MOD_SUBDIRS_EMBED_LIBS):
291 @echo "EMBED_LIBS+="`$(MAKE) --quiet --no-print-directory -C $(@:-embed-libs=) SUBDIR=$(@:-embed-libs=) __embed_libs` >> makeopts.embed_rules
293 makeopts.embed_rules: menuselect.makeopts
294 @echo "Generating embedded module rules ..."
295 @rm -f $@
296 @$(MAKE) --no-print-directory $(MOD_SUBDIRS_EMBED_LDSCRIPT)
297 @$(MAKE) --no-print-directory $(MOD_SUBDIRS_EMBED_LDFLAGS)
298 @$(MAKE) --no-print-directory $(MOD_SUBDIRS_EMBED_LIBS)
300 $(SUBDIRS): depend makeopts.embed_rules
302 # ensure that all module subdirectories are processed before 'main' during
303 # a parallel build, since if there are modules selected to be embedded the
304 # directories containing them must be completed before the main Asterisk
305 # binary can be built
306 main: $(filter-out main,$(MOD_SUBDIRS))
308 $(MOD_SUBDIRS):
309 @ASTCFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" AST_LIBS="$(AST_LIBS)" $(MAKE) --no-print-directory -C $@ SUBDIR=$@ all
311 $(OTHER_SUBDIRS):
312 @ASTCFLAGS="$(OTHER_SUBDIR_CFLAGS) $(ASTCFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" AUDIO_LIBS="$(AUDIO_LIBS)" $(MAKE) --no-print-directory -C $@ SUBDIR=$@ all
314 defaults.h: makeopts
315 @build_tools/make_defaults_h > $@.tmp
316 @if cmp -s $@.tmp $@ ; then : ; else \
317 mv $@.tmp $@ ; \
319 @rm -f $@.tmp
321 include/asterisk/version.h:
322 @build_tools/make_version_h > $@.tmp
323 @if cmp -s $@.tmp $@ ; then : ; else \
324 mv $@.tmp $@ ; \
326 @rm -f $@.tmp
328 include/asterisk/buildopts.h: menuselect.makeopts
329 @build_tools/make_buildopts_h > $@.tmp
330 @if cmp -s $@.tmp $@ ; then : ; else \
331 mv $@.tmp $@ ; \
333 @rm -f $@.tmp
335 $(SUBDIRS_CLEAN_DEPEND):
336 @$(MAKE) --no-print-directory -C $(@:-clean-depend=) clean-depend
338 $(SUBDIRS_CLEAN):
339 @$(MAKE) --no-print-directory -C $(@:-clean=) clean
341 clean-depend: $(SUBDIRS_CLEAN_DEPEND)
343 clean: $(SUBDIRS_CLEAN) clean-depend
344 rm -f defaults.h
345 rm -f include/asterisk/build.h
346 rm -f include/asterisk/version.h
347 rm -f .depend
348 @$(MAKE) -C menuselect clean
349 cp -f .cleancount .lastclean
351 dist-clean: distclean
353 distclean: clean
354 @$(MAKE) -C menuselect dist-clean
355 @$(MAKE) -C sounds dist-clean
356 rm -f menuselect.makeopts makeopts menuselect-tree menuselect.makedeps
357 rm -f makeopts.embed_rules
358 rm -f config.log config.status
359 rm -rf autom4te.cache
360 rm -f include/asterisk/autoconfig.h
361 rm -f include/asterisk/buildopts.h
362 rm -rf doc/api
363 rm -f build_tools/menuselect-deps
365 datafiles: _all
366 if [ x`$(ID) -un` = xroot ]; then CFLAGS="$(ASTCFLAGS)" sh build_tools/mkpkgconfig $(DESTDIR)/usr/lib/pkgconfig; fi
367 # Should static HTTP be installed during make samples or even with its own target ala
368 # webvoicemail? There are portions here that *could* be customized but might also be
369 # improved a lot. I'll put it here for now.
370 mkdir -p $(DESTDIR)$(ASTDATADIR)/static-http
371 for x in static-http/*; do \
372 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTDATADIR)/static-http ; \
373 done
374 mkdir -p $(DESTDIR)$(ASTDATADIR)/images
375 for x in images/*.jpg; do \
376 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTDATADIR)/images ; \
377 done
378 mkdir -p $(DESTDIR)$(AGI_DIR)
379 $(MAKE) -C sounds install
381 update:
382 @if [ -d .svn ]; then \
383 echo "Updating from Subversion..." ; \
384 svn update | tee update.out; \
385 rm -f .version; \
386 if [ `grep -c ^C update.out` -gt 0 ]; then \
387 echo ; echo "The following files have conflicts:" ; \
388 grep ^C update.out | cut -b4- ; \
389 fi ; \
390 rm -f update.out; \
391 $(MAKE) clean-depend; \
392 else \
393 echo "Not under version control"; \
396 NEWHEADERS=$(notdir $(wildcard include/asterisk/*.h))
397 OLDHEADERS=$(filter-out $(NEWHEADERS),$(notdir $(wildcard $(DESTDIR)$(ASTHEADERDIR)/*.h)))
399 bininstall: _all
400 mkdir -p $(DESTDIR)$(MODULES_DIR)
401 mkdir -p $(DESTDIR)$(ASTSBINDIR)
402 mkdir -p $(DESTDIR)$(ASTETCDIR)
403 mkdir -p $(DESTDIR)$(ASTBINDIR)
404 mkdir -p $(DESTDIR)$(ASTVARRUNDIR)
405 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/voicemail
406 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/dictate
407 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/system
408 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/tmp
409 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/meetme
410 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/monitor
411 $(INSTALL) -m 755 main/asterisk $(DESTDIR)$(ASTSBINDIR)/
412 $(LN) -sf asterisk $(DESTDIR)$(ASTSBINDIR)/rasterisk
413 $(INSTALL) -m 755 contrib/scripts/astgenkey $(DESTDIR)$(ASTSBINDIR)/
414 $(INSTALL) -m 755 contrib/scripts/autosupport $(DESTDIR)$(ASTSBINDIR)/
415 if [ ! -f $(DESTDIR)$(ASTSBINDIR)/safe_asterisk ]; then \
416 cat contrib/scripts/safe_asterisk | sed 's|__ASTERISK_SBIN_DIR__|$(ASTSBINDIR)|;' > $(DESTDIR)$(ASTSBINDIR)/safe_asterisk ;\
417 chmod 755 $(DESTDIR)$(ASTSBINDIR)/safe_asterisk;\
419 $(INSTALL) -d $(DESTDIR)$(ASTHEADERDIR)
420 $(INSTALL) -m 644 include/asterisk.h $(DESTDIR)$(includedir)
421 $(INSTALL) -m 644 include/asterisk/*.h $(DESTDIR)$(ASTHEADERDIR)
422 if [ -n "$(OLDHEADERS)" ]; then \
423 rm -f $(addprefix $(DESTDIR)$(ASTHEADERDIR)/,$(OLDHEADERS)) ;\
425 mkdir -p $(DESTDIR)$(ASTLOGDIR)/cdr-csv
426 mkdir -p $(DESTDIR)$(ASTLOGDIR)/cdr-custom
427 mkdir -p $(DESTDIR)$(ASTDATADIR)/keys
428 mkdir -p $(DESTDIR)$(ASTDATADIR)/firmware
429 mkdir -p $(DESTDIR)$(ASTDATADIR)/firmware/iax
430 mkdir -p $(DESTDIR)$(ASTMANDIR)/man8
431 $(INSTALL) -m 644 keys/iaxtel.pub $(DESTDIR)$(ASTDATADIR)/keys
432 $(INSTALL) -m 644 keys/freeworlddialup.pub $(DESTDIR)$(ASTDATADIR)/keys
433 $(INSTALL) -m 644 doc/asterisk.8 $(DESTDIR)$(ASTMANDIR)/man8
434 $(INSTALL) -m 644 contrib/scripts/astgenkey.8 $(DESTDIR)$(ASTMANDIR)/man8
435 $(INSTALL) -m 644 contrib/scripts/autosupport.8 $(DESTDIR)$(ASTMANDIR)/man8
436 $(INSTALL) -m 644 contrib/scripts/safe_asterisk.8 $(DESTDIR)$(ASTMANDIR)/man8
437 if [ -f contrib/firmware/iax/iaxy.bin ] ; then \
438 $(INSTALL) -m 644 contrib/firmware/iax/iaxy.bin $(DESTDIR)$(ASTDATADIR)/firmware/iax/iaxy.bin; \
441 $(SUBDIRS_INSTALL):
442 @DESTDIR="$(DESTDIR)" ASTSBINDIR="$(ASTSBINDIR)" $(MAKE) -C $(@:-install=) install
444 NEWMODS=$(notdir $(wildcard */*.so))
445 OLDMODS=$(filter-out $(NEWMODS),$(notdir $(wildcard $(DESTDIR)$(MODULES_DIR)/*.so)))
447 oldmodcheck:
448 @if [ -n "$(OLDMODS)" ]; then \
449 echo " WARNING WARNING WARNING" ;\
450 echo "" ;\
451 echo " Your Asterisk modules directory, located at" ;\
452 echo " $(DESTDIR)$(MODULES_DIR)" ;\
453 echo " contains modules that were not installed by this " ;\
454 echo " version of Asterisk. Please ensure that these" ;\
455 echo " modules are compatible with this version before" ;\
456 echo " attempting to run Asterisk." ;\
457 echo "" ;\
458 for f in $(OLDMODS); do \
459 echo " $$f" ;\
460 done ;\
461 echo "" ;\
462 echo " WARNING WARNING WARNING" ;\
465 install: datafiles bininstall $(SUBDIRS_INSTALL)
466 @if [ -x /usr/sbin/asterisk-post-install ]; then \
467 /usr/sbin/asterisk-post-install $(DESTDIR) . ; \
469 @echo " +---- Asterisk Installation Complete -------+"
470 @echo " + +"
471 @echo " + YOU MUST READ THE SECURITY DOCUMENT +"
472 @echo " + +"
473 @echo " + Asterisk has successfully been installed. +"
474 @echo " + If you would like to install the sample +"
475 @echo " + configuration files (overwriting any +"
476 @echo " + existing config files), run: +"
477 @echo " + +"
478 @echo " + $(MAKE) samples +"
479 @echo " + +"
480 @echo " +----------------- or ---------------------+"
481 @echo " + +"
482 @echo " + You can go ahead and install the asterisk +"
483 @echo " + program documentation now or later run: +"
484 @echo " + +"
485 @echo " + $(MAKE) progdocs +"
486 @echo " + +"
487 @echo " + **Note** This requires that you have +"
488 @echo " + doxygen installed on your local system +"
489 @echo " +-------------------------------------------+"
490 @$(MAKE) -s oldmodcheck
492 upgrade: bininstall
494 adsi:
495 mkdir -p $(DESTDIR)$(ASTETCDIR)
496 for x in configs/*.adsi; do \
497 if [ ! -f $(DESTDIR)$(ASTETCDIR)/$$x ]; then \
498 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x` ; \
499 fi ; \
500 done
502 samples: adsi
503 mkdir -p $(DESTDIR)$(ASTETCDIR)
504 for x in configs/*.sample; do \
505 if [ -f $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` ]; then \
506 if [ "$(OVERWRITE)" = "y" ]; then \
507 if cmp -s $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` $$x ; then \
508 echo "Config file $$x is unchanged"; \
509 continue; \
510 fi ; \
511 mv -f $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample`.old ; \
512 else \
513 echo "Skipping config file $$x"; \
514 continue; \
515 fi ;\
516 fi ; \
517 $(INSTALL) -m 644 $$x $(DESTDIR)$(ASTETCDIR)/`$(BASENAME) $$x .sample` ;\
518 done
519 if [ "$(OVERWRITE)" = "y" ] || [ ! -f $(DESTDIR)$(ASTCONFPATH) ]; then \
521 echo "[directories]" ; \
522 echo "astetcdir => $(ASTETCDIR)" ; \
523 echo "astmoddir => $(MODULES_DIR)" ; \
524 echo "astvarlibdir => $(ASTVARLIBDIR)" ; \
525 echo "astdatadir => $(ASTDATADIR)" ; \
526 echo "astagidir => $(AGI_DIR)" ; \
527 echo "astspooldir => $(ASTSPOOLDIR)" ; \
528 echo "astrundir => $(ASTVARRUNDIR)" ; \
529 echo "astlogdir => $(ASTLOGDIR)" ; \
530 echo "" ; \
531 echo "; Changing the following lines may compromise your security." ; \
532 echo ";[files]" ; \
533 echo ";astctlpermissions = 0660" ; \
534 echo ";astctlowner = root" ; \
535 echo ";astctlgroup = apache" ; \
536 echo ";astctl = asterisk.ctl" ; \
537 echo ";[options]" ; \
538 echo ";internal_timing = yes" ; \
539 ) > $(DESTDIR)$(ASTCONFPATH) ; \
540 else \
541 echo "Skipping asterisk.conf creation"; \
543 mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/INBOX
544 :> $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/unavail.gsm
545 for x in vm-theperson digits/1 digits/2 digits/3 digits/4 vm-isunavail; do \
546 cat $(DESTDIR)$(ASTDATADIR)/sounds/$$x.gsm >> $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/unavail.gsm ; \
547 done
548 :> $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/busy.gsm
549 for x in vm-theperson digits/1 digits/2 digits/3 digits/4 vm-isonphone; do \
550 cat $(DESTDIR)$(ASTDATADIR)/sounds/$$x.gsm >> $(DESTDIR)$(ASTSPOOLDIR)/voicemail/default/1234/busy.gsm ; \
551 done
553 webvmail:
554 @[ -d $(DESTDIR)$(HTTP_DOCSDIR)/ ] || ( printf "http docs directory not found.\nUpdate assignment of variable HTTP_DOCSDIR in Makefile!\n" && exit 1 )
555 @[ -d $(DESTDIR)$(HTTP_CGIDIR) ] || ( printf "cgi-bin directory not found.\nUpdate assignment of variable HTTP_CGIDIR in Makefile!\n" && exit 1 )
556 $(INSTALL) -m 4755 -o root -g root contrib/scripts/vmail.cgi $(DESTDIR)$(HTTP_CGIDIR)/vmail.cgi
557 mkdir -p $(DESTDIR)$(HTTP_DOCSDIR)/_asterisk
558 for x in images/*.gif; do \
559 $(INSTALL) -m 644 $$x $(DESTDIR)$(HTTP_DOCSDIR)/_asterisk/; \
560 done
561 @echo " +--------- Asterisk Web Voicemail ----------+"
562 @echo " + +"
563 @echo " + Asterisk Web Voicemail is installed in +"
564 @echo " + your cgi-bin directory: +"
565 @echo " + $(DESTDIR)$(HTTP_CGIDIR)"
566 @echo " + IT USES A SETUID ROOT PERL SCRIPT, SO +"
567 @echo " + IF YOU DON'T LIKE THAT, UNINSTALL IT! +"
568 @echo " + +"
569 @echo " + Other static items have been stored in: +"
570 @echo " + $(DESTDIR)$(HTTP_DOCSDIR)"
571 @echo " + +"
572 @echo " + If these paths do not match your httpd +"
573 @echo " + installation, correct the definitions +"
574 @echo " + in your Makefile of HTTP_CGIDIR and +"
575 @echo " + HTTP_DOCSDIR +"
576 @echo " + +"
577 @echo " +-------------------------------------------+"
579 spec:
580 sed "s/^Version:.*/Version: $(RPMVERSION)/g" redhat/asterisk.spec > asterisk.spec ; \
582 rpm: __rpm
584 __rpm: include/asterisk/version.h include/asterisk/buildopts.h spec
585 rm -rf /tmp/asterisk ; \
586 mkdir -p /tmp/asterisk/redhat/RPMS/i386 ; \
587 $(MAKE) DESTDIR=/tmp/asterisk install ; \
588 $(MAKE) DESTDIR=/tmp/asterisk samples ; \
589 mkdir -p /tmp/asterisk/etc/rc.d/init.d ; \
590 cp -f contrib/init.d/rc.redhat.asterisk /tmp/asterisk/etc/rc.d/init.d/asterisk ; \
591 rpmbuild --rcfile /usr/lib/rpm/rpmrc:redhat/rpmrc -bb asterisk.spec
593 progdocs:
594 (cat contrib/asterisk-ng-doxygen; echo "HAVE_DOT=$(HAVEDOT)"; \
595 echo "PROJECT_NUMBER=$(ASTERISKVERSION)") | doxygen -
597 config:
598 @if [ "${OSARCH}" = "linux-gnu" ]; then \
599 if [ -f /etc/redhat-release -o -f /etc/fedora-release ]; then \
600 $(INSTALL) -m 755 contrib/init.d/rc.redhat.asterisk /etc/rc.d/init.d/asterisk; \
601 /sbin/chkconfig --add asterisk; \
602 elif [ -f /etc/debian_version ]; then \
603 $(INSTALL) -m 755 contrib/init.d/rc.debian.asterisk /etc/init.d/asterisk; \
604 /usr/sbin/update-rc.d asterisk start 10 2 3 4 5 . stop 91 2 3 4 5 .; \
605 elif [ -f /etc/gentoo-release ]; then \
606 $(INSTALL) -m 755 contrib/init.d/rc.gentoo.asterisk /etc/init.d/asterisk; \
607 /sbin/rc-update add asterisk default; \
608 elif [ -f /etc/mandrake-release ]; then \
609 $(INSTALL) -m 755 contrib/init.d/rc.mandrake.asterisk /etc/rc.d/init.d/asterisk; \
610 /sbin/chkconfig --add asterisk; \
611 elif [ -f /etc/SuSE-release -o -f /etc/novell-release ]; then \
612 $(INSTALL) -m 755 contrib/init.d/rc.suse.asterisk /etc/init.d/asterisk; \
613 /sbin/chkconfig --add asterisk; \
614 elif [ -f /etc/slackware-version ]; then \
615 echo "Slackware is not currently supported, although an init script does exist for it." \
616 else \
617 echo "We could not install init scripts for your distribution."; \
618 fi \
619 else \
620 echo "We could not install init scripts for your operating system."; \
623 $(MOD_SUBDIRS_DEPEND):
624 @ASTCFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" $(MAKE) --no-print-directory -C $(@:-depend=) depend
626 $(OTHER_SUBDIRS_DEPEND):
627 @ASTCFLAGS="$(OTHER_SUBDIR_CFLAGS) $(ASTCFLAGS)" $(MAKE) --no-print-directory -C $(@:-depend=) depend
629 depend: include/asterisk/version.h include/asterisk/buildopts.h defaults.h $(SUBDIRS_DEPEND)
631 sounds:
632 $(MAKE) -C sounds all
634 # If the cleancount has been changed, force a make clean.
635 # .cleancount is the global clean count, and .lastclean is the
636 # last clean count we had
638 cleantest:
639 @if ! cmp -s .cleancount .lastclean ; then \
640 $(MAKE) clean;\
643 $(SUBDIRS_UNINSTALL):
644 @$(MAKE) --no-print-directory -C $(@:-uninstall=) uninstall
646 _uninstall: $(SUBDIRS_UNINSTALL)
647 rm -f $(DESTDIR)$(MODULES_DIR)/*
648 rm -f $(DESTDIR)$(ASTSBINDIR)/*asterisk*
649 rm -f $(DESTDIR)$(ASTSBINDIR)/astgenkey
650 rm -f $(DESTDIR)$(ASTSBINDIR)/autosupport
651 rm -rf $(DESTDIR)$(ASTHEADERDIR)
652 rm -rf $(DESTDIR)$(ASTDATADIR)/firmware
653 rm -rf $(DESTDIR)$(ASTMANDIR)/man8
654 $(MAKE) -C sounds uninstall
656 uninstall: _uninstall
657 @echo " +--------- Asterisk Uninstall Complete -----+"
658 @echo " + Asterisk binaries, sounds, man pages, +"
659 @echo " + headers, modules, and firmware builds, +"
660 @echo " + have all been uninstalled. +"
661 @echo " + +"
662 @echo " + To remove ALL traces of Asterisk, +"
663 @echo " + including configuration, spool +"
664 @echo " + directories, and logs, run the following +"
665 @echo " + command: +"
666 @echo " + +"
667 @echo " + $(MAKE) uninstall-all +"
668 @echo " +-------------------------------------------+"
670 uninstall-all: _uninstall
671 rm -rf $(DESTDIR)$(ASTLIBDIR)
672 rm -rf $(DESTDIR)$(ASTVARLIBDIR)
673 rm -rf $(DESTDIR)$(ASTDATADIR)
674 rm -rf $(DESTDIR)$(ASTSPOOLDIR)
675 rm -rf $(DESTDIR)$(ASTETCDIR)
676 rm -rf $(DESTDIR)$(ASTLOGDIR)
678 menuselect: menuselect/menuselect menuselect-tree
679 -@menuselect/menuselect $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) menuselect.makeopts && (echo "menuselect changes saved!"; rm -f channels/h323/Makefile.ast main/asterisk) || echo "menuselect changes NOT saved!"
681 menuselect/menuselect: makeopts menuselect/menuselect.c menuselect/menuselect_curses.c menuselect/menuselect_stub.c menuselect/menuselect.h menuselect/linkedlists.h makeopts
682 @unset CC LD AR RANLIB && $(MAKE) -C menuselect CONFIGURE_SILENT="--silent"
684 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
685 @echo "Generating input for menuselect ..."
686 @build_tools/prep_moduledeps > $@
688 .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)