From: Chris Lattner Date: Thu, 9 Mar 2006 06:00:05 +0000 (+0000) Subject: Use $(Verb) instead of @ so that VERBOSE=1 will print these. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c097798f61ce7f83b3405986a6a243c664f7800a;p=oota-llvm.git 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 --- diff --git a/Makefile.rules b/Makefile.rules index 358c38c1eca..4596c4faff7 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