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

Chris Lattner lattner at cs.uiuc.edu
Tue Oct 18 11:50:38 PDT 2005



Changes in directory llvm/runtime/GCCLibraries/crtend:

Makefile updated: 1.28 -> 1.29
---
Log message:

This was never updated for the project makefile changes


---
Diffs of the changes:  (+3 -3)

 Makefile |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/runtime/GCCLibraries/crtend/Makefile
diff -u llvm/runtime/GCCLibraries/crtend/Makefile:1.28 llvm/runtime/GCCLibraries/crtend/Makefile:1.29
--- llvm/runtime/GCCLibraries/crtend/Makefile:1.28	Wed Mar 23 15:14:33 2005
+++ llvm/runtime/GCCLibraries/crtend/Makefile	Tue Oct 18 13:50:26 2005
@@ -47,19 +47,19 @@
 $(ObjDir)/comp_main.bc: $(MainObj)
 	$(Echo) Linking $(notdir $@) component...
 	$(Verb) $(GCCLD) -link-as-library \
-	-internalize-public-api-file=$(BUILD_SRC_DIR)/comp_main.lst \
+	-internalize-public-api-file=$(PROJ_SRC_DIR)/comp_main.lst \
 	$(MainObj) -o $@
 
 # Generic exception handling support runtime.
 $(ObjDir)/comp_genericeh.bc: $(GenericEHObj)
 	$(Echo) Linking $(notdir $@) component...
 	$(Verb) $(GCCLD) -link-as-library \
-	-internalize-public-api-file=$(BUILD_SRC_DIR)/comp_genericeh.lst \
+	-internalize-public-api-file=$(PROJ_SRC_DIR)/comp_genericeh.lst \
 	$(GenericEHObj) -o $@ 
 
 # setjmp/longjmp exception handling support runtime.
 $(ObjDir)/comp_sjljeh.bc: $(SJLJEHObj)
 	$(Echo) Linking $(notdir $@) component...
 	$(Verb) $(GCCLD) -link-as-library \
-	-internalize-public-api-file=$(BUILD_SRC_DIR)/comp_sjljeh.lst \
+	-internalize-public-api-file=$(PROJ_SRC_DIR)/comp_sjljeh.lst \
 	$(SJLJEHObj) -o $@






More information about the llvm-commits mailing list