[llvm-commits] CVS: llvm/tools/bugpoint/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Sun Sep 3 22:59:46 PDT 2006
Changes in directory llvm/tools/bugpoint:
Makefile updated: 1.18 -> 1.19
---
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 -7)
Makefile | 9 ++-------
1 files changed, 2 insertions(+), 7 deletions(-)
Index: llvm/tools/bugpoint/Makefile
diff -u llvm/tools/bugpoint/Makefile:1.18 llvm/tools/bugpoint/Makefile:1.19
--- llvm/tools/bugpoint/Makefile:1.18 Thu Jul 6 19:46:18 2006
+++ llvm/tools/bugpoint/Makefile Mon Sep 4 00:59:09 2006
@@ -10,13 +10,8 @@
TOOLNAME = bugpoint
-OPTLIBS = LLVMTransforms.a LLVMInstrumentation.a
-ANALIBS = LLVMDataStructure LLVMipa.a LLVMTarget.a
-
-USEDLIBS = LLVMipo.a LLVMScalarOpts.a $(OPTLIBS) $(ANALIBS) LLVMAnalysis.a \
- LLVMTransformUtils.a \
- LLVMAsmParser.a LLVMLinker.a LLVMBCReader.a LLVMBCWriter.a \
- LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a
+LINK_COMPONENTS := bcreader bcwriter asmparser instrumentation scalaropts ipo \
+ datastructure transforms linker
REQUIRES_EH := 1
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list