X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=tools%2Fllvm-dis%2FMakefile;h=be711000861d1cd5eda8d394a2cf824ffe7c53b5;hb=adf01b3f18442ae8db6b8948e70d82d9df415119;hp=fc77cdd1404fc196bddd7cf7ddd46ce686c45d59;hpb=009505452b713ed2e3a8e99c5545a6e721c65495;p=oota-llvm.git diff --git a/tools/llvm-dis/Makefile b/tools/llvm-dis/Makefile index fc77cdd1404..be711000861 100644 --- a/tools/llvm-dis/Makefile +++ b/tools/llvm-dis/Makefile @@ -1,10 +1,17 @@ +##===- tools/llvm-dis/Makefile ------------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## LEVEL = ../.. -include $(LEVEL)/Makefile.common -all:: dis -clean :: - rm -f dis +TOOLNAME = llvm-dis +LINK_COMPONENTS := bitreader analysis + +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS = 1 -dis : $(ObjectsG) - $(LinkG) -o $@ $(ObjectsG) -lvmcore -lasmwriter -lanalysis \ - -lbcreader +include $(LEVEL)/Makefile.common