[llvm-commits] CVS: llvm/tools/llvm-link/Makefile
    Chris Lattner 
    lattner at cs.uiuc.edu
       
    Sun Sep  3 22:59:47 PDT 2006
    
    
  
Changes in directory llvm/tools/llvm-link:
Makefile updated: 1.14 -> 1.15
---
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 -2)
 Makefile |    3 +--
 1 files changed, 1 insertion(+), 2 deletions(-)
Index: llvm/tools/llvm-link/Makefile
diff -u llvm/tools/llvm-link/Makefile:1.14 llvm/tools/llvm-link/Makefile:1.15
--- llvm/tools/llvm-link/Makefile:1.14	Thu Jul  6 19:46:18 2006
+++ llvm/tools/llvm-link/Makefile	Mon Sep  4 00:59:09 2006
@@ -9,8 +9,7 @@
 LEVEL = ../..
 
 TOOLNAME = llvm-link
-USEDLIBS = LLVMLinker.a LLVMBCReader.a LLVMBCWriter.a \
-	   LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a
+LINK_COMPONENTS = linker bcreader bcwriter
 REQUIRES_EH := 1
 
 include $(LEVEL)/Makefile.common
    
    
More information about the llvm-commits
mailing list