X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2Fllvm-as%2FMakefile;h=dfd71b295a9a81f4fb64ae76e3f8b9c7189c351b;hb=b619dd5d5b69ba9f4571a96e1a96d09d8aed03a7;hp=91de6d2490bbe0ead3622518d07bf203891ed130;hpb=e50b075b664c9d9baa7af605cf4c7df5a57ca5c4;p=oota-llvm.git diff --git a/tools/llvm-as/Makefile b/tools/llvm-as/Makefile index 91de6d2490b..dfd71b295a9 100644 --- a/tools/llvm-as/Makefile +++ b/tools/llvm-as/Makefile @@ -2,13 +2,16 @@ # # The LLVM Compiler Infrastructure # -# This file was developed by the LLVM research group and is distributed under -# the University of Illinois Open Source License. See LICENSE.TXT for details. +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. # ##===----------------------------------------------------------------------===## -LEVEL = ../.. -TOOLNAME = llvm-as -USEDLIBS = LLVMAsmParser LLVMBCWriter LLVMCore \ - LLVMSupport.a LLVMbzip2 LLVMSystem.a + +LEVEL := ../.. +TOOLNAME := llvm-as +LINK_COMPONENTS := asmparser bitwriter + +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS := 1 include $(LEVEL)/Makefile.common