Modernize raw_fd_ostream's constructor a bit.
[oota-llvm.git] / tools / llvm-link / Makefile
index 4986272406545c2a358af76e151d8f9724bd46af..ed30d2d256b8eb2aab05893b7eced6c90536f7d5 100644 (file)
@@ -2,13 +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-link
-USEDLIBS = LLVMBCReader LLVMBCWriter LLVMCore LLVMSupport.a LLVMSystem.a
+LEVEL := ../..
+TOOLNAME := llvm-link
+LINK_COMPONENTS := linker bitreader bitwriter asmparser irreader
+
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS := 1
 
 include $(LEVEL)/Makefile.common