2006-11-17 03:32:33 +00:00
|
|
|
##===- runtime/libprofile/Makefile -------------------------*- Makefile -*-===##
|
2010-09-03 15:42:45 +00:00
|
|
|
#
|
2006-11-17 03:32:33 +00:00
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-29 20:11:13 +00:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2010-09-03 15:42:45 +00:00
|
|
|
#
|
2006-11-17 03:32:33 +00:00
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
LEVEL = ../..
|
2009-08-28 16:13:45 +00:00
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
|
2010-02-23 10:28:06 +00:00
|
|
|
ifneq ($(strip $(LLVMCC)),)
|
2006-11-17 03:32:33 +00:00
|
|
|
BYTECODE_LIBRARY = 1
|
2009-08-20 05:12:55 +00:00
|
|
|
endif
|
2006-11-17 03:32:33 +00:00
|
|
|
SHARED_LIBRARY = 1
|
|
|
|
LOADABLE_MODULE = 1
|
|
|
|
LIBRARYNAME = profile_rt
|
2010-09-03 15:42:45 +00:00
|
|
|
EXTRA_DIST = libprofile.exports
|
|
|
|
EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/libprofile.exports
|
2006-11-17 03:32:33 +00:00
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.common
|