hanchenye-llvm-project/llvm/runtime/Makefile

32 lines
806 B
Makefile
Raw Normal View History

##===- runtime/Makefile ------------------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
LEVEL = ..
include $(LEVEL)/Makefile.config
2009-08-28 10:20:39 +08:00
ifndef NO_RUNTIME_LIBS
2009-03-02 11:46:48 +08:00
PARALLEL_DIRS := libprofile
# Disable libprofile: a faulty libtool is generated by autoconf which breaks the
# build on Sparc
ifeq ($(ARCH), Sparc)
PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
endif
ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW Minix))
PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
endif
endif
2009-08-28 10:20:39 +08:00
include $(LEVEL)/Makefile.common
2009-08-28 10:20:39 +08:00
install::