|
|
|
@ -59,9 +59,6 @@ OVERWRITE=y
|
|
|
|
|
# Include debug and macro symbols in the executables (-g) and profiling info (-pg)
|
|
|
|
|
DEBUG=-g3
|
|
|
|
|
|
|
|
|
|
# Asterisk SMDI integration
|
|
|
|
|
WITH_SMDI=1
|
|
|
|
|
|
|
|
|
|
# Staging directory
|
|
|
|
|
# Files are copied here temporarily during the install process
|
|
|
|
|
# For example, make DESTDIR=/tmp/asterisk woud put things in
|
|
|
|
@ -365,7 +362,7 @@ ifeq ($(OSARCH),SunOS)
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifeq ($(MAKETOPLEVEL),$(MAKELEVEL))
|
|
|
|
|
CFLAGS+=$(TOPDIR_CFLAGS) $(ASTCFLAGS)
|
|
|
|
|
CFLAGS+=$(TOPDIR_CFLAGS)$(ASTCFLAGS)
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
# This is used when generating the doxygen documentation
|
|
|
|
@ -487,7 +484,7 @@ include/asterisk/buildopts.h: menuselect.makeopts
|
|
|
|
|
@rm -f $@.tmp
|
|
|
|
|
|
|
|
|
|
stdtime/libtime.a:
|
|
|
|
|
CFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" $(MAKE) -C stdtime libtime.a
|
|
|
|
|
CFLAGS="$(MOD_SUBDIR_CFLAGS)$(ASTCFLAGS)" $(MAKE) -C stdtime libtime.a
|
|
|
|
|
|
|
|
|
|
asterisk: include/asterisk/buildopts.h editline/libedit.a db1-ast/libdb1.a stdtime/libtime.a $(OBJS)
|
|
|
|
|
build_tools/make_build_h > include/asterisk/build.h.tmp
|
|
|
|
@ -502,9 +499,9 @@ muted: muted.o
|
|
|
|
|
$(CC) $(AUDIO_LIBS) -o muted muted.o
|
|
|
|
|
|
|
|
|
|
subdirs:
|
|
|
|
|
@for x in $(MOD_SUBDIRS); do CFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" $(MAKE) -C $$x || exit 1 ; done
|
|
|
|
|
@CFLAGS="$(OTHER_SUBDIR_CFLAGS) $(ASTCFLAGS)" $(MAKE) -C utils
|
|
|
|
|
@CFLAGS="$(OTHER_SUBDIR_CFLAGS) $(ASTCFLAGS)" $(MAKE) -C agi
|
|
|
|
|
@for x in $(MOD_SUBDIRS); do CFLAGS="$(MOD_SUBDIR_CFLAGS)$(ASTCFLAGS)" $(MAKE) -C $$x || exit 1 ; done
|
|
|
|
|
@CFLAGS="$(OTHER_SUBDIR_CFLAGS)$(ASTCFLAGS)" $(MAKE) -C utils
|
|
|
|
|
@CFLAGS="$(OTHER_SUBDIR_CFLAGS)$(ASTCFLAGS)" $(MAKE) -C agi
|
|
|
|
|
|
|
|
|
|
clean-depend:
|
|
|
|
|
@for x in $(SUBDIRS); do $(MAKE) -C $$x clean-depend || exit 1 ; done
|
|
|
|
|