summaryrefslogtreecommitdiff
path: root/tools/llvm-as
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-09-04 04:47:49 +0000
committerChris Lattner <sabre@nondot.org>2006-09-04 04:47:49 +0000
commit9bf8ea26a9b9571cab76819cc69f3bfa857610a8 (patch)
tree5cb466b0a8031c405c1fdec9791b2dbdddc8ada3 /tools/llvm-as
parentef0d0f12f0a37a0c4a907b67b04bcdc73c9dda9e (diff)
downloadllvm-9bf8ea26a9b9571cab76819cc69f3bfa857610a8.tar.gz
llvm-9bf8ea26a9b9571cab76819cc69f3bfa857610a8.tar.bz2
llvm-9bf8ea26a9b9571cab76819cc69f3bfa857610a8.tar.xz
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
Diffstat (limited to 'tools/llvm-as')
-rw-r--r--tools/llvm-as/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvm-as/Makefile b/tools/llvm-as/Makefile
index bd7c3d3eec..aa64d06667 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