[llvm-commits] CVS: llvm/tools/llvm-extract/Makefile
Reid Spencer
reid at x10sys.com
Wed May 31 18:31:08 PDT 2006
Changes in directory llvm/tools/llvm-extract:
Makefile updated: 1.3 -> 1.4
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diffs of the changes: (+3 -3)
Makefile | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/tools/llvm-extract/Makefile
diff -u llvm/tools/llvm-extract/Makefile:1.3 llvm/tools/llvm-extract/Makefile:1.4
--- llvm/tools/llvm-extract/Makefile:1.3 Thu Oct 27 10:54:34 2005
+++ llvm/tools/llvm-extract/Makefile Wed May 31 20:30:27 2006
@@ -9,8 +9,8 @@
LEVEL = ../..
TOOLNAME = llvm-extract
-USEDLIBS = LLVMBCReader LLVMBCWriter LLVMTransforms.a LLVMipo.a LLVMTarget.a \
- LLVMAnalysis.a LLVMTransformUtils.a LLVMipa.a \
- LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a
+USEDLIBS = LLVMBCReader.a LLVMBCWriter.a LLVMTransforms.a LLVMipo.a \
+ LLVMTarget.a LLVMAnalysis.a LLVMTransformUtils.a LLVMipa.a \
+ LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list