[svn-commits] rizzo: trunk r88615 - /trunk/Makefile

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Nov 5 11:44:11 CST 2007


Author: rizzo
Date: Mon Nov  5 11:44:10 2007
New Revision: 88615

URL: http://svn.digium.com/view/asterisk?view=rev&rev=88615
Log:
print messages when entering/leaving a directory so we know where we are
(sometimes it is obvious, sometimes it is not).


Modified:
    trunk/Makefile

Modified: trunk/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/Makefile?view=diff&rev=88615&r1=88614&r2=88615
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Mon Nov  5 11:44:10 2007
@@ -342,10 +342,14 @@
 main: $(filter-out main,$(MOD_SUBDIRS))
 
 $(MOD_SUBDIRS):
+	@echo "   [enter MOD_SUBDIR $@/]"
 	@ASTCFLAGS="$(MOD_SUBDIR_CFLAGS) $(ASTCFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" AST_LIBS="$(AST_LIBS)" $(MAKE) --no-print-directory --no-builtin-rules -C $@ SUBDIR=$@ all
+	@echo "   [exit MOD_SUBDIR $@/]"
 
 $(OTHER_SUBDIRS):
+	@echo "   [enter SUBDIR $@/]"
 	@ASTCFLAGS="$(OTHER_SUBDIR_CFLAGS) $(ASTCFLAGS)" ASTLDFLAGS="$(ASTLDFLAGS)" AUDIO_LIBS="$(AUDIO_LIBS)" $(MAKE) --no-print-directory --no-builtin-rules -C $@ SUBDIR=$@ all
+	@echo "   [exit SUBDIR $@/]"
 
 defaults.h: makeopts
 	@build_tools/make_defaults_h > $@.tmp




More information about the svn-commits mailing list