| ##===- runtime/Makefile ------------------------------------*- Makefile -*-===##
|
| # The LLVM Compiler Infrastructure
|
| # This file is distributed under the University of Illinois Open Source
|
| # License. See LICENSE.TXT for details.
|
| ##===----------------------------------------------------------------------===##
|
| include $(LEVEL)/Makefile.config
|
| PARALLEL_DIRS := libprofile
|
| # Disable libprofile: a faulty libtool is generated by autoconf which breaks the
|
| PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
|
| ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW Minix))
|
| PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
|
| include $(LEVEL)/Makefile.common
|