2004-04-24 00:10:56 +00:00
|
|
|
#===- ./Makefile -------------------------------------------*- Makefile -*--===#
|
2009-01-08 02:11:55 +00:00
|
|
|
#
|
2003-10-20 22:26:57 +00:00
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-29 20:11:13 +00:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2009-01-08 02:11:55 +00:00
|
|
|
#
|
2004-04-24 00:10:56 +00:00
|
|
|
#===------------------------------------------------------------------------===#
|
2006-06-02 22:41:18 +00:00
|
|
|
|
2006-07-26 19:10:34 +00:00
|
|
|
LEVEL := .
|
2006-09-04 04:27:07 +00:00
|
|
|
|
|
|
|
# Top-Level LLVM Build Stages:
|
|
|
|
# 1. Build lib/System and lib/Support, which are used by utils (tblgen).
|
|
|
|
# 2. Build utils, which is used by VMCore.
|
|
|
|
# 3. Build VMCore, which builds the Intrinsics.inc file used by libs.
|
|
|
|
# 4. Build libs, which are needed by llvm-config.
|
|
|
|
# 5. Build llvm-config, which determines inter-lib dependencies for tools.
|
2006-11-17 03:32:33 +00:00
|
|
|
# 6. Build tools, runtime, docs.
|
2006-09-04 04:27:07 +00:00
|
|
|
#
|
2008-11-10 07:33:13 +00:00
|
|
|
# When cross-compiling, there are some things (tablegen) that need to
|
|
|
|
# be build for the build system first.
|
|
|
|
ifeq ($(BUILD_DIRS_ONLY),1)
|
|
|
|
DIRS := lib/System lib/Support utils
|
|
|
|
OPTIONAL_DIRS :=
|
|
|
|
else
|
|
|
|
DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \
|
|
|
|
tools runtime docs
|
|
|
|
OPTIONAL_DIRS := examples projects bindings
|
|
|
|
endif
|
2007-07-11 23:44:08 +00:00
|
|
|
|
2009-01-01 02:24:48 +00:00
|
|
|
EXTRA_DIST := test unittests llvm.spec include win32 Xcode
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2009-01-08 02:11:55 +00:00
|
|
|
include $(LEVEL)/Makefile.config
|
2006-04-06 22:15:51 +00:00
|
|
|
|
2007-03-29 18:14:00 +00:00
|
|
|
# llvm-gcc4 doesn't need runtime libs. llvm-gcc4 is the only supported one.
|
|
|
|
# FIXME: Remove runtime entirely once we have an understanding of where
|
|
|
|
# libprofile etc should go.
|
|
|
|
#ifeq ($(LLVMGCC_MAJVERS),4)
|
2006-11-17 03:32:33 +00:00
|
|
|
DIRS := $(filter-out runtime, $(DIRS))
|
2007-03-29 18:14:00 +00:00
|
|
|
#endif
|
2006-11-17 03:32:33 +00:00
|
|
|
|
2006-07-26 19:10:34 +00:00
|
|
|
ifeq ($(MAKECMDGOALS),libs-only)
|
2006-11-17 03:32:33 +00:00
|
|
|
DIRS := $(filter-out tools runtime docs, $(DIRS))
|
2006-07-26 19:10:34 +00:00
|
|
|
OPTIONAL_DIRS :=
|
|
|
|
endif
|
2006-06-02 22:41:18 +00:00
|
|
|
|
2007-12-13 02:17:17 +00:00
|
|
|
ifeq ($(MAKECMDGOALS),install-libs)
|
|
|
|
DIRS := $(filter-out tools runtime docs, $(DIRS))
|
|
|
|
OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
|
|
|
|
endif
|
|
|
|
|
2005-05-25 21:03:17 +00:00
|
|
|
ifeq ($(MAKECMDGOALS),tools-only)
|
2006-11-17 03:32:33 +00:00
|
|
|
DIRS := $(filter-out runtime docs, $(DIRS))
|
2006-07-26 19:10:34 +00:00
|
|
|
OPTIONAL_DIRS :=
|
2004-02-03 23:05:24 +00:00
|
|
|
endif
|
2006-06-02 22:41:18 +00:00
|
|
|
|
2009-01-19 19:48:23 +00:00
|
|
|
ifeq ($(MAKECMDGOALS),install-clang)
|
2009-03-26 23:43:14 +00:00
|
|
|
DIRS := tools/clang/tools/driver tools/clang/tools/clang-cc \
|
|
|
|
tools/clang/lib/Headers
|
2009-01-19 19:48:23 +00:00
|
|
|
OPTIONAL_DIRS :=
|
|
|
|
NO_INSTALL = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MAKECMDGOALS),clang-only)
|
|
|
|
DIRS := $(filter-out tools runtime docs, $(DIRS)) tools/clang
|
|
|
|
OPTIONAL_DIRS :=
|
|
|
|
endif
|
|
|
|
|
2009-01-01 02:24:48 +00:00
|
|
|
ifeq ($(MAKECMDGOALS),unittests)
|
|
|
|
DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
|
|
|
|
OPTIONAL_DIRS :=
|
|
|
|
endif
|
|
|
|
|
2009-01-08 02:11:55 +00:00
|
|
|
# Don't install utils, examples, or projects they are only used to
|
2007-02-21 06:23:20 +00:00
|
|
|
# build LLVM.
|
|
|
|
ifeq ($(MAKECMDGOALS),install)
|
|
|
|
DIRS := $(filter-out utils, $(DIRS))
|
2007-09-18 12:49:39 +00:00
|
|
|
OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
|
2007-02-21 06:23:20 +00:00
|
|
|
endif
|
|
|
|
|
2008-11-10 07:33:13 +00:00
|
|
|
# If we're cross-compiling, build the build-hosted tools first
|
|
|
|
ifeq ($(LLVM_CROSS_COMPILING),1)
|
|
|
|
all:: cross-compile-build-tools
|
|
|
|
|
|
|
|
clean::
|
|
|
|
$(Verb) rm -rf BuildTools
|
|
|
|
|
|
|
|
cross-compile-build-tools:
|
|
|
|
$(Verb) if [ ! -f BuildTools/Makefile ]; then \
|
|
|
|
$(MKDIR) BuildTools; \
|
|
|
|
cd BuildTools ; \
|
|
|
|
$(PROJ_SRC_DIR)/configure ; \
|
|
|
|
cd .. ; \
|
|
|
|
fi; \
|
|
|
|
($(MAKE) -C BuildTools BUILD_DIRS_ONLY=1 ) || exit 1;
|
|
|
|
endif
|
|
|
|
|
2006-06-02 22:41:18 +00:00
|
|
|
# Include the main makefile machinery.
|
2006-04-08 02:14:37 +00:00
|
|
|
include $(LLVM_SRC_ROOT)/Makefile.rules
|
|
|
|
|
2005-05-24 02:33:20 +00:00
|
|
|
# Specify options to pass to configure script when we're
|
|
|
|
# running the dist-check target
|
|
|
|
DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
|
|
|
|
|
2004-11-25 09:08:54 +00:00
|
|
|
.PHONY: debug-opt-prof
|
|
|
|
debug-opt-prof:
|
|
|
|
$(Echo) Building Debug Version
|
|
|
|
$(Verb) $(MAKE)
|
|
|
|
$(Echo)
|
|
|
|
$(Echo) Building Optimized Version
|
|
|
|
$(Echo)
|
|
|
|
$(Verb) $(MAKE) ENABLE_OPTIMIZED=1
|
|
|
|
$(Echo)
|
|
|
|
$(Echo) Building Profiling Version
|
|
|
|
$(Echo)
|
|
|
|
$(Verb) $(MAKE) ENABLE_PROFILING=1
|
|
|
|
|
2004-10-25 08:27:37 +00:00
|
|
|
dist-hook::
|
2004-10-30 09:19:36 +00:00
|
|
|
$(Echo) Eliminating files constructed by configure
|
|
|
|
$(Verb) $(RM) -f \
|
2008-05-29 17:41:17 +00:00
|
|
|
$(TopDistDir)/include/llvm/ADT/iterator.h \
|
2004-10-26 07:05:09 +00:00
|
|
|
$(TopDistDir)/include/llvm/Config/config.h \
|
|
|
|
$(TopDistDir)/include/llvm/Support/DataTypes.h \
|
|
|
|
$(TopDistDir)/include/llvm/Support/ThreadSupport.h
|
2004-10-25 08:27:37 +00:00
|
|
|
|
2009-01-19 19:48:23 +00:00
|
|
|
clang-only: all
|
2004-02-03 22:56:40 +00:00
|
|
|
tools-only: all
|
2005-05-25 21:03:17 +00:00
|
|
|
libs-only: all
|
2009-01-19 19:48:23 +00:00
|
|
|
install-clang: install
|
2007-12-13 02:17:17 +00:00
|
|
|
install-libs: install
|
2005-08-25 04:59:49 +00:00
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Make sure the generated headers are up-to-date. This must be kept in
|
|
|
|
# sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
FilesToConfig := \
|
|
|
|
include/llvm/Config/config.h \
|
|
|
|
include/llvm/Support/DataTypes.h \
|
2008-05-29 17:41:17 +00:00
|
|
|
include/llvm/ADT/iterator.h
|
2005-08-25 04:59:49 +00:00
|
|
|
FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
|
|
|
|
|
|
|
|
all-local:: $(FilesToConfigPATH)
|
2009-01-08 02:11:55 +00:00
|
|
|
$(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
|
2005-08-25 04:59:49 +00:00
|
|
|
$(Echo) Regenerating $*
|
|
|
|
$(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
|
|
|
|
.PRECIOUS: $(FilesToConfigPATH)
|
2006-04-07 15:58:18 +00:00
|
|
|
|
2006-04-07 16:21:59 +00:00
|
|
|
# NOTE: This needs to remain as the last target definition in this file so
|
|
|
|
# that it gets executed last.
|
2008-11-10 07:33:13 +00:00
|
|
|
ifneq ($(BUILD_DIRS_ONLY),1)
|
2009-01-08 02:11:55 +00:00
|
|
|
all::
|
2006-04-07 15:58:18 +00:00
|
|
|
$(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build
|
|
|
|
ifeq ($(BuildMode),Debug)
|
|
|
|
$(Echo) '*****' Note: Debug build can be 10 times slower than an
|
|
|
|
$(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
|
2008-02-28 11:48:14 +00:00
|
|
|
$(Echo) '*****' make an optimized build. Alternatively you can
|
|
|
|
$(Echo) '*****' configure with --enable-optimized.
|
2006-04-07 15:58:18 +00:00
|
|
|
endif
|
2008-11-10 07:33:13 +00:00
|
|
|
endif
|
2006-04-07 16:21:59 +00:00
|
|
|
|
2006-06-01 07:27:53 +00:00
|
|
|
check-llvm2cpp:
|
2007-04-15 06:22:48 +00:00
|
|
|
$(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
|
2006-07-26 19:10:34 +00:00
|
|
|
|
2007-04-15 06:18:50 +00:00
|
|
|
check-one:
|
2007-04-15 06:22:48 +00:00
|
|
|
$(Verb)$(MAKE) -C test check-one TESTONE=$(TESTONE)
|
2007-04-15 06:18:50 +00:00
|
|
|
|
2009-01-08 02:11:55 +00:00
|
|
|
srpm: $(LLVM_OBJ_ROOT)/llvm.spec
|
2006-08-16 00:43:50 +00:00
|
|
|
rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
|
|
|
|
|
2009-01-08 02:11:55 +00:00
|
|
|
rpm: $(LLVM_OBJ_ROOT)/llvm.spec
|
2006-08-16 00:43:50 +00:00
|
|
|
rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
|
|
|
|
|
2007-02-05 23:18:58 +00:00
|
|
|
show-footprint:
|
|
|
|
$(Verb) du -sk $(LibDir)
|
|
|
|
$(Verb) du -sk $(ToolDir)
|
|
|
|
$(Verb) du -sk $(ExmplDir)
|
|
|
|
$(Verb) du -sk $(ObjDir)
|
|
|
|
|
2007-07-08 03:50:22 +00:00
|
|
|
build-for-llvm-top:
|
|
|
|
$(Verb) if test ! -f ./config.status ; then \
|
|
|
|
./configure --prefix="$(LLVM_TOP)/install" \
|
|
|
|
--with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
|
|
|
|
fi
|
|
|
|
$(Verb) $(MAKE) tools-only
|
|
|
|
|
2008-02-28 13:06:50 +00:00
|
|
|
SVN = svn
|
2008-02-28 14:58:14 +00:00
|
|
|
SVN-UPDATE-OPTIONS =
|
2008-02-28 13:06:50 +00:00
|
|
|
AWK = awk
|
2008-02-28 18:46:56 +00:00
|
|
|
SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}' \
|
|
|
|
| LANG=C xargs $(SVN) info 2>/dev/null \
|
|
|
|
| $(AWK) '/Path:\ / {print $$2}'
|
2008-02-28 13:06:50 +00:00
|
|
|
|
|
|
|
update:
|
2008-03-21 22:17:07 +00:00
|
|
|
$(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
|
|
|
|
@ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
|
2008-02-28 13:06:50 +00:00
|
|
|
|
2009-01-04 23:12:21 +00:00
|
|
|
happiness: update all check unittests
|
2008-02-28 13:06:50 +00:00
|
|
|
|
|
|
|
.PHONY: srpm rpm update happiness
|
2007-07-08 03:50:22 +00:00
|
|
|
|
2008-02-28 11:48:14 +00:00
|
|
|
# declare all targets at this level to be serial:
|
|
|
|
|
|
|
|
.NOTPARALLEL:
|
|
|
|
|