[llvm] r254358 - [llvm-dwp] Add missing Makefile for the old configure+make build

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 30 17:07:20 PST 2015


Author: dblaikie
Date: Mon Nov 30 19:07:20 2015
New Revision: 254358

URL: http://llvm.org/viewvc/llvm-project?rev=254358&view=rev
Log:
[llvm-dwp] Add missing Makefile for the old configure+make build

Added:
    llvm/trunk/tools/llvm-dwp/Makefile

Added: llvm/trunk/tools/llvm-dwp/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-dwp/Makefile?rev=254358&view=auto
==============================================================================
--- llvm/trunk/tools/llvm-dwp/Makefile (added)
+++ llvm/trunk/tools/llvm-dwp/Makefile Mon Nov 30 19:07:20 2015
@@ -0,0 +1,18 @@
+##===- tools/llvm-dwp/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-dwp
+LINK_COMPONENTS := all-targets AsmPrinter DebugInfoDWARF MC Object Support
+
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS := 1
+
+include $(LEVEL)/Makefile.common
+




More information about the llvm-commits mailing list