Don't print out tons of crap
authorChris Lattner <sabre@nondot.org>
Sat, 29 Nov 2003 10:14:17 +0000 (10:14 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 29 Nov 2003 10:14:17 +0000 (10:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10259 91177308-0d34-0410-b5e6-96231b3b80d8

runtime/GCCLibraries/crtend/Makefile

index 64d4d00d9f5635b6b55658274c86cd8c09f596be..a7f2c7a9d77fdcb1866ba1ab6a61038c8460dcee 100644 (file)
@@ -44,7 +44,8 @@ ComponentLibs := $(Components:%=$(BUILD_OBJ_DIR)/BytecodeObj/comp_%.bc)
 
 # We build crtend.a from the four components described in the README.
 $(CRTEND_A) : $(ComponentLibs)
-       $(AR) $@ $(ComponentLibs)
+       @echo Building final crtend.a file from components
+       $(VERB) $(AR) $@ $(ComponentLibs)
 
 MainObj      := $(BUILD_OBJ_DIR)/BytecodeObj/crtend.bc \
                 $(BUILD_OBJ_DIR)/BytecodeObj/listend.bc
@@ -54,18 +55,22 @@ CXXEHObj     := $(BUILD_OBJ_DIR)/BytecodeObj/C++-Exception.bc
 
 # __main and ctor/dtor support component
 $(BUILD_OBJ_DIR)/BytecodeObj/comp_main.bc: $(MainObj)
-       $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_main.lst $(MainObj) -o $@
+       @echo Linking $(notdir $@) component...
+       $(VERB) $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_main.lst $(MainObj) -o $@
 
 # Generic exception handling support runtime.
 $(BUILD_OBJ_DIR)/BytecodeObj/comp_genericeh.bc: $(GenericEHObj)
-       $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_genericeh.lst $(GenericEHObj) -o $@
+       @echo Linking $(notdir $@) component...
+       $(VERB) $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_genericeh.lst $(GenericEHObj) -o $@
 
 # setjmp/longjmp exception handling support runtime.
 $(BUILD_OBJ_DIR)/BytecodeObj/comp_sjljeh.bc: $(SJLJEHObj)
-       $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_sjljeh.lst $(SJLJEHObj) -o $@
+       @echo Linking $(notdir $@) component...
+       $(VERB) $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_sjljeh.lst $(SJLJEHObj) -o $@
 
 # C++ exception handling support runtime.
 $(BUILD_OBJ_DIR)/BytecodeObj/comp_cxxeh.bc: $(CXXEHObj)
-       $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_cxxeh.lst $(CXXEHObj) -o $@
+       @echo Linking $(notdir $@) component...
+       $(VERB) $(LGCCLDPROG) -link-as-library -internalize-public-api-file=$(BUILD_SRC_DIR)/comp_cxxeh.lst $(CXXEHObj) -o $@