Add a wrapper for open.
[oota-llvm.git] / tools / llvm-ar / Makefile
index 2f4257b64de43ba2f58128820d20239118b7f6e4..15fb0900c243b7f7ff536d240df252258acef292 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-ar 
-USEDLIBS = bcreader vmcore support.a LLVMsystem.a
+LEVEL := ../..
+TOOLNAME := llvm-ar
+LINK_COMPONENTS := bitreader support object
+
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS := 1
 
 include $(LEVEL)/Makefile.common