From: Chris Lattner Date: Mon, 4 Sep 2006 04:47:49 +0000 (+0000) Subject: Switch to using llvm-config to select components to link in. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9bf8ea26a9b9571cab76819cc69f3bfa857610a8;p=oota-llvm.git Switch to using llvm-config to select components to link in. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30085 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-as/Makefile b/tools/llvm-as/Makefile index bd7c3d3eec0..aa64d066674 100644 --- a/tools/llvm-as/Makefile +++ b/tools/llvm-as/Makefile @@ -6,10 +6,10 @@ # the University of Illinois Open Source License. See LICENSE.TXT for details. # ##===----------------------------------------------------------------------===## + LEVEL = ../.. TOOLNAME = llvm-as -USEDLIBS = LLVMAsmParser.a LLVMBCWriter.a LLVMCore.a \ - LLVMSupport.a LLVMbzip2.a LLVMSystem.a +LINK_COMPONENTS := asmparser bcwriter REQUIRES_EH := 1 include $(LEVEL)/Makefile.common