2003-10-21 00:26:57 +02:00
|
|
|
##===- lib/Transforms/Hello/Makefile -----------------------*- Makefile -*-===##
|
2009-01-09 17:44:42 +01:00
|
|
|
#
|
2003-10-21 00:26:57 +02:00
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-29 21:09:26 +01:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2009-01-09 17:44:42 +01:00
|
|
|
#
|
2003-10-21 00:26:57 +02:00
|
|
|
##===----------------------------------------------------------------------===##
|
2004-09-15 19:53:52 +02:00
|
|
|
|
2002-08-08 22:10:38 +02:00
|
|
|
LEVEL = ../../..
|
2004-10-28 01:18:45 +02:00
|
|
|
LIBRARYNAME = LLVMHello
|
2005-01-11 05:33:32 +01:00
|
|
|
LOADABLE_MODULE = 1
|
2009-01-09 17:44:42 +01:00
|
|
|
USEDLIBS =
|
2002-08-08 22:10:38 +02:00
|
|
|
|
2010-06-24 19:36:51 +02:00
|
|
|
# If we don't need RTTI or EH, there's no reason to export anything
|
|
|
|
# from the hello plugin.
|
|
|
|
ifneq ($(REQUIRES_RTTI), 1)
|
|
|
|
ifneq ($(REQUIRES_EH), 1)
|
|
|
|
EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/Hello.exports
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2002-08-08 22:10:38 +02:00
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|