X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2Fllvm-as%2FMakefile;h=dfd71b295a9a81f4fb64ae76e3f8b9c7189c351b;hb=f616a4ba06c4b2c2cedc9c959f449f0897745174;hp=689e2684aeee82a45819f6aca75af5fd6c89e9b5;hpb=7c4c98d9860dfa5a5efbd354589ee64e43b8a5bd;p=oota-llvm.git diff --git a/tools/llvm-as/Makefile b/tools/llvm-as/Makefile index 689e2684aee..dfd71b295a9 100644 --- a/tools/llvm-as/Makefile +++ b/tools/llvm-as/Makefile @@ -2,12 +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 = asmparser bcwriter vmcore support.a 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