blob: 30d96a755c980c4df986544836ac8d5b572b2c62 [file] [log] [blame]
John Criswelle2fab732003-10-20 22:29:16 +00001##===- runtime/Makefile ------------------------------*- Makefile -*-===##
2#
3# The LLVM Compiler Infrastructure
4#
5# This file was developed by the LLVM research group and is distributed under
6# the University of Illinois Open Source License. See LICENSE.TXT for details.
7#
8##===----------------------------------------------------------------------===##
Chris Lattnerd11df3c2003-08-15 02:38:18 +00009# llvm/runtime Makefile: Build all subdirectories automatically
Chris Lattner7aeed262002-01-23 19:57:59 +000010
Chris Lattnerd11df3c2003-08-15 02:38:18 +000011LEVEL = ..
Brian Gaekee9dd3f12003-11-16 06:51:53 +000012include $(LEVEL)/Makefile.config
13ifneq ($(wildcard $(LLVMGCCDIR)),)
Chris Lattnerda86e6c2003-08-15 02:20:32 +000014PARALLEL_DIRS := $(sort $(filter-out Output/, $(filter-out CVS/, $(wildcard */))))
Brian Gaekee9dd3f12003-11-16 06:51:53 +000015else
16PARALLEL_DIRS :=
17all ::
18 @echo '********' Warning: Your LLVMGCCDIR is set incorrectly. Double-check
19 @echo '********' Warning: llvm/Makefile.config to make sure it matches
20 @echo '********' Warning: the directory where the C front-end is installed,
21 @echo '********' Warning: and re-run configure if it does not.
22endif
Chris Lattnerc1e20ac2002-03-08 23:20:52 +000023
Chris Lattnerd11df3c2003-08-15 02:38:18 +000024include $(LEVEL)/Makefile.common
Chris Lattnerc1e20ac2002-03-08 23:20:52 +000025
26# Install target for libraries: Copy into the gcc install directory in chris's
27# tree...
28#
29install::
Chris Lattner03051412002-02-26 21:48:24 +000030
31clean::