blob: 42d8fce32ca88fd0bd4bed705fc525ecc29ef562 [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
15include $(LEVEL)/Makefile.config
16
17ifeq ($(ARCH), Sparc)
18PARALLEL_DIRS := $(filter-out llee, $(PARALLEL_DIRS))
19endif
Chris Lattner2f7c9632001-06-06 20:29:01 +000020
21include $(LEVEL)/Makefile.common