[llvm-commits] CVS: llvm/Makefile.rules

Chris Lattner lattner at cs.uiuc.edu
Wed Mar 8 22:00:18 PST 2006



Changes in directory llvm:

Makefile.rules updated: 1.349 -> 1.350
---
Log message:

Use $(Verb) instead of @ so that VERBOSE=1 will print these.


---
Diffs of the changes:  (+2 -2)

 Makefile.rules |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.349 llvm/Makefile.rules:1.350
--- llvm/Makefile.rules:1.349	Thu Mar  2 19:54:54 2006
+++ llvm/Makefile.rules	Thu Mar  9 00:00:05 2006
@@ -1096,11 +1096,11 @@
 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
 
 






More information about the llvm-commits mailing list