[llvm-commits] CVS: llvm/runtime/GCCLibraries/crtend/Makefile

Chris Lattner lattner at cs.uiuc.edu
Sat Nov 29 04:15:02 PST 2003


Changes in directory llvm/runtime/GCCLibraries/crtend:

Makefile updated: 1.9 -> 1.10

---
Log message:

Don't print out tons of crap


---
Diffs of the changes:  (+10 -5)

Index: llvm/runtime/GCCLibraries/crtend/Makefile
diff -u llvm/runtime/GCCLibraries/crtend/Makefile:1.9 llvm/runtime/GCCLibraries/crtend/Makefile:1.10
--- llvm/runtime/GCCLibraries/crtend/Makefile:1.9	Sat Nov 29 04:05:30 2003
+++ llvm/runtime/GCCLibraries/crtend/Makefile	Sat Nov 29 04:14:17 2003
@@ -44,7 +44,8 @@
 
 # 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 @@
 
 # __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 $@
 
 





More information about the llvm-commits mailing list