[llvm-commits] [llvm] r110521 - /llvm/trunk/tools/bugpoint-passes/Makefile

Rafael Espindola rafael.espindola at gmail.com
Sat Aug 7 14:53:04 PDT 2010


Author: rafael
Date: Sat Aug  7 16:53:04 2010
New Revision: 110521

URL: http://llvm.org/viewvc/llvm-project?rev=110521&view=rev
Log:
Add missing file.

Added:
    llvm/trunk/tools/bugpoint-passes/Makefile

Added: llvm/trunk/tools/bugpoint-passes/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint-passes/Makefile?rev=110521&view=auto
==============================================================================
--- llvm/trunk/tools/bugpoint-passes/Makefile (added)
+++ llvm/trunk/tools/bugpoint-passes/Makefile Sat Aug  7 16:53:04 2010
@@ -0,0 +1,23 @@
+##===- tools/bugpoint-passes/Makefile -- -------------------*- Makefile -*-===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+LEVEL = ../..
+LIBRARYNAME = BugpointPasses
+LOADABLE_MODULE = 1
+USEDLIBS =
+
+# If we don't need RTTI or EH, there's no reason to export anything
+# from this plugin.
+ifneq ($(REQUIRES_RTTI), 1)
+ifneq ($(REQUIRES_EH), 1)
+EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/bugpoint.exports
+endif
+endif
+
+include $(LEVEL)/Makefile.common





More information about the llvm-commits mailing list