[llvm-commits] CVS: llvm/runtime/GCCLibraries/crtend/Makefile
Brian Gaeke
gaeke at cs.uiuc.edu
Wed Jan 21 17:58:01 PST 2004
Changes in directory llvm/runtime/GCCLibraries/crtend:
Makefile updated: 1.12 -> 1.13
---
Log message:
Add DESTDIR support for installing. Use (and depend on) $(bytecode_libdir).
---
Diffs of the changes: (+2 -2)
Index: llvm/runtime/GCCLibraries/crtend/Makefile
diff -u llvm/runtime/GCCLibraries/crtend/Makefile:1.12 llvm/runtime/GCCLibraries/crtend/Makefile:1.13
--- llvm/runtime/GCCLibraries/crtend/Makefile:1.12 Sun Nov 30 03:22:42 2003
+++ llvm/runtime/GCCLibraries/crtend/Makefile Wed Jan 21 17:57:46 2004
@@ -31,10 +31,10 @@
all:: $(CRTEND_A)
# Installation simply requires copying the archive to it's new home.
-$(LLVMGCCDIR)/bytecode-libs/libcrtend.a: $(CRTEND_A)
+$(DESTDIR)$(bytecode_libdir)/libcrtend.a: $(CRTEND_A) $(DESTDIR)$(bytecode_libdir)
cp $< $@
-install:: $(LLVMGCCDIR)/bytecode-libs/libcrtend.a
+install:: $(DESTDIR)$(bytecode_libdir)/libcrtend.a
# The four components described in the README
More information about the llvm-commits
mailing list