MC: Prune \return corresponding to r239552. [-Wdocumentation]
[oota-llvm.git] / tools / llvm-as / Makefile
index fcb92935721f335392373e72924da7149e97648a..dfd71b295a9a81f4fb64ae76e3f8b9c7189c351b 100644 (file)
@@ -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  -lsupport
+include $(LEVEL)/Makefile.common