[llvm-commits] CVS: llvm/runtime/GCCLibraries/crtend/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Sat Nov 29 04:26:03 PST 2003
Changes in directory llvm/runtime/GCCLibraries/crtend:
Makefile updated: 1.10 -> 1.11
---
Log message:
Build _lib_crtend.a, not crtend.a
---
Diffs of the changes: (+5 -5)
Index: llvm/runtime/GCCLibraries/crtend/Makefile
diff -u llvm/runtime/GCCLibraries/crtend/Makefile:1.10 llvm/runtime/GCCLibraries/crtend/Makefile:1.11
--- llvm/runtime/GCCLibraries/crtend/Makefile:1.10 Sat Nov 29 04:14:17 2003
+++ llvm/runtime/GCCLibraries/crtend/Makefile Sat Nov 29 04:24:57 2003
@@ -27,14 +27,14 @@
include $(LEVEL)/Makefile.common
# CRTEND_A - The result of making 'all' - the final archive file.
-CRTEND_A = $(DESTLIBBYTECODE)/crtend.a
+CRTEND_A = $(DESTLIBBYTECODE)/libcrtend.a
all:: $(CRTEND_A)
# Installation simply requires copying the archive to it's new home.
-$(LLVMGCCDIR)/bytecode-libs/crtend.a: $(CRTEND_A)
+$(LLVMGCCDIR)/bytecode-libs/libcrtend.a: $(CRTEND_A)
cp $< $@
-install:: $(LLVMGCCDIR)/bytecode-libs/crtend.a
+install:: $(LLVMGCCDIR)/bytecode-libs/libcrtend.a
# The four components described in the README
@@ -42,9 +42,9 @@
ComponentLibs := $(Components:%=$(BUILD_OBJ_DIR)/BytecodeObj/comp_%.bc)
-# We build crtend.a from the four components described in the README.
+# We build libcrtend.a from the four components described in the README.
$(CRTEND_A) : $(ComponentLibs)
- @echo Building final crtend.a file from components
+ @echo Building final libcrtend.a file from components
$(VERB) $(AR) $@ $(ComponentLibs)
MainObj := $(BUILD_OBJ_DIR)/BytecodeObj/crtend.bc \
More information about the llvm-commits
mailing list