2004-08-09 22:07:44 +02:00
|
|
|
##===- runtime/Makefile ------------------------------------*- Makefile -*-===##
|
2003-10-21 00:29:16 +02:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file was developed by the LLVM research group and is distributed under
|
|
|
|
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2002-01-23 20:57:59 +01:00
|
|
|
|
2003-08-15 04:38:18 +02:00
|
|
|
LEVEL = ..
|
2003-11-16 07:51:53 +01:00
|
|
|
include $(LEVEL)/Makefile.config
|
2003-12-08 21:12:46 +01:00
|
|
|
|
2006-04-07 23:45:23 +02:00
|
|
|
ifeq ($(LLVMGCC_MAJVERS),4)
|
2006-04-07 00:15:51 +02:00
|
|
|
PARALLEL_DIRS :=
|
|
|
|
install all::
|
2006-04-07 20:41:16 +02:00
|
|
|
$(Echo) "Warning: These runtime libraries only need to be built with"
|
2006-04-07 00:15:51 +02:00
|
|
|
$(Echo) "Warning: llvm-gcc version 3. They are automatically included"
|
|
|
|
$(Echo) "Warning: with llvm-gcc version 4 and beyond"
|
|
|
|
else
|
2006-04-02 16:34:26 +02:00
|
|
|
ifneq ($(wildcard $(LLVMGCC)),)
|
2005-01-13 17:51:19 +01:00
|
|
|
PARALLEL_DIRS := GCCLibraries libdummy libprofile libtrace GC
|
2003-11-16 07:51:53 +01:00
|
|
|
else
|
|
|
|
PARALLEL_DIRS :=
|
2003-12-08 21:12:46 +01:00
|
|
|
install all ::
|
2006-04-02 16:34:26 +02:00
|
|
|
@echo '********' Warning: Your LLVMGCCDIR is set incorrectly. Check
|
2003-11-16 07:51:53 +01:00
|
|
|
@echo '********' Warning: llvm/Makefile.config to make sure it matches
|
2006-04-02 16:34:26 +02:00
|
|
|
@echo '********' Warning: the directory where the C front-end is
|
|
|
|
@echo '********' Warning: installed,and re-run configure if it does not.
|
2003-11-16 07:51:53 +01:00
|
|
|
endif
|
2002-03-09 00:20:52 +01:00
|
|
|
|
2004-09-08 22:30:26 +02:00
|
|
|
# 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
|
2006-04-07 00:15:51 +02:00
|
|
|
endif
|
2004-09-08 22:30:26 +02:00
|
|
|
|
2003-08-15 04:38:18 +02:00
|
|
|
include $(LEVEL)/Makefile.common
|
2002-03-09 00:20:52 +01:00
|
|
|
|
2004-08-09 22:07:44 +02:00
|
|
|
# Install target for libraries: Copy into $LLVMGCCDIR/bytecode-libs
|
2002-03-09 00:20:52 +01:00
|
|
|
#
|
|
|
|
install::
|
2006-04-07 20:41:16 +02:00
|
|
|
|