blob: 6e259678b287c2575d7ef1adc16dea660c1323c5 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001##===- runtime/Makefile ------------------------------------*- Makefile -*-===##
2#
3# The LLVM Compiler Infrastructure
4#
Chris Lattner3876aa72007-12-29 20:11:13 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007#
8##===----------------------------------------------------------------------===##
9
Daniel Dunbar41d850e2009-08-27 23:43:28 +000010ifndef NO_RUNTIME_LIBS
11
Dan Gohmanf17a25c2007-07-18 16:29:46 +000012LEVEL = ..
13include $(LEVEL)/Makefile.config
14
Gordon Henriksen4b63fbc2009-03-02 03:46:48 +000015PARALLEL_DIRS := libprofile
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016
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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022
23include $(LEVEL)/Makefile.common
24
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025install::
26
Daniel Dunbar41d850e2009-08-27 23:43:28 +000027endif