Add support for addmod to mri scripts.
[oota-llvm.git] / tools / llvm-dis / Makefile
index a0b51cf27725a33ca14f1dbb0e36de3eac0b787e..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 = bcreader vmcore support.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