summaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-09-17 23:45:34 +0000
committerChris Lattner <sabre@nondot.org>2002-09-17 23:45:34 +0000
commit16d1f73cf3494d5b4ceb9b9fc69ffe8768dc53f7 (patch)
tree2c4b0d15d5a8c2a66b59473e400a828a8ef13ba9 /Makefile.common
parentb430e0b33dc4d8c410b1deb84305ecc3fb64c0fe (diff)
downloadllvm-16d1f73cf3494d5b4ceb9b9fc69ffe8768dc53f7.tar.gz
llvm-16d1f73cf3494d5b4ceb9b9fc69ffe8768dc53f7.tar.bz2
llvm-16d1f73cf3494d5b4ceb9b9fc69ffe8768dc53f7.tar.xz
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
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common
index da515716b0..7021906821 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