2006-11-17 03:32:33 +00:00
|
|
|
##===- runtime/Makefile ------------------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# 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.
|
2006-11-17 03:32:33 +00:00
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
LEVEL = ..
|
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
|
2009-08-28 02:20:39 +00:00
|
|
|
ifndef NO_RUNTIME_LIBS
|
|
|
|
|
2009-03-02 03:46:48 +00:00
|
|
|
PARALLEL_DIRS := libprofile
|
2006-11-17 03:32:33 +00:00
|
|
|
|
|
|
|
# Disable libprofile: a faulty libtool is generated by autoconf which breaks the
|
|
|
|
# build on Sparc
|
|
|
|
ifeq ($(ARCH), Sparc)
|
|
|
|
PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
|
|
|
|
endif
|
|
|
|
|
2010-04-15 19:51:42 +00:00
|
|
|
ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW Minix))
|
2010-03-05 01:00:34 +00:00
|
|
|
PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
|
|
|
|
endif
|
|
|
|
|
2009-08-27 23:43:28 +00:00
|
|
|
endif
|
2009-08-28 02:20:39 +00:00
|
|
|
|
2009-08-28 03:06:28 +00:00
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
2009-08-28 02:20:39 +00:00
|
|
|
install::
|