test commit redux
[oota-llvm.git] / tools / llvm-dis / Makefile
index 8ce3e2161c24c471df51b55ea12f6a2ac5a9229f..aeeeed0d68c9f94a9fae1cc835b37803ad375934 100644 (file)
@@ -1,10 +1,17 @@
-LEVEL = ../..
-include $(LEVEL)/Makefile.common
+##===- tools/llvm-dis/Makefile ------------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 
-all:: dis
-clean ::
-       rm -f dis
+LEVEL := ../..
+TOOLNAME := llvm-dis
+LINK_COMPONENTS := bitreader analysis
 
-dis : $(ObjectsG)
-       $(LinkG) -o $@ $(ObjectsG) -lbcreader -lasmwriter -lanalysis -lvmcore -lsupport
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS := 1
 
+include $(LEVEL)/Makefile.common