X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2Fllvm-dis%2FMakefile;h=aeeeed0d68c9f94a9fae1cc835b37803ad375934;hb=896f064a4900458e3fb245ad3f6fc9e7a3d8c8cd;hp=aac499c77b4f27bd3011ce47219430a1544a5c84;hpb=055b3ff7bd2e1b9cf7dfda3181e67416bfd5c445;p=oota-llvm.git diff --git a/tools/llvm-dis/Makefile b/tools/llvm-dis/Makefile index aac499c77b4..aeeeed0d68c 100644 --- a/tools/llvm-dis/Makefile +++ b/tools/llvm-dis/Makefile @@ -2,12 +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-dis -USEDLIBS = cwriter ipa.a scalaropts.a target.a transformutils analysis.a bcreader vmcore support.a +LEVEL := ../.. +TOOLNAME := llvm-dis +LINK_COMPONENTS := bitreader analysis + +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS := 1 + include $(LEVEL)/Makefile.common