summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-09 06:00:05 +0000
committerChris Lattner <sabre@nondot.org>2006-03-09 06:00:05 +0000
commitc097798f61ce7f83b3405986a6a243c664f7800a (patch)
tree039c6a01ac1a6cf63d28d3eac0626aa0257f667f /Makefile.rules
parent181b9c6a2af1d9df7f302fa8a0ebe5421c39af4e (diff)
downloadllvm-c097798f61ce7f83b3405986a6a243c664f7800a.tar.gz
llvm-c097798f61ce7f83b3405986a6a243c664f7800a.tar.bz2
llvm-c097798f61ce7f83b3405986a6a243c664f7800a.tar.xz
Use $(Verb) instead of @ so that VERBOSE=1 will print these.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26626 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 358c38c1ec..4596c4faff 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -1096,11 +1096,11 @@ endif
ifdef DEBUG_RUNTIME
$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
$(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
- @$(GCCAS) $< -o $@
+ $(Verb) $(GCCAS) $< -o $@
else
$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
$(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
- @$(GCCAS) -strip-debug $< -o $@
+ $(Verb) $(GCCAS) -strip-debug $< -o $@
endif