[llvm-commits] CVS: llvm/tools/opt/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Sun Sep 3 22:59:46 PDT 2006
Changes in directory llvm/tools/opt:
Makefile updated: 1.58 -> 1.59
---
Log message:
Use LINK_COMPONENTS to specify *components* to link against instead of
using USED_LIBS to specify *libraries* to link against.
---
Diffs of the changes: (+2 -4)
Makefile | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
Index: llvm/tools/opt/Makefile
diff -u llvm/tools/opt/Makefile:1.58 llvm/tools/opt/Makefile:1.59
--- llvm/tools/opt/Makefile:1.58 Sun Aug 27 17:07:01 2006
+++ llvm/tools/opt/Makefile Mon Sep 4 00:59:09 2006
@@ -10,9 +10,7 @@
TOOLNAME = opt
REQUIRES_EH := 1
-USEDLIBS = LLVMBCReader.a LLVMBCWriter.a LLVMInstrumentation.a \
- LLVMScalarOpts.a LLVMipo.a LLVMipa.a LLVMDataStructure \
- LLVMTransforms.a LLVMTarget.a LLVMTransformUtils.a LLVMAnalysis.a \
- LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a
+LINK_COMPONENTS := bcreader bcwriter instrumentation scalaropts ipo \
+ datastructure transforms
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list