blob: 61f96bc338590f29b957d5a364bf57ed04cb4da5 [file] [log] [blame]
Rafael Espindolaf47d7092010-08-07 21:53:04 +00001##===- tools/bugpoint-passes/Makefile -- -------------------*- Makefile -*-===##
2#
3# The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
7#
8##===----------------------------------------------------------------------===##
9
Daniel Dunbar8c39c962011-10-18 19:27:24 +000010LEVEL := ../..
11LIBRARYNAME := BugpointPasses
12LOADABLE_MODULE := 1
13USEDLIBS :=
Rafael Espindolaf47d7092010-08-07 21:53:04 +000014
15# If we don't need RTTI or EH, there's no reason to export anything
16# from this plugin.
17ifneq ($(REQUIRES_RTTI), 1)
18ifneq ($(REQUIRES_EH), 1)
19EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/bugpoint.exports
20endif
21endif
22
23include $(LEVEL)/Makefile.common