2004-01-05 06:28:15 +01:00
|
|
|
##===- tools/Makefile --------------------------------------*- Makefile -*-===##
|
2003-10-21 00:29:16 +02:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-29 21:07:17 +01:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2003-10-21 00:29:16 +02:00
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2004-01-05 06:28:15 +01:00
|
|
|
|
2002-12-06 04:53:40 +01:00
|
|
|
LEVEL := ..
|
2007-02-09 18:02:07 +01:00
|
|
|
# NOTE: The tools are organized into five groups of four consisting of one
|
|
|
|
# large and three small executables. This is done to minimize memory load
|
|
|
|
# in parallel builds. Please retain this ordering.
|
2007-02-09 18:18:42 +01:00
|
|
|
PARALLEL_DIRS := llvm-config \
|
2008-03-25 06:05:58 +01:00
|
|
|
opt llvm-as llvm-dis \
|
2007-02-09 18:02:07 +01:00
|
|
|
llc llvm-ranlib llvm-ar llvm-nm \
|
2008-03-30 20:58:05 +02:00
|
|
|
llvm-ld llvm-prof llvm-link \
|
2008-04-24 00:46:24 +02:00
|
|
|
lli gccas gccld llvm-extract llvm-db \
|
2008-03-23 09:57:20 +01:00
|
|
|
bugpoint llvm-bcanalyzer llvm-stub llvmc2
|
2007-12-09 00:58:46 +01:00
|
|
|
|
2006-09-08 20:08:50 +02:00
|
|
|
|
2006-09-08 20:33:49 +02:00
|
|
|
include $(LEVEL)/Makefile.config
|
2006-09-08 20:08:50 +02:00
|
|
|
|
2008-02-29 20:31:29 +01:00
|
|
|
# only build new lto project on Darwin for now
|
|
|
|
ifeq ($(OS),Darwin)
|
2008-06-30 20:15:01 +02:00
|
|
|
PARALLEL_DIRS += lto
|
2006-09-08 20:00:43 +02:00
|
|
|
endif
|
2006-05-30 23:20:55 +02:00
|
|
|
|
2006-09-08 20:33:49 +02:00
|
|
|
include $(LEVEL)/Makefile.common
|