Mark variable 'NoImplicitFloatOps' used only in an assert as used.
[llvm.git] / tools / bugpoint-passes / Makefile
blobb4ad3e4ad3b0eca2365865d98bc2d1281e583beb
1 ##===- tools/bugpoint-passes/Makefile -- -------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 ##===----------------------------------------------------------------------===##
10 LEVEL = ../..
11 LIBRARYNAME = BugpointPasses
12 LOADABLE_MODULE = 1
13 USEDLIBS =
15 # If we don't need RTTI or EH, there's no reason to export anything
16 # from this plugin.
17 ifneq ($(REQUIRES_RTTI), 1)
18 ifneq ($(REQUIRES_EH), 1)
19 EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/bugpoint.exports
20 endif
21 endif
23 include $(LEVEL)/Makefile.common