X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2Fllvm-as%2FMakefile;h=dfd71b295a9a81f4fb64ae76e3f8b9c7189c351b;hb=b619dd5d5b69ba9f4571a96e1a96d09d8aed03a7;hp=9d36cc1d0076f7267f77940651201d18883f859c;hpb=416ae8da19ec1c106340fb1510b1f478e1232be6;p=oota-llvm.git diff --git a/tools/llvm-as/Makefile b/tools/llvm-as/Makefile index 9d36cc1d007..dfd71b295a9 100644 --- a/tools/llvm-as/Makefile +++ b/tools/llvm-as/Makefile @@ -1,9 +1,17 @@ -LEVEL = ../.. -include $(LEVEL)/Makefile.common +##===- tools/llvm-as/Makefile ------------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL := ../.. +TOOLNAME := llvm-as +LINK_COMPONENTS := asmparser bitwriter -all:: as -clean:: - rm -f as +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS := 1 -as : $(ObjectsG) - $(LinkG) -o as $(ObjectsG) -lasmparser -lbcwriter -lasmwriter -lanalysis -lvmcore +include $(LEVEL)/Makefile.common