Clean up the output from this makefile so its not verbose.
authorReid Spencer <rspencer@reidspencer.com>
Fri, 22 Oct 2004 23:24:39 +0000 (23:24 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 22 Oct 2004 23:24:39 +0000 (23:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17173 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/SparcV9/Makefile

index 788a88a7e43e7a07e7b4bcefc05ff3047dece398..363b73cad6d63754072bef180e330c5df5aa9578 100644 (file)
@@ -17,20 +17,22 @@ BUILT_SOURCES = \
 include $(LEVEL)/Makefile.common
 
 SparcV9.burg.in1 : $(BUILD_SRC_DIR)/SparcV9.burg.in
-       $(CXX) -E $(CPPFLAGS) -x c++ $< | $(SED) '/^#/d' | $(SED) 's/Ydefine/#define/' > $@
+       @$(ECHO) Pre-processing SparcV9.burg.in
+       $(VERB) $(CXX) -E $(CPPFLAGS) -x c++ $< | $(SED) '/^#/d' | $(SED) 's/Ydefine/#define/' > $@
 
 SparcV9.burm : SparcV9.burg.in1
-       $(CXX) -E $(CPPFLAGS) -x c++ $< | $(SED) '/^#/d' | $(SED) 's/^Xinclude/#include/' | $(SED) 's/^Xdefine/#define/' > $@
+       @$(ECHO) Pre-processing SparcV9.burg.in
+       $(VERB) $(CXX) -E $(CPPFLAGS) -x c++ $< | $(SED) '/^#/d' | $(SED) 's/^Xinclude/#include/' | $(SED) 's/^Xdefine/#define/' > $@
 
 SparcV9.burm.cpp: SparcV9.burm
-       @echo "Burging `basename $<`"
-       $(BURG) -I $< -o $@
+       @$(ECHO) "Burging `basename $<`"
+       $(VERB) $(BURG) -I $< -o $@
 
 TABLEGEN_FILES := $(notdir $(wildcard $(BUILD_SRC_DIR)/*.td))
 
 SparcV9CodeEmitter.inc: $(BUILD_SRC_DIR)/SparcV9.td $(TABLEGEN_FILES) $(TBLGEN)
-       @echo "Running tblgen on SparcV9.td"
-       $(TableGen) -gen-emitter -o $@ $<
+       @$(ECHO) "Running tblgen on SparcV9.td"
+       $(VERB) $(TableGen) -gen-emitter -o $@ $<
 
 clean::
        $(VERB) $(RM) -f SparcV9CodeEmitter.inc SparcV9.burg.in1 SparcV9.burm SparcV9.burm.cpp