2004-01-05 06:28:15 +01:00
|
|
|
##===- tools/Makefile --------------------------------------*- Makefile -*-===##
|
2003-10-21 00:29:16 +02:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file was developed by the LLVM research group and is distributed under
|
|
|
|
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
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 \
|
2007-02-09 18:02:07 +01:00
|
|
|
opt llvm-as llvm-dis llvm-upgrade \
|
|
|
|
llc llvm-ranlib llvm-ar llvm-nm \
|
2007-02-09 18:18:42 +01:00
|
|
|
llvm-ld llvmc llvm-prof llvm-link \
|
2007-02-09 18:02:07 +01:00
|
|
|
lli gccas gccld llvm-extract llvm-db llvm2cpp \
|
2007-02-09 18:18:42 +01:00
|
|
|
bugpoint llvm-stub llvm-bcanalyzer llvm-stub
|
2007-02-09 18:02:07 +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
|
|
|
|
2007-01-08 07:25:29 +01:00
|
|
|
# Disable liblto on Windows until compatability is determined.
|
|
|
|
ifneq ($(OS), MingW)
|
2006-09-08 20:00:43 +02:00
|
|
|
PARALLEL_DIRS += lto
|
|
|
|
endif
|
2006-05-30 23:20:55 +02:00
|
|
|
|
2006-09-08 20:33:49 +02:00
|
|
|
include $(LEVEL)/Makefile.common
|