[llvm-commits] CVS: llvm/tools/gccas/Makefile

Reid Spencer reid at x10sys.com
Sat Feb 3 08:09:29 PST 2007



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 "s#@TOOLDIR@#$(PROJ_bindir)#" $< > $@
+	$(Echo)Installing gccas shell script.
+	$(Verb)sed "s#@TOOLDIR@#$(PROJ_bindir)#" $< > $@
 
 all-local:: $(ToolDir)/gccas
 	
 $(ToolDir)/gccas : gccas.sh
-	sed "s#@TOOLDIR@#$(ToolDir)#" $< > $@
+	$(Echo)Making $(ToolDir)/gccas shell script.
+	$(Verb)sed "s#@TOOLDIR@#$(ToolDir)#" $< > $@
 
+clean-local::
+	$(Verb)$(RM) -f $(ToolDir)/gccas






More information about the llvm-commits mailing list