From: Chris Lattner Date: Tue, 17 Sep 2002 23:45:34 +0000 (+0000) Subject: Allow the VERBOSE=1 option to turn on output of recursive make behavior X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=16d1f73cf3494d5b4ceb9b9fc69ffe8768dc53f7;p=oota-llvm.git Allow the VERBOSE=1 option to turn on output of recursive make behavior git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3796 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.common b/Makefile.common index da515716b0a..70219068211 100644 --- a/Makefile.common +++ b/Makefile.common @@ -180,7 +180,7 @@ ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs)) ifdef DIRS # Only do this if we're using DIRS! all install clean:: - @for dir in ${DIRS}; do \ + $(VERB) for dir in ${DIRS}; do \ (cd $$dir; $(MAKE) $@) || exit 1; \ done endif diff --git a/Makefile.rules b/Makefile.rules index da515716b0a..70219068211 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -180,7 +180,7 @@ ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs)) ifdef DIRS # Only do this if we're using DIRS! all install clean:: - @for dir in ${DIRS}; do \ + $(VERB) for dir in ${DIRS}; do \ (cd $$dir; $(MAKE) $@) || exit 1; \ done endif