[llvm-readobj] Test --macho-data-in-code option.
[oota-llvm.git] / tools / llvm-extract / Makefile
index 69e7e7f92795b2e37c984584901b38b00b9fcd5e..d371c54759263a83a244cf40dd2e9a2b4691339a 100644 (file)
@@ -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