blob: 7f872cc61a4ab4a1ef8fd7a4b0434b53a063543e [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 Spencer5b43fc92004-08-29 19:27:34 +000011PARALLEL_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 Brukman01592c22004-09-13 01:18:30 +000013 llvm-ar llvm-bcanalyzer llee
14
Reid Spenceraa4887b2004-10-26 03:12:11 +000015EXTRA_DIST := Makefile.JIT
16
Misha Brukman01592c22004-09-13 01:18:30 +000017include $(LEVEL)/Makefile.config
18
19ifeq ($(ARCH), Sparc)
20PARALLEL_DIRS := $(filter-out llee, $(PARALLEL_DIRS))
21endif
Chris Lattner2f7c9632001-06-06 20:29:01 +000022
23include $(LEVEL)/Makefile.common