X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2Fllvm-as%2FMakefile;h=dfd71b295a9a81f4fb64ae76e3f8b9c7189c351b;hb=b619dd5d5b69ba9f4571a96e1a96d09d8aed03a7;hp=ed44577cee19b7cc9b306250dbd326bebb0f72fc;hpb=bf714df962e8d387f530d40d1f040863db8009e8;p=oota-llvm.git diff --git a/tools/llvm-as/Makefile b/tools/llvm-as/Makefile index ed44577cee1..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