Changes in directory llvm/tools/gccas:

Makefile updated: 1.28 -> 1.29
---
Log message:

Clean this up a bit: hide command unless verbose output requested, echo
a useful comment line, add a clean target.


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

 Makefile |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)


Index: llvm/tools/gccas/Makefile
diff -u llvm/tools/gccas/Makefile:1.28 llvm/tools/gccas/Makefile:1.29
--- llvm/tools/gccas/Makefile:1.28      Fri Feb  2 09:50:58 2007
+++ llvm/tools/gccas/Makefile   Sat Feb  3 10:09:12 2007
@@ -13,10 +13,14 @@
 install-local:: $(PROJ_bindir)/gccas
        
 $(PROJ_bindir)/gccas : gccas.sh
-       sed "[EMAIL PROTECTED]@#$(PROJ_bindir)#" $< > $@
+       $(Echo)Installing gccas shell script.
+       $(Verb)sed "[EMAIL PROTECTED]@#$(PROJ_bindir)#" $< > $@
 
 all-local:: $(ToolDir)/gccas
        
 $(ToolDir)/gccas : gccas.sh
-       sed "[EMAIL PROTECTED]@#$(ToolDir)#" $< > $@
+       $(Echo)Making $(ToolDir)/gccas shell script.
+       $(Verb)sed "[EMAIL PROTECTED]@#$(ToolDir)#" $< > $@
 
+clean-local::
+       $(Verb)$(RM) -f $(ToolDir)/gccas



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to