blob: 001d2ad1895e3c10fd1548fb8470ff30d91facf9 [file] [log] [blame]
Misha Brukman7426c892004-04-24 00:10:56 +00001#===- ./Makefile -------------------------------------------*- Makefile -*--===#
Misha Brukman2879c292009-01-08 02:11:55 +00002#
John Criswell4436c492003-10-20 22:26:57 +00003# The LLVM Compiler Infrastructure
4#
Chris Lattner11cc8b32007-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 Brukman2879c292009-01-08 02:11:55 +00007#
Misha Brukman7426c892004-04-24 00:10:56 +00008#===------------------------------------------------------------------------===#
Chris Lattner2ad80c22006-06-02 22:41:18 +00009
Chris Lattnerb85c3252006-07-26 19:10:34 +000010LEVEL := .
Chris Lattner31b4aa52006-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 Spencer4b8067f2006-11-17 03:32:33 +000018# 6. Build tools, runtime, docs.
Chris Lattner31b4aa52006-09-04 04:27:07 +000019#
Anton Korobeynikov8e58c522008-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 Hastings8de31d02009-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.
27ifneq ($(RC_ProjectName),llvmCore) # Normal build (not "Apple-style").
Anton Korobeynikov8e58c522008-11-10 07:33:13 +000028ifeq ($(BUILD_DIRS_ONLY),1)
29 DIRS := lib/System lib/Support utils
30 OPTIONAL_DIRS :=
31else
32 DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \
Daniel Dunbar96ccc472009-09-13 22:39:27 +000033 tools runtime docs unittests
Anton Korobeynikov8e58c522008-11-10 07:33:13 +000034 OPTIONAL_DIRS := examples projects bindings
35endif
David Greeneb2e2be42007-07-11 23:44:08 +000036
Misha Brukmanbcf15382009-01-01 02:24:48 +000037EXTRA_DIST := test unittests llvm.spec include win32 Xcode
Chris Lattner2f7c9632001-06-06 20:29:01 +000038
Misha Brukman2879c292009-01-08 02:11:55 +000039include $(LEVEL)/Makefile.config
Reid Spenceraed84e42006-04-06 22:15:51 +000040
Chris Lattner323a5132007-03-29 18:14:00 +000041# llvm-gcc4 doesn't need runtime libs. llvm-gcc4 is the only supported one.
42# FIXME: Remove runtime entirely once we have an understanding of where
43# libprofile etc should go.
44#ifeq ($(LLVMGCC_MAJVERS),4)
Daniel Dunbar0e043942009-08-19 21:09:45 +000045# DIRS := $(filter-out runtime, $(DIRS))
Chris Lattner323a5132007-03-29 18:14:00 +000046#endif
Reid Spencer4b8067f2006-11-17 03:32:33 +000047
Chris Lattnerb85c3252006-07-26 19:10:34 +000048ifeq ($(MAKECMDGOALS),libs-only)
Reid Spencer4b8067f2006-11-17 03:32:33 +000049 DIRS := $(filter-out tools runtime docs, $(DIRS))
Chris Lattner2ad80c22006-06-02 22:41:18 +000050 OPTIONAL_DIRS :=
51endif
52
Nate Begeman938d8cb2007-12-13 02:17:17 +000053ifeq ($(MAKECMDGOALS),install-libs)
54 DIRS := $(filter-out tools runtime docs, $(DIRS))
55 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
56endif
57
Chris Lattnerb85c3252006-07-26 19:10:34 +000058ifeq ($(MAKECMDGOALS),tools-only)
Reid Spencer4b8067f2006-11-17 03:32:33 +000059 DIRS := $(filter-out runtime docs, $(DIRS))
Chris Lattnerb85c3252006-07-26 19:10:34 +000060 OPTIONAL_DIRS :=
61endif
Chris Lattner2ad80c22006-06-02 22:41:18 +000062
Mike Stumpeb1e2002009-01-19 19:48:23 +000063ifeq ($(MAKECMDGOALS),install-clang)
Mike Stumpa0c86122009-03-26 23:43:14 +000064 DIRS := tools/clang/tools/driver tools/clang/tools/clang-cc \
Mike Stump43a675b2009-05-01 01:47:55 +000065 tools/clang/lib/Headers tools/clang/docs
Mike Stumpeb1e2002009-01-19 19:48:23 +000066 OPTIONAL_DIRS :=
67 NO_INSTALL = 1
68endif
69
70ifeq ($(MAKECMDGOALS),clang-only)
Torok Edwinfd5438e2009-09-26 20:18:58 +000071 DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) tools/clang
Mike Stumpeb1e2002009-01-19 19:48:23 +000072 OPTIONAL_DIRS :=
73endif
74
Misha Brukmanbcf15382009-01-01 02:24:48 +000075ifeq ($(MAKECMDGOALS),unittests)
76 DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
77 OPTIONAL_DIRS :=
78endif
79
Chris Lattner8bbd76b2009-05-08 17:32:47 +000080# Use NO_INSTALL define of the Makefile of each directory for deciding
81# if the directory is installed or not
Chris Lattner31f99b92007-02-21 06:23:20 +000082ifeq ($(MAKECMDGOALS),install)
Gordon Henriksen37582f72007-09-18 12:49:39 +000083 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
Chris Lattner31f99b92007-02-21 06:23:20 +000084endif
85
Anton Korobeynikov8e58c522008-11-10 07:33:13 +000086# If we're cross-compiling, build the build-hosted tools first
87ifeq ($(LLVM_CROSS_COMPILING),1)
88all:: cross-compile-build-tools
89
90clean::
91 $(Verb) rm -rf BuildTools
92
93cross-compile-build-tools:
94 $(Verb) if [ ! -f BuildTools/Makefile ]; then \
95 $(MKDIR) BuildTools; \
96 cd BuildTools ; \
Shantonu Sen96995e82009-09-02 23:52:23 +000097 $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
98 --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE); \
Anton Korobeynikov8e58c522008-11-10 07:33:13 +000099 cd .. ; \
100 fi; \
Shantonu Sen96995e82009-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 Korobeynikov8e58c522008-11-10 07:33:13 +0000110endif
111
Chris Lattner2ad80c22006-06-02 22:41:18 +0000112# Include the main makefile machinery.
Reid Spencer8ac50622006-04-08 02:14:37 +0000113include $(LLVM_SRC_ROOT)/Makefile.rules
114
Reid Spencer13f51932005-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 Spencer33478272004-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 Spencer100080c2004-10-25 08:27:37 +0000132dist-hook::
Reid Spencerf88808a2004-10-30 09:19:36 +0000133 $(Echo) Eliminating files constructed by configure
134 $(Verb) $(RM) -f \
Reid Spencer4a9b5ff2004-10-26 07:05:09 +0000135 $(TopDistDir)/include/llvm/Config/config.h \
Chandler Carruth56869f22009-10-26 01:35:46 +0000136 $(TopDistDir)/include/llvm/System/DataTypes.h
Reid Spencer100080c2004-10-25 08:27:37 +0000137
Mike Stumpeb1e2002009-01-19 19:48:23 +0000138clang-only: all
Chris Lattner6bd75a62004-02-03 22:56:40 +0000139tools-only: all
Reid Spencerfec4f802005-05-25 21:03:17 +0000140libs-only: all
Mike Stumpeb1e2002009-01-19 19:48:23 +0000141install-clang: install
Nate Begeman938d8cb2007-12-13 02:17:17 +0000142install-libs: install
Reid Spencer53846bc2005-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 Gregor1b731d52009-06-16 20:12:29 +0000150 include/llvm/Config/Targets.def \
151 include/llvm/Config/AsmPrinters.def \
Chandler Carruth56869f22009-10-26 01:35:46 +0000152 include/llvm/System/DataTypes.h \
Mikhail Glushenkov9fdea9e2009-10-09 02:40:01 +0000153 tools/llvmc/plugins/Base/Base.td
Reid Spencer53846bc2005-08-25 04:59:49 +0000154FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
155
156all-local:: $(FilesToConfigPATH)
Misha Brukman2879c292009-01-08 02:11:55 +0000157$(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
Reid Spencer53846bc2005-08-25 04:59:49 +0000158 $(Echo) Regenerating $*
159 $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
160.PRECIOUS: $(FilesToConfigPATH)
Reid Spencer754cfec2006-04-07 15:58:18 +0000161
Chris Lattnere690a932006-04-07 16:21:59 +0000162# NOTE: This needs to remain as the last target definition in this file so
163# that it gets executed last.
Anton Korobeynikov8e58c522008-11-10 07:33:13 +0000164ifneq ($(BUILD_DIRS_ONLY),1)
Misha Brukman2879c292009-01-08 02:11:55 +0000165all::
Reid Spencer754cfec2006-04-07 15:58:18 +0000166 $(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build
167ifeq ($(BuildMode),Debug)
168 $(Echo) '*****' Note: Debug build can be 10 times slower than an
169 $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
Gabor Greif76e70832008-02-28 11:48:14 +0000170 $(Echo) '*****' make an optimized build. Alternatively you can
171 $(Echo) '*****' configure with --enable-optimized.
Reid Spencer754cfec2006-04-07 15:58:18 +0000172endif
Anton Korobeynikov8e58c522008-11-10 07:33:13 +0000173endif
Chris Lattnere690a932006-04-07 16:21:59 +0000174
Reid Spencer9c226202006-06-01 07:27:53 +0000175check-llvm2cpp:
Reid Spencer6d4a4172007-04-15 06:22:48 +0000176 $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
Chris Lattnerb85c3252006-07-26 19:10:34 +0000177
Reid Spencera9482c82007-04-15 06:18:50 +0000178check-one:
Reid Spencer6d4a4172007-04-15 06:22:48 +0000179 $(Verb)$(MAKE) -C test check-one TESTONE=$(TESTONE)
Reid Spencera9482c82007-04-15 06:18:50 +0000180
Misha Brukman2879c292009-01-08 02:11:55 +0000181srpm: $(LLVM_OBJ_ROOT)/llvm.spec
Reid Spencerd14c6ca2006-08-16 00:43:50 +0000182 rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
183
Misha Brukman2879c292009-01-08 02:11:55 +0000184rpm: $(LLVM_OBJ_ROOT)/llvm.spec
Reid Spencerd14c6ca2006-08-16 00:43:50 +0000185 rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
186
Reid Spencer99a1e6b2007-02-05 23:18:58 +0000187show-footprint:
188 $(Verb) du -sk $(LibDir)
189 $(Verb) du -sk $(ToolDir)
190 $(Verb) du -sk $(ExmplDir)
191 $(Verb) du -sk $(ObjDir)
192
Reid Spencer64a26222007-07-08 03:50:22 +0000193build-for-llvm-top:
194 $(Verb) if test ! -f ./config.status ; then \
195 ./configure --prefix="$(LLVM_TOP)/install" \
196 --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
197 fi
198 $(Verb) $(MAKE) tools-only
199
Gabor Greifd71b4102008-02-28 13:06:50 +0000200SVN = svn
Gabor Greif376d2ce2008-02-28 14:58:14 +0000201SVN-UPDATE-OPTIONS =
Gabor Greifd71b4102008-02-28 13:06:50 +0000202AWK = awk
Gabor Greifa6e293a2008-02-28 18:46:56 +0000203SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}' \
Gabor Greif33e834c2009-04-24 17:00:03 +0000204 | LC_ALL=C xargs $(SVN) info 2>/dev/null \
Gabor Greifa6e293a2008-02-28 18:46:56 +0000205 | $(AWK) '/Path:\ / {print $$2}'
Gabor Greifd71b4102008-02-28 13:06:50 +0000206
207update:
Gabor Greifa6c5b382008-03-21 22:17:07 +0000208 $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
209 @ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
Gabor Greifd71b4102008-02-28 13:06:50 +0000210
Bill Wendling8790e322009-01-04 23:12:21 +0000211happiness: update all check unittests
Gabor Greifd71b4102008-02-28 13:06:50 +0000212
213.PHONY: srpm rpm update happiness
Reid Spencer64a26222007-07-08 03:50:22 +0000214
Gabor Greif76e70832008-02-28 11:48:14 +0000215# declare all targets at this level to be serial:
216
217.NOTPARALLEL:
218
Stuart Hastings8de31d02009-10-22 17:22:37 +0000219else # Building "Apple-style."
220# In an Apple-style build, once configuration is done, lines marked
221# "Apple-style" are removed with sed! Please don't remove these!
222# Look for the string "Apple-style" in utils/buildit/build_llvm.
223include $(shell find . -name GNUmakefile) # Building "Apple-style."
224endif # Building "Apple-style."