Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | ##===- runtime/Makefile ------------------------------------*- Makefile -*-===## |
| 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
Chris Lattner | 3876aa7 | 2007-12-29 20:11:13 +0000 | [diff] [blame] | 5 | # This file is distributed under the University of Illinois Open Source |
| 6 | # License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
| 9 | |
| 10 | LEVEL = .. |
| 11 | include $(LEVEL)/Makefile.config |
| 12 | |
Gordon Henriksen | 4b63fbc | 2009-03-02 03:46:48 +0000 | [diff] [blame] | 13 | PARALLEL_DIRS := libprofile |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 14 | |
| 15 | # Disable libprofile: a faulty libtool is generated by autoconf which breaks the |
| 16 | # build on Sparc |
| 17 | ifeq ($(ARCH), Sparc) |
| 18 | PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS)) |
| 19 | endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 20 | |
| 21 | include $(LEVEL)/Makefile.common |
| 22 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 23 | install:: |
| 24 | |