diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-22 23:24:39 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-22 23:24:39 +0000 |
commit | b8d5570e9507464a08bf49b57ebfab22334a2aec (patch) | |
tree | 3fee6c51e8db33d6b5c6249935a60516cf4766f2 | |
parent | e53e397a96e507584023d36413c5db9eaac8693c (diff) |
Clean up the output from this makefile so its not verbose.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17173 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/SparcV9/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/Target/SparcV9/Makefile b/lib/Target/SparcV9/Makefile index 788a88a7e4..363b73cad6 100644 --- a/lib/Target/SparcV9/Makefile +++ b/lib/Target/SparcV9/Makefile @@ -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 |