From 32a12ba8c0736a74681563a8f5ec8d81108514b5 Mon Sep 17 00:00:00 2001 From: "Michael J. Spencer" Date: Wed, 28 Sep 2011 20:57:46 +0000 Subject: Add llvm-size. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140722 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-size/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tools/llvm-size/Makefile (limited to 'tools/llvm-size/Makefile') diff --git a/tools/llvm-size/Makefile b/tools/llvm-size/Makefile new file mode 100644 index 0000000..5d0e27e --- /dev/null +++ b/tools/llvm-size/Makefile @@ -0,0 +1,17 @@ +##===- tools/llvm-size/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-size +LINK_COMPONENTS = object + +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS = 1 + +include $(LEVEL)/Makefile.common -- cgit v1.1