X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2Fllvm-extract%2FMakefile;h=d371c54759263a83a244cf40dd2e9a2b4691339a;hb=e2ff00e117ba9b758b298e671f65c0b002f8a52d;hp=69e7e7f92795b2e37c984584901b38b00b9fcd5e;hpb=e96a1a576becba35edc318b63ab85448d810854f;p=oota-llvm.git diff --git a/tools/llvm-extract/Makefile b/tools/llvm-extract/Makefile index 69e7e7f9279..d371c547592 100644 --- a/tools/llvm-extract/Makefile +++ b/tools/llvm-extract/Makefile @@ -2,15 +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-extract -USEDLIBS = LLVMBCReader LLVMBCWriter LLVMTransforms.a LLVMipo.a LLVMTarget.a \ - LLVMAnalysis.a LLVMTransformUtils LLVMipa.a \ - LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a +LEVEL := ../.. +TOOLNAME := llvm-extract +LINK_COMPONENTS := ipo bitreader bitwriter asmparser irreader + +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS := 1 include $(LEVEL)/Makefile.common