blob: 2c0040055082470ce613d9d03402bd10e1368eca [file] [log] [blame]
Chris Lattner144992e2004-01-05 05:28:15 +00001##===- tools/Makefile --------------------------------------*- Makefile -*-===##
John Criswellabe5cdc2003-10-20 22:29:16 +00002#
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 Lattner144992e2004-01-05 05:28:15 +00009
Chris Lattner71b82e32002-12-06 03:53:40 +000010LEVEL := ..
Reid Spencere8ee9b22004-10-28 03:53:02 +000011PARALLEL_DIRS := llvm-as llvm-dis opt gccas llc llvm-link lli gccld llvm-stub \
Reid Spencer0306c682004-12-17 01:46:41 +000012 analyze extract llvm-nm llvm-prof llvm-ar llvm-ranlib \
13 llvm-bcanalyzer llvmc llvm-ld
14
15# The bugpoint and llvm-db tools are not portable to Win32 because they depend
16# on fork(2) behavior that Win32 doesn't have. At some point they'll be
17# rewritten to not depend on fork at which time they should be added back to
18# the list above.
19ifneq($(OS),Win32)
20PARALLEL_DIRS += bugpoint llvm-db
21endif
Misha Brukman01592c22004-09-13 01:18:30 +000022
Reid Spenceraa4887b2004-10-26 03:12:11 +000023EXTRA_DIST := Makefile.JIT
24
Misha Brukman01592c22004-09-13 01:18:30 +000025include $(LEVEL)/Makefile.config
26
27ifeq ($(ARCH), Sparc)
28PARALLEL_DIRS := $(filter-out llee, $(PARALLEL_DIRS))
29endif
Chris Lattner2f7c9632001-06-06 20:29:01 +000030
31include $(LEVEL)/Makefile.common