X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2Fllvm-ar%2FMakefile;h=fafb14bc12a1705bf73be69b2ff52329c96c715b;hb=22bd64173981bf1251c4b3bfc684207340534ba3;hp=fbc2bcf35307e397e3a84e182d1b5e08b2455cf5;hpb=18c8b49e7d3c94d7f84a4205a19f8761722fc4e5;p=oota-llvm.git diff --git a/tools/llvm-ar/Makefile b/tools/llvm-ar/Makefile index fbc2bcf3530..fafb14bc12a 100644 --- a/tools/llvm-ar/Makefile +++ b/tools/llvm-ar/Makefile @@ -2,21 +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 = LLVMArchive.a LLVMBCReader.a \ - LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a +LEVEL := ../.. +TOOLNAME := llvm-ar +LINK_COMPONENTS := archive -include $(LEVEL)/Makefile.common +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS := 1 -check-local:: - $(Echo) Checking llvm-ar - $(Verb) $(ToolDir)/llvm-ar zRrS nada.a . - $(Verb) $(ToolDir)/llvm-ar tv nada.a | \ - grep Debug/llvm-ar.d >/dev/null 2>&1 - $(Verb) $(RM) -f nada.a +include $(LEVEL)/Makefile.common