Change MCStreamer EmitInstruction interface to take subtarget info
[oota-llvm.git] / tools / llvm-dis / Makefile
index 3c8d3b5814d801074b3b5d7b1086ca44ee1afb45..aeeeed0d68c9f94a9fae1cc835b37803ad375934 100644 (file)
@@ -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-dis
-USEDLIBS = LLVMBCReader LLVMCore LLVMSupport.a LLVMSystem.a
+LEVEL := ../..
+TOOLNAME := llvm-dis
+LINK_COMPONENTS := bitreader analysis
+
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS := 1
+
 include $(LEVEL)/Makefile.common