X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2Fllvm-dis%2FMakefile;h=dfd5e34981239f0171d6acd8c9e594fb0b60a22a;hb=f45a82890e34984ad1e1e259f8fb902caddfb0b1;hp=6be8b096dbf4d3e44110936dd61e51d82ffe8a3d;hpb=ebfc3a9fc22b741f67e264409b9a882a864f9fc2;p=oota-llvm.git diff --git a/tools/llvm-dis/Makefile b/tools/llvm-dis/Makefile index 6be8b096dbf..dfd5e349812 100644 --- a/tools/llvm-dis/Makefile +++ b/tools/llvm-dis/Makefile @@ -2,14 +2,17 @@ # # 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 -LINK_COMPONENTS := bcreader +LINK_COMPONENTS := bitreader REQUIRES_EH := 1 +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS = 1 + include $(LEVEL)/Makefile.common