blob: db586c2f115e0867365537619573e8552d1fec31 [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 Spencer36a987e2007-02-09 17:02:07 +000011# NOTE: The tools are organized into five groups of four consisting of one
12# large and three small executables. This is done to minimize memory load
13# in parallel builds. Please retain this ordering.
14PARALLEL_DIRS := llvm-config
15 opt llvm-as llvm-dis llvm-upgrade \
16 llc llvm-ranlib llvm-ar llvm-nm \
17 llvm-ld llvmc llvm-prof llvm-link \
18 lli gccas gccld llvm-extract llvm-db llvm2cpp \
19 bugpoint llvm-stub llvm-bcanalyzer llvm-stub \
20
Chris Lattner70c35372006-09-08 18:08:50 +000021
Chris Lattnercf8cb6d2006-09-08 18:33:49 +000022include $(LEVEL)/Makefile.config
Chris Lattner70c35372006-09-08 18:08:50 +000023
Chandler Carruth40e274b2007-01-08 06:25:29 +000024# Disable liblto on Windows until compatability is determined.
25ifneq ($(OS), MingW)
Anton Korobeynikov294492b2006-09-08 18:00:43 +000026PARALLEL_DIRS += lto
27endif
Reid Spencerac285882006-05-30 21:20:55 +000028
Chris Lattnercf8cb6d2006-09-08 18:33:49 +000029include $(LEVEL)/Makefile.common