6e259678b287c2575d7ef1adc16dea660c1323c5
[oota-llvm.git] / runtime / Makefile
1 ##===- 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
10 ifndef NO_RUNTIME_LIBS
11
12 LEVEL = ..
13 include $(LEVEL)/Makefile.config
14
15 PARALLEL_DIRS  := libprofile
16
17 # Disable libprofile: a faulty libtool is generated by autoconf which breaks the
18 # build on Sparc
19 ifeq ($(ARCH), Sparc)
20 PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
21 endif
22
23 include $(LEVEL)/Makefile.common
24
25 install::
26
27 endif