blob: a90fa4728583f40a7f5c932f7662f7c99348444c [file] [log] [blame]
Chris Lattner6d47bae2004-01-05 05:28:15 +00001##===- tools/Makefile --------------------------------------*- Makefile -*-===##
John Criswelle2fab732003-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 Lattner6d47bae2004-01-05 05:28:15 +00009
Chris Lattner698e9ce2002-12-06 03:53:40 +000010LEVEL := ..
Reid Spencer6cf4acc2004-10-28 03:53:02 +000011PARALLEL_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 Spencercd18a832004-11-14 22:13:59 +000013 llvm-ar llvm-ranlib llvm-bcanalyzer llee llvmc llvm-ld
Misha Brukman247384c2004-09-13 01:18:30 +000014
Reid Spencer20ac4e32004-10-26 03:12:11 +000015EXTRA_DIST := Makefile.JIT
16
Misha Brukman247384c2004-09-13 01:18:30 +000017include $(LEVEL)/Makefile.config
18
19ifeq ($(ARCH), Sparc)
20PARALLEL_DIRS := $(filter-out llee, $(PARALLEL_DIRS))
21endif
Chris Lattner00950542001-06-06 20:29:01 +000022
23include $(LEVEL)/Makefile.common