Clean this up a bit: hide command unless verbose output requested, echo

a useful comment line, add a clean target.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33834 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-02-03 16:09:12 +00:00
parent f987c77bd4
commit c74913cd69

View File

@ -13,10 +13,14 @@ include $(LEVEL)/Makefile.common
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