blob: 20395e9470d006ef75b7234c193d9ef05c78f4e2 [file] [log] [blame]
Misha Brukman6d5ab862004-04-24 00:10:56 +00001#===- ./Makefile -------------------------------------------*- Makefile -*--===#
Misha Brukmanef5dc702009-01-08 02:11:55 +00002#
John Criswelle488e932003-10-20 22:26:57 +00003# The LLVM Compiler Infrastructure
4#
Chris Lattner57360d12007-12-29 20:11:13 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Misha Brukmanef5dc702009-01-08 02:11:55 +00007#
Misha Brukman6d5ab862004-04-24 00:10:56 +00008#===------------------------------------------------------------------------===#
Chris Lattner22033b22006-06-02 22:41:18 +00009
Chris Lattner5720be42006-07-26 19:10:34 +000010LEVEL := .
Chris Lattner87b51012006-09-04 04:27:07 +000011
12# Top-Level LLVM Build Stages:
13# 1. Build lib/System and lib/Support, which are used by utils (tblgen).
14# 2. Build utils, which is used by VMCore.
15# 3. Build VMCore, which builds the Intrinsics.inc file used by libs.
16# 4. Build libs, which are needed by llvm-config.
17# 5. Build llvm-config, which determines inter-lib dependencies for tools.
Reid Spencer8b2e1412006-11-17 03:32:33 +000018# 6. Build tools, runtime, docs.
Chris Lattner87b51012006-09-04 04:27:07 +000019#
Anton Korobeynikov569c45c2008-11-10 07:33:13 +000020# When cross-compiling, there are some things (tablegen) that need to
21# be build for the build system first.
Stuart Hastings4a53e1e2009-10-22 17:22:37 +000022
23# If "RC_ProjectName" exists in the environment, and its value is
24# "llvmCore", then this is an "Apple-style" build; search for
25# "Apple-style" in the comments for more info. Anything else is a
26# normal build.
Jim Grosbach2cdc80c2009-10-30 19:51:32 +000027ifneq ($(findstring llvmCore, $(RC_ProjectName)),llvmCore) # Normal build (not "Apple-style").
28
Anton Korobeynikov569c45c2008-11-10 07:33:13 +000029ifeq ($(BUILD_DIRS_ONLY),1)
30 DIRS := lib/System lib/Support utils
31 OPTIONAL_DIRS :=
32else
Jeffrey Yasskin407fbdd2010-02-23 20:53:37 +000033 DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \
34 tools runtime docs unittests
Daniel Dunbarda589a32009-11-16 22:38:00 +000035 OPTIONAL_DIRS := projects bindings
36endif
37
38ifeq ($(BUILD_EXAMPLES),1)
39 OPTIONAL_DIRS += examples
Anton Korobeynikov569c45c2008-11-10 07:33:13 +000040endif
David Greenedf93e572007-07-11 23:44:08 +000041
Misha Brukman8fb520e2009-01-01 02:24:48 +000042EXTRA_DIST := test unittests llvm.spec include win32 Xcode
Chris Lattner00950542001-06-06 20:29:01 +000043
Misha Brukmanef5dc702009-01-08 02:11:55 +000044include $(LEVEL)/Makefile.config
Reid Spencer93bc3cd2006-04-06 22:15:51 +000045
Chris Lattner5720be42006-07-26 19:10:34 +000046ifeq ($(MAKECMDGOALS),libs-only)
Reid Spencer8b2e1412006-11-17 03:32:33 +000047 DIRS := $(filter-out tools runtime docs, $(DIRS))
Chris Lattner22033b22006-06-02 22:41:18 +000048 OPTIONAL_DIRS :=
49endif
50
Nate Begeman544f83d2007-12-13 02:17:17 +000051ifeq ($(MAKECMDGOALS),install-libs)
52 DIRS := $(filter-out tools runtime docs, $(DIRS))
53 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
54endif
55
Chris Lattner5720be42006-07-26 19:10:34 +000056ifeq ($(MAKECMDGOALS),tools-only)
Reid Spencer8b2e1412006-11-17 03:32:33 +000057 DIRS := $(filter-out runtime docs, $(DIRS))
Chris Lattner5720be42006-07-26 19:10:34 +000058 OPTIONAL_DIRS :=
59endif
Chris Lattner22033b22006-06-02 22:41:18 +000060
Mike Stumpb76ace32009-01-19 19:48:23 +000061ifeq ($(MAKECMDGOALS),install-clang)
Daniel Dunbar6b8dfed2010-01-20 00:43:07 +000062 DIRS := tools/clang/tools/driver tools/clang/lib/Headers \
63 tools/clang/lib/Runtime tools/clang/docs
Mike Stumpb76ace32009-01-19 19:48:23 +000064 OPTIONAL_DIRS :=
65 NO_INSTALL = 1
66endif
67
68ifeq ($(MAKECMDGOALS),clang-only)
Torok Edwin282098b2009-09-26 20:18:58 +000069 DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) tools/clang
Mike Stumpb76ace32009-01-19 19:48:23 +000070 OPTIONAL_DIRS :=
71endif
72
Misha Brukman8fb520e2009-01-01 02:24:48 +000073ifeq ($(MAKECMDGOALS),unittests)
74 DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
75 OPTIONAL_DIRS :=
76endif
77
Chris Lattnerc8914652009-05-08 17:32:47 +000078# Use NO_INSTALL define of the Makefile of each directory for deciding
79# if the directory is installed or not
Chris Lattner122c0552007-02-21 06:23:20 +000080ifeq ($(MAKECMDGOALS),install)
Gordon Henriksen8ef426b2007-09-18 12:49:39 +000081 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
Chris Lattner122c0552007-02-21 06:23:20 +000082endif
83
Anton Korobeynikov569c45c2008-11-10 07:33:13 +000084# If we're cross-compiling, build the build-hosted tools first
85ifeq ($(LLVM_CROSS_COMPILING),1)
86all:: cross-compile-build-tools
87
88clean::
89 $(Verb) rm -rf BuildTools
90
91cross-compile-build-tools:
92 $(Verb) if [ ! -f BuildTools/Makefile ]; then \
93 $(MKDIR) BuildTools; \
94 cd BuildTools ; \
Jim Grosbach1f22d6f2009-10-30 19:53:38 +000095 unset CFLAGS ; \
96 unset CXXFLAGS ; \
Shantonu Sen5e869c32009-09-02 23:52:23 +000097 $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
98 --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE); \
Anton Korobeynikov569c45c2008-11-10 07:33:13 +000099 cd .. ; \
100 fi; \
Shantonu Sen5e869c32009-09-02 23:52:23 +0000101 ($(MAKE) -C BuildTools \
102 BUILD_DIRS_ONLY=1 \
103 UNIVERSAL= \
104 ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \
105 ENABLE_PROFILING=$(ENABLE_PROFILING) \
106 ENABLE_COVERAGE=$(ENABLE_COVERAGE) \
107 DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \
108 ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \
109 ) || exit 1;
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000110endif
111
Chris Lattner22033b22006-06-02 22:41:18 +0000112# Include the main makefile machinery.
Reid Spencer06a801a2006-04-08 02:14:37 +0000113include $(LLVM_SRC_ROOT)/Makefile.rules
114
Reid Spencer45eeed92005-05-24 02:33:20 +0000115# Specify options to pass to configure script when we're
116# running the dist-check target
117DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
118
Reid Spencerdf561f42004-11-25 09:08:54 +0000119.PHONY: debug-opt-prof
120debug-opt-prof:
121 $(Echo) Building Debug Version
122 $(Verb) $(MAKE)
123 $(Echo)
124 $(Echo) Building Optimized Version
125 $(Echo)
126 $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
127 $(Echo)
128 $(Echo) Building Profiling Version
129 $(Echo)
130 $(Verb) $(MAKE) ENABLE_PROFILING=1
131
Reid Spencer151f8ba2004-10-25 08:27:37 +0000132dist-hook::
Reid Spencercc2d1e22004-10-30 09:19:36 +0000133 $(Echo) Eliminating files constructed by configure
134 $(Verb) $(RM) -f \
Reid Spencer90c29492004-10-26 07:05:09 +0000135 $(TopDistDir)/include/llvm/Config/config.h \
Chandler Carruth8b67f772009-10-26 01:35:46 +0000136 $(TopDistDir)/include/llvm/System/DataTypes.h
Reid Spencer151f8ba2004-10-25 08:27:37 +0000137
Mike Stumpb76ace32009-01-19 19:48:23 +0000138clang-only: all
Chris Lattner9cf662b2004-02-03 22:56:40 +0000139tools-only: all
Reid Spencer8b1f7672005-05-25 21:03:17 +0000140libs-only: all
Mike Stumpb76ace32009-01-19 19:48:23 +0000141install-clang: install
Nate Begeman544f83d2007-12-13 02:17:17 +0000142install-libs: install
Reid Spencerca739c62005-08-25 04:59:49 +0000143
144#------------------------------------------------------------------------
145# Make sure the generated headers are up-to-date. This must be kept in
146# sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
147#------------------------------------------------------------------------
148FilesToConfig := \
149 include/llvm/Config/config.h \
Douglas Gregor1555a232009-06-16 20:12:29 +0000150 include/llvm/Config/Targets.def \
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +0000151 include/llvm/Config/AsmPrinters.def \
152 include/llvm/Config/AsmParsers.def \
153 include/llvm/Config/Disassemblers.def \
Chandler Carruth8b67f772009-10-26 01:35:46 +0000154 include/llvm/System/DataTypes.h \
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +0000155 tools/llvmc/plugins/Base/Base.td
Reid Spencerca739c62005-08-25 04:59:49 +0000156FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
157
158all-local:: $(FilesToConfigPATH)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000159$(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
Reid Spencerca739c62005-08-25 04:59:49 +0000160 $(Echo) Regenerating $*
161 $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
162.PRECIOUS: $(FilesToConfigPATH)
Reid Spencere22f3c02006-04-07 15:58:18 +0000163
Chris Lattner38ab6d82006-04-07 16:21:59 +0000164# NOTE: This needs to remain as the last target definition in this file so
165# that it gets executed last.
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000166ifneq ($(BUILD_DIRS_ONLY),1)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000167all::
Reid Spencere22f3c02006-04-07 15:58:18 +0000168 $(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build
169ifeq ($(BuildMode),Debug)
170 $(Echo) '*****' Note: Debug build can be 10 times slower than an
171 $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
Gabor Greif2ae19552008-02-28 11:48:14 +0000172 $(Echo) '*****' make an optimized build. Alternatively you can
173 $(Echo) '*****' configure with --enable-optimized.
Reid Spencere22f3c02006-04-07 15:58:18 +0000174endif
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000175endif
Chris Lattner38ab6d82006-04-07 16:21:59 +0000176
Reid Spencer5b30ee12006-06-01 07:27:53 +0000177check-llvm2cpp:
Reid Spencer42f98e52007-04-15 06:22:48 +0000178 $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
Chris Lattner5720be42006-07-26 19:10:34 +0000179
Reid Spencer9df55612007-04-15 06:18:50 +0000180check-one:
Reid Spencer42f98e52007-04-15 06:22:48 +0000181 $(Verb)$(MAKE) -C test check-one TESTONE=$(TESTONE)
Reid Spencer9df55612007-04-15 06:18:50 +0000182
Misha Brukmanef5dc702009-01-08 02:11:55 +0000183srpm: $(LLVM_OBJ_ROOT)/llvm.spec
Reid Spencerf7c75a62006-08-16 00:43:50 +0000184 rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
185
Misha Brukmanef5dc702009-01-08 02:11:55 +0000186rpm: $(LLVM_OBJ_ROOT)/llvm.spec
Reid Spencerf7c75a62006-08-16 00:43:50 +0000187 rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
188
Reid Spencer1e46ae42007-02-05 23:18:58 +0000189show-footprint:
190 $(Verb) du -sk $(LibDir)
191 $(Verb) du -sk $(ToolDir)
192 $(Verb) du -sk $(ExmplDir)
193 $(Verb) du -sk $(ObjDir)
194
Reid Spencer51cf6422007-07-08 03:50:22 +0000195build-for-llvm-top:
196 $(Verb) if test ! -f ./config.status ; then \
197 ./configure --prefix="$(LLVM_TOP)/install" \
198 --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
199 fi
200 $(Verb) $(MAKE) tools-only
201
Gabor Greif1d7ca712008-02-28 13:06:50 +0000202SVN = svn
Gabor Greif9fa42262008-02-28 14:58:14 +0000203SVN-UPDATE-OPTIONS =
Gabor Greif1d7ca712008-02-28 13:06:50 +0000204AWK = awk
Gabor Greifa4a03232008-02-28 18:46:56 +0000205SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}' \
Gabor Greif95fc7aa2009-04-24 17:00:03 +0000206 | LC_ALL=C xargs $(SVN) info 2>/dev/null \
Gabor Greifa4a03232008-02-28 18:46:56 +0000207 | $(AWK) '/Path:\ / {print $$2}'
Gabor Greif1d7ca712008-02-28 13:06:50 +0000208
209update:
Gabor Greif8e0c20b2008-03-21 22:17:07 +0000210 $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
211 @ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
Gabor Greif1d7ca712008-02-28 13:06:50 +0000212
Bill Wendling4113bd12009-01-04 23:12:21 +0000213happiness: update all check unittests
Gabor Greif1d7ca712008-02-28 13:06:50 +0000214
215.PHONY: srpm rpm update happiness
Reid Spencer51cf6422007-07-08 03:50:22 +0000216
Gabor Greif2ae19552008-02-28 11:48:14 +0000217# declare all targets at this level to be serial:
218
219.NOTPARALLEL:
220
Stuart Hastings4a53e1e2009-10-22 17:22:37 +0000221else # Building "Apple-style."
222# In an Apple-style build, once configuration is done, lines marked
223# "Apple-style" are removed with sed! Please don't remove these!
224# Look for the string "Apple-style" in utils/buildit/build_llvm.
225include $(shell find . -name GNUmakefile) # Building "Apple-style."
226endif # Building "Apple-style."