Chris Lattner | 6d47bae | 2004-01-05 05:28:15 +0000 | [diff] [blame] | 1 | ##===- tools/Makefile --------------------------------------*- Makefile -*-===## |
John Criswell | e2fab73 | 2003-10-20 22:29:16 +0000 | [diff] [blame] | 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 | 6d47bae | 2004-01-05 05:28:15 +0000 | [diff] [blame] | 9 | |
Chris Lattner | 698e9ce | 2002-12-06 03:53:40 +0000 | [diff] [blame] | 10 | LEVEL := .. |
Reid Spencer | 6cf4acc | 2004-10-28 03:53:02 +0000 | [diff] [blame] | 11 | PARALLEL_DIRS := llvm-as llvm-dis opt gccas llc llvm-link lli gccld llvm-stub \ |
| 12 | analyze extract bugpoint llvm-nm llvm-prof llvm-db \ |
Reid Spencer | cd18a83 | 2004-11-14 22:13:59 +0000 | [diff] [blame] | 13 | llvm-ar llvm-ranlib llvm-bcanalyzer llee llvmc llvm-ld |
Misha Brukman | 247384c | 2004-09-13 01:18:30 +0000 | [diff] [blame] | 14 | |
Reid Spencer | 20ac4e3 | 2004-10-26 03:12:11 +0000 | [diff] [blame] | 15 | EXTRA_DIST := Makefile.JIT |
| 16 | |
Misha Brukman | 247384c | 2004-09-13 01:18:30 +0000 | [diff] [blame] | 17 | include $(LEVEL)/Makefile.config |
| 18 | |
| 19 | ifeq ($(ARCH), Sparc) |
| 20 | PARALLEL_DIRS := $(filter-out llee, $(PARALLEL_DIRS)) |
| 21 | endif |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 22 | |
| 23 | include $(LEVEL)/Makefile.common |