2006-11-17 04:32:33 +01:00
|
|
|
##===- runtime/libprofile/Makefile -------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# 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.
|
2006-11-17 04:32:33 +01:00
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
LEVEL = ../..
|
2009-08-28 18:13:45 +02:00
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
|
2009-08-20 07:12:55 +02:00
|
|
|
ifneq ($(wildcard $(LLVMGCC)),)
|
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
|
|
|
SHARED_LIBRARY = 1
|
|
|
|
LOADABLE_MODULE = 1
|
|
|
|
LIBRARYNAME = profile_rt
|
|
|
|
EXTRA_DIST = exported_symbols.lst
|
|
|
|
EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/exported_symbols.lst
|
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.common
|