From 9bf8ea26a9b9571cab76819cc69f3bfa857610a8 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 4 Sep 2006 04:47:49 +0000 Subject: [PATCH] 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 --- tools/llvm-as/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.34.1