Skip to content

Commit

Permalink
Add missing file.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110521 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
espindola committed Aug 7, 2010
1 parent 3cb9626 commit f47d709
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions tools/bugpoint-passes/Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit f47d709

Please sign in to comment.