2004-01-05 13:28:15 +08:00
|
|
|
##===- tools/Makefile --------------------------------------*- Makefile -*-===##
|
2008-11-26 05:38:12 +08:00
|
|
|
#
|
2003-10-21 06:29:16 +08:00
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-30 04:07:17 +08:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2008-11-26 05:38:12 +08:00
|
|
|
#
|
2003-10-21 06:29:16 +08:00
|
|
|
##===----------------------------------------------------------------------===##
|
2004-01-05 13:28:15 +08:00
|
|
|
|
2002-12-06 11:53:40 +08:00
|
|
|
LEVEL := ..
|
2009-01-24 08:00:41 +08:00
|
|
|
|
|
|
|
# Build clang if present.
|
|
|
|
OPTIONAL_PARALLEL_DIRS := clang
|
|
|
|
|
2008-11-26 05:38:12 +08: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
|
2007-02-10 01:02:07 +08:00
|
|
|
# in parallel builds. Please retain this ordering.
|
2009-02-26 15:56:49 +08:00
|
|
|
DIRS := llvm-config
|
|
|
|
PARALLEL_DIRS := opt llvm-as llvm-dis \
|
2007-02-10 01:02:07 +08:00
|
|
|
llc llvm-ranlib llvm-ar llvm-nm \
|
2008-03-31 02:58:05 +08:00
|
|
|
llvm-ld llvm-prof llvm-link \
|
2009-02-26 17:08:43 +08:00
|
|
|
lli gccas gccld llvm-extract llvm-db \
|
2009-04-21 01:48:16 +08:00
|
|
|
bugpoint llvm-bcanalyzer llvm-stub llvmc
|
2007-12-09 07:58:46 +08:00
|
|
|
|
2006-09-09 02:33:49 +08:00
|
|
|
include $(LEVEL)/Makefile.config
|
2006-09-09 02:08:50 +08:00
|
|
|
|
2009-03-03 15:45:09 +08:00
|
|
|
ifeq ($(ENABLE_PIC),1)
|
2009-02-26 15:56:49 +08:00
|
|
|
DIRS += lto
|
|
|
|
ifdef BINUTILS_INCDIR
|
|
|
|
DIRS += gold
|
|
|
|
endif
|
2006-09-09 02:00:43 +08:00
|
|
|
endif
|
2006-05-31 05:20:55 +08:00
|
|
|
|
2009-03-12 03:49:42 +08:00
|
|
|
# No support for lto / gold on windows targets
|
|
|
|
ifeq ($(OS), $(filter $(OS), Cygwin MingW))
|
2009-03-12 05:05:21 +08:00
|
|
|
DIRS := $(filter-out lto gold, $(DIRS))
|
2009-03-12 03:49:42 +08:00
|
|
|
endif
|
|
|
|
|
2006-09-09 02:33:49 +08:00
|
|
|
include $(LEVEL)/Makefile.common
|