Use $(Verb) instead of @ so that VERBOSE=1 will print these.
authorChris Lattner <sabre@nondot.org>
Thu, 9 Mar 2006 06:00:05 +0000 (06:00 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 9 Mar 2006 06:00:05 +0000 (06:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26626 91177308-0d34-0410-b5e6-96231b3b80d8

Makefile.rules

index 358c38c1eca1a1d68b960628117660b0056b2d34..4596c4faff7e6cea6989e70468fb699740ab5fd3 100644 (file)
@@ -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