X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2Fllvm-as%2FMakefile;h=dfd71b295a9a81f4fb64ae76e3f8b9c7189c351b;hb=5be77762a3aa434ee877b0a03b98b5c3a7571918;hp=956469516667c70cc5beeca048df3805afb0a456;hpb=0c4897e5c5114ee4bca877f9ccfd884e800cf157;p=oota-llvm.git diff --git a/tools/llvm-as/Makefile b/tools/llvm-as/Makefile index 95646951666..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) ../../lib/Assembly/Parser/Debug/libasmparser.a - $(LinkG) -o as $(ObjectsG) -lasmparser -lbcwriter -lasmwriter -lanalysis -lvmcore -lsupport +include $(LEVEL)/Makefile.common