| John Criswell | e2fab73 | 2003-10-20 22:29:16 +0000 | [diff] [blame] | 1 | ##===- 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 Lattner | d11df3c | 2003-08-15 02:38:18 +0000 | [diff] [blame] | 9 | # llvm/runtime Makefile: Build all subdirectories automatically |
| Chris Lattner | 7aeed26 | 2002-01-23 19:57:59 +0000 | [diff] [blame] | 10 | |
| Chris Lattner | d11df3c | 2003-08-15 02:38:18 +0000 | [diff] [blame] | 11 | LEVEL = .. |
| Brian Gaeke | e9dd3f1 | 2003-11-16 06:51:53 +0000 | [diff] [blame^] | 12 | include $(LEVEL)/Makefile.config |
| 13 | ifneq ($(wildcard $(LLVMGCCDIR)),) |
| Chris Lattner | da86e6c | 2003-08-15 02:20:32 +0000 | [diff] [blame] | 14 | PARALLEL_DIRS := $(sort $(filter-out Output/, $(filter-out CVS/, $(wildcard */)))) |
| Brian Gaeke | e9dd3f1 | 2003-11-16 06:51:53 +0000 | [diff] [blame^] | 15 | else |
| 16 | PARALLEL_DIRS := |
| 17 | all :: |
| 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. |
| 22 | endif |
| Chris Lattner | c1e20ac | 2002-03-08 23:20:52 +0000 | [diff] [blame] | 23 | |
| Chris Lattner | d11df3c | 2003-08-15 02:38:18 +0000 | [diff] [blame] | 24 | include $(LEVEL)/Makefile.common |
| Chris Lattner | c1e20ac | 2002-03-08 23:20:52 +0000 | [diff] [blame] | 25 | |
| 26 | # Install target for libraries: Copy into the gcc install directory in chris's |
| 27 | # tree... |
| 28 | # |
| 29 | install:: |
| Chris Lattner | 0305141 | 2002-02-26 21:48:24 +0000 | [diff] [blame] | 30 | |
| 31 | clean:: |