[llvm-commits] CVS: llvm/tools/gccas/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Sun Sep 3 22:59:48 PDT 2006
Changes in directory llvm/tools/gccas:
Makefile updated: 1.26 -> 1.27
---
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: (+1 -3)
Makefile | 4 +---
1 files changed, 1 insertion(+), 3 deletions(-)
Index: llvm/tools/gccas/Makefile
diff -u llvm/tools/gccas/Makefile:1.26 llvm/tools/gccas/Makefile:1.27
--- llvm/tools/gccas/Makefile:1.26 Thu Jul 6 19:46:18 2006
+++ llvm/tools/gccas/Makefile Mon Sep 4 00:59:09 2006
@@ -9,9 +9,7 @@
LEVEL = ../..
TOOLNAME = gccas
-USEDLIBS = LLVMAsmParser.a LLVMBCWriter.a LLVMTransforms.a LLVMipo.a LLVMipa.a \
- LLVMScalarOpts.a LLVMAnalysis.a LLVMTarget.a LLVMTransformUtils.a \
- LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a
+LINK_COMPONENTS = asmparser bcwriter scalaropts ipo ipa transforms
REQUIRES_EH := 1
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list