llvm-bcanalyzer: Add a field that was missed in r241016.
[oota-llvm.git] / tools / llvm-bcanalyzer / Makefile
index 791464631421ec46cdd224158488c8269da96246..2fc61dbd62a7d5b8927e965c0e8c310f6e038399 100644 (file)
@@ -2,12 +2,16 @@
 # 
 #                     The LLVM Compiler Infrastructure
 #
-# This file was developed by Reid Spencer 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-bcanalyzer
-USEDLIBS = LLVMBCReader.a LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a
+LEVEL := ../..
+TOOLNAME := llvm-bcanalyzer
+LINK_COMPONENTS := bitreader
+
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS := 1
+
 include $(LEVEL)/Makefile.common