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