blob: 1ef89e4ede09d7a9333345874ffb7569e9744e15 [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
33 DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \
Daniel Dunbar7f068f42009-09-13 22:39:27 +000034 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 Lattnerc6b66eb2007-03-29 18:14:00 +000046# llvm-gcc4 doesn't need runtime libs. llvm-gcc4 is the only supported one.
47# FIXME: Remove runtime entirely once we have an understanding of where
48# libprofile etc should go.
49#ifeq ($(LLVMGCC_MAJVERS),4)
Daniel Dunbar671a8532009-08-19 21:09:45 +000050# DIRS := $(filter-out runtime, $(DIRS))
Chris Lattnerc6b66eb2007-03-29 18:14:00 +000051#endif
Reid Spencer8b2e1412006-11-17 03:32:33 +000052
Chris Lattner5720be42006-07-26 19:10:34 +000053ifeq ($(MAKECMDGOALS),libs-only)
Reid Spencer8b2e1412006-11-17 03:32:33 +000054 DIRS := $(filter-out tools runtime docs, $(DIRS))
Chris Lattner22033b22006-06-02 22:41:18 +000055 OPTIONAL_DIRS :=
56endif
57
Nate Begeman544f83d2007-12-13 02:17:17 +000058ifeq ($(MAKECMDGOALS),install-libs)
59 DIRS := $(filter-out tools runtime docs, $(DIRS))
60 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
61endif
62
Chris Lattner5720be42006-07-26 19:10:34 +000063ifeq ($(MAKECMDGOALS),tools-only)
Reid Spencer8b2e1412006-11-17 03:32:33 +000064 DIRS := $(filter-out runtime docs, $(DIRS))
Chris Lattner5720be42006-07-26 19:10:34 +000065 OPTIONAL_DIRS :=
66endif
Chris Lattner22033b22006-06-02 22:41:18 +000067
Mike Stumpb76ace32009-01-19 19:48:23 +000068ifeq ($(MAKECMDGOALS),install-clang)
Mike Stumpe568f642009-03-26 23:43:14 +000069 DIRS := tools/clang/tools/driver tools/clang/tools/clang-cc \
Mike Stump166c9e22009-05-01 01:47:55 +000070 tools/clang/lib/Headers tools/clang/docs
Mike Stumpb76ace32009-01-19 19:48:23 +000071 OPTIONAL_DIRS :=
72 NO_INSTALL = 1
73endif
74
75ifeq ($(MAKECMDGOALS),clang-only)
Torok Edwin282098b2009-09-26 20:18:58 +000076 DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) tools/clang
Mike Stumpb76ace32009-01-19 19:48:23 +000077 OPTIONAL_DIRS :=
78endif
79
Misha Brukman8fb520e2009-01-01 02:24:48 +000080ifeq ($(MAKECMDGOALS),unittests)
81 DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
82 OPTIONAL_DIRS :=
83endif
84
Chris Lattnerc8914652009-05-08 17:32:47 +000085# Use NO_INSTALL define of the Makefile of each directory for deciding
86# if the directory is installed or not
Chris Lattner122c0552007-02-21 06:23:20 +000087ifeq ($(MAKECMDGOALS),install)
Gordon Henriksen8ef426b2007-09-18 12:49:39 +000088 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
Chris Lattner122c0552007-02-21 06:23:20 +000089endif
90
Anton Korobeynikov569c45c2008-11-10 07:33:13 +000091# If we're cross-compiling, build the build-hosted tools first
92ifeq ($(LLVM_CROSS_COMPILING),1)
93all:: cross-compile-build-tools
94
95clean::
96 $(Verb) rm -rf BuildTools
97
98cross-compile-build-tools:
99 $(Verb) if [ ! -f BuildTools/Makefile ]; then \
100 $(MKDIR) BuildTools; \
101 cd BuildTools ; \
Jim Grosbach1f22d6f2009-10-30 19:53:38 +0000102 unset CFLAGS ; \
103 unset CXXFLAGS ; \
Shantonu Sen5e869c32009-09-02 23:52:23 +0000104 $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
105 --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE); \
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000106 cd .. ; \
107 fi; \
Shantonu Sen5e869c32009-09-02 23:52:23 +0000108 ($(MAKE) -C BuildTools \
109 BUILD_DIRS_ONLY=1 \
110 UNIVERSAL= \
111 ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \
112 ENABLE_PROFILING=$(ENABLE_PROFILING) \
113 ENABLE_COVERAGE=$(ENABLE_COVERAGE) \
114 DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \
115 ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \
116 ) || exit 1;
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000117endif
118
Chris Lattner22033b22006-06-02 22:41:18 +0000119# Include the main makefile machinery.
Reid Spencer06a801a2006-04-08 02:14:37 +0000120include $(LLVM_SRC_ROOT)/Makefile.rules
121
Reid Spencer45eeed92005-05-24 02:33:20 +0000122# Specify options to pass to configure script when we're
123# running the dist-check target
124DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
125
Reid Spencerdf561f42004-11-25 09:08:54 +0000126.PHONY: debug-opt-prof
127debug-opt-prof:
128 $(Echo) Building Debug Version
129 $(Verb) $(MAKE)
130 $(Echo)
131 $(Echo) Building Optimized Version
132 $(Echo)
133 $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
134 $(Echo)
135 $(Echo) Building Profiling Version
136 $(Echo)
137 $(Verb) $(MAKE) ENABLE_PROFILING=1
138
Reid Spencer151f8ba2004-10-25 08:27:37 +0000139dist-hook::
Reid Spencercc2d1e22004-10-30 09:19:36 +0000140 $(Echo) Eliminating files constructed by configure
141 $(Verb) $(RM) -f \
Reid Spencer90c29492004-10-26 07:05:09 +0000142 $(TopDistDir)/include/llvm/Config/config.h \
Chandler Carruth8b67f772009-10-26 01:35:46 +0000143 $(TopDistDir)/include/llvm/System/DataTypes.h
Reid Spencer151f8ba2004-10-25 08:27:37 +0000144
Mike Stumpb76ace32009-01-19 19:48:23 +0000145clang-only: all
Chris Lattner9cf662b2004-02-03 22:56:40 +0000146tools-only: all
Reid Spencer8b1f7672005-05-25 21:03:17 +0000147libs-only: all
Mike Stumpb76ace32009-01-19 19:48:23 +0000148install-clang: install
Nate Begeman544f83d2007-12-13 02:17:17 +0000149install-libs: install
Reid Spencerca739c62005-08-25 04:59:49 +0000150
151#------------------------------------------------------------------------
152# Make sure the generated headers are up-to-date. This must be kept in
153# sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
154#------------------------------------------------------------------------
155FilesToConfig := \
156 include/llvm/Config/config.h \
Douglas Gregor1555a232009-06-16 20:12:29 +0000157 include/llvm/Config/Targets.def \
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +0000158 include/llvm/Config/AsmPrinters.def \
159 include/llvm/Config/AsmParsers.def \
160 include/llvm/Config/Disassemblers.def \
Chandler Carruth8b67f772009-10-26 01:35:46 +0000161 include/llvm/System/DataTypes.h \
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +0000162 tools/llvmc/plugins/Base/Base.td
Reid Spencerca739c62005-08-25 04:59:49 +0000163FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
164
165all-local:: $(FilesToConfigPATH)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000166$(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
Reid Spencerca739c62005-08-25 04:59:49 +0000167 $(Echo) Regenerating $*
168 $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
169.PRECIOUS: $(FilesToConfigPATH)
Reid Spencere22f3c02006-04-07 15:58:18 +0000170
Chris Lattner38ab6d82006-04-07 16:21:59 +0000171# NOTE: This needs to remain as the last target definition in this file so
172# that it gets executed last.
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000173ifneq ($(BUILD_DIRS_ONLY),1)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000174all::
Reid Spencere22f3c02006-04-07 15:58:18 +0000175 $(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build
176ifeq ($(BuildMode),Debug)
177 $(Echo) '*****' Note: Debug build can be 10 times slower than an
178 $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
Gabor Greif2ae19552008-02-28 11:48:14 +0000179 $(Echo) '*****' make an optimized build. Alternatively you can
180 $(Echo) '*****' configure with --enable-optimized.
Reid Spencere22f3c02006-04-07 15:58:18 +0000181endif
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000182endif
Chris Lattner38ab6d82006-04-07 16:21:59 +0000183
Reid Spencer5b30ee12006-06-01 07:27:53 +0000184check-llvm2cpp:
Reid Spencer42f98e52007-04-15 06:22:48 +0000185 $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
Chris Lattner5720be42006-07-26 19:10:34 +0000186
Reid Spencer9df55612007-04-15 06:18:50 +0000187check-one:
Reid Spencer42f98e52007-04-15 06:22:48 +0000188 $(Verb)$(MAKE) -C test check-one TESTONE=$(TESTONE)
Reid Spencer9df55612007-04-15 06:18:50 +0000189
Misha Brukmanef5dc702009-01-08 02:11:55 +0000190srpm: $(LLVM_OBJ_ROOT)/llvm.spec
Reid Spencerf7c75a62006-08-16 00:43:50 +0000191 rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
192
Misha Brukmanef5dc702009-01-08 02:11:55 +0000193rpm: $(LLVM_OBJ_ROOT)/llvm.spec
Reid Spencerf7c75a62006-08-16 00:43:50 +0000194 rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
195
Reid Spencer1e46ae42007-02-05 23:18:58 +0000196show-footprint:
197 $(Verb) du -sk $(LibDir)
198 $(Verb) du -sk $(ToolDir)
199 $(Verb) du -sk $(ExmplDir)
200 $(Verb) du -sk $(ObjDir)
201
Reid Spencer51cf6422007-07-08 03:50:22 +0000202build-for-llvm-top:
203 $(Verb) if test ! -f ./config.status ; then \
204 ./configure --prefix="$(LLVM_TOP)/install" \
205 --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
206 fi
207 $(Verb) $(MAKE) tools-only
208
Gabor Greif1d7ca712008-02-28 13:06:50 +0000209SVN = svn
Gabor Greif9fa42262008-02-28 14:58:14 +0000210SVN-UPDATE-OPTIONS =
Gabor Greif1d7ca712008-02-28 13:06:50 +0000211AWK = awk
Gabor Greifa4a03232008-02-28 18:46:56 +0000212SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}' \
Gabor Greif95fc7aa2009-04-24 17:00:03 +0000213 | LC_ALL=C xargs $(SVN) info 2>/dev/null \
Gabor Greifa4a03232008-02-28 18:46:56 +0000214 | $(AWK) '/Path:\ / {print $$2}'
Gabor Greif1d7ca712008-02-28 13:06:50 +0000215
216update:
Gabor Greif8e0c20b2008-03-21 22:17:07 +0000217 $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
218 @ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
Gabor Greif1d7ca712008-02-28 13:06:50 +0000219
Bill Wendling4113bd12009-01-04 23:12:21 +0000220happiness: update all check unittests
Gabor Greif1d7ca712008-02-28 13:06:50 +0000221
222.PHONY: srpm rpm update happiness
Reid Spencer51cf6422007-07-08 03:50:22 +0000223
Gabor Greif2ae19552008-02-28 11:48:14 +0000224# declare all targets at this level to be serial:
225
226.NOTPARALLEL:
227
Stuart Hastings4a53e1e2009-10-22 17:22:37 +0000228else # Building "Apple-style."
229# In an Apple-style build, once configuration is done, lines marked
230# "Apple-style" are removed with sed! Please don't remove these!
231# Look for the string "Apple-style" in utils/buildit/build_llvm.
232include $(shell find . -name GNUmakefile) # Building "Apple-style."
233endif # Building "Apple-style."