blob: d0e85d58264f6c9fb034565ac58bb7e781e8f030 [file] [log] [blame]
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001##===- runtime/Makefile ------------------------------------*- Makefile -*-===##
2#
3# The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
7#
8##===----------------------------------------------------------------------===##
9
10LEVEL = ..
11include $(LEVEL)/Makefile.config
12
13ifndef NO_RUNTIME_LIBS
14
15PARALLEL_DIRS := libprofile
16
17# Disable libprofile: a faulty libtool is generated by autoconf which breaks the
18# build on Sparc
19ifeq ($(ARCH), Sparc)
20PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
21endif
22
Shih-wei Liao7abe37e2010-04-28 01:47:00 -070023ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW Minix))
Shih-wei Liaoe4454322010-04-07 12:21:42 -070024PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
25endif
26
Shih-wei Liaoe264f622010-02-10 11:10:31 -080027endif
28
29include $(LEVEL)/Makefile.common
30
31install::