dect
/
asterisk
Archived
13
0
Fork 0

use separate targets instead of for loops to process sub directories for the

'clean' and 'clean-depend' targets


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@35481 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2006-06-22 14:31:52 +00:00
parent 3493f60829
commit 60c04446db
1 changed files with 20 additions and 14 deletions

View File

@ -268,6 +268,8 @@ MOD_SUBDIRS=res channels pbx apps codecs formats cdr funcs
OTHER_SUBDIRS=utils agi
SUBDIRS:=$(MOD_SUBDIRS) $(OTHER_SUBDIRS)
SUBDIRS_INSTALL:=$(SUBDIRS:%=%-install)
SUBDIRS_CLEAN:=$(SUBDIRS:%=%-clean)
SUBDIRS_CLEAN_DEPEND:=$(SUBDIRS:%=%-clean-depend)
OBJS=io.o sched.o logger.o frame.o loader.o config.o channel.o \
translate.o file.o pbx.o cli.o md5.o term.o \
@ -366,6 +368,12 @@ _all: all
all: cleantest config.status menuselect.makeopts depend asterisk $(SUBDIRS)
$(MOD_SUBDIRS): FORCE
@CFLAGS="$(MOD_SUBDIR_CFLAGS)$(ASTCFLAGS)" $(MAKE) -C $@
$(OTHER_SUBDIRS): FORCE
@CFLAGS="$(OTHER_SUBDIR_CFLAGS)$(ASTCFLAGS)" $(MAKE) -C $@
config.status: configure
@CFLAGS="" ./configure
@echo "****"
@ -476,33 +484,31 @@ asterisk: include/asterisk/buildopts.h editline/libedit.a db1-ast/libdb1.a $(OBJ
muted: muted.o
$(CC) $(AUDIO_LIBS) -o muted muted.o
$(MOD_SUBDIRS): FORCE
@CFLAGS="$(MOD_SUBDIR_CFLAGS)$(ASTCFLAGS)" $(MAKE) -C $@
$(SUBDIRS_CLEAN_DEPEND):
@$(MAKE) -C $(@:-clean-depend=) clean-depend
$(OTHER_SUBDIRS): FORCE
@CFLAGS="$(OTHER_SUBDIR_CFLAGS)$(ASTCFLAGS)" $(MAKE) -C $@
$(SUBDIRS_CLEAN):
@$(MAKE) -C $(@:-clean=) clean
clean-depend:
@for x in $(SUBDIRS); do $(MAKE) -C $$x clean-depend || exit 1 ; done
rm -f .depend .tags-depend
clean-depend: $(SUBDIRS_CLEAN_DEPEND)
clean: clean-depend
@for x in $(SUBDIRS); do $(MAKE) -C $$x clean || exit 1 ; done
clean: $(SUBDIRS_CLEAN) clean-depend
rm -f *.o *.so asterisk
rm -f defaults.h
rm -f include/asterisk/build.h
rm -f include/asterisk/version.h
rm -f .tags-sources tags TAGS
rm -f .depend .tags-depend
@if [ -f editline/Makefile ]; then $(MAKE) -C editline distclean ; fi
$(MAKE) -C db1-ast clean
$(MAKE) -C stdtime clean
@$(MAKE) -C db1-ast clean
@$(MAKE) -C stdtime clean
distclean: dist-clean
dist-clean: clean
$(MAKE) -C mxml clean
$(MAKE) -C build_tools dist-clean
$(MAKE) -C sounds dist-clean
@$(MAKE) -C mxml clean
@$(MAKE) -C build_tools dist-clean
@$(MAKE) -C sounds dist-clean
rm -f menuselect.makeopts makeopts makeopts.xml
rm -f config.log config.status
rm -f include/autoconfig.h