Chris Lattner | 144992e | 2004-01-05 05:28:15 +0000 | [diff] [blame] | 1 | ##===- tools/Makefile --------------------------------------*- Makefile -*-===## |
John Criswell | abe5cdc | 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 | 144992e | 2004-01-05 05:28:15 +0000 | [diff] [blame] | 9 | |
Chris Lattner | 71b82e3 | 2002-12-06 03:53:40 +0000 | [diff] [blame] | 10 | LEVEL := .. |
Reid Spencer | 5b43fc9 | 2004-08-29 19:27:34 +0000 | [diff] [blame] | 11 | PARALLEL_DIRS := llvmc llvm-as llvm-dis opt gccas llc llvm-link lli gccld \ |
| 12 | llvm-stub analyze extract bugpoint llvm-nm llvm-prof llvm-db \ |
Misha Brukman | 01592c2 | 2004-09-13 01:18:30 +0000 | [diff] [blame^] | 13 | llvm-ar llvm-bcanalyzer llee |
| 14 | |
| 15 | include $(LEVEL)/Makefile.config |
| 16 | |
| 17 | ifeq ($(ARCH), Sparc) |
| 18 | PARALLEL_DIRS := $(filter-out llee, $(PARALLEL_DIRS)) |
| 19 | endif |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 20 | |
| 21 | include $(LEVEL)/Makefile.common |