Add OpenCL blurb to release notes.
[oota-llvm.git] / Makefile
1 #===- ./Makefile -------------------------------------------*- Makefile -*--===#
2 #
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
7 #
8 #===------------------------------------------------------------------------===#
9
10 LEVEL := .
11
12 # Top-Level LLVM Build Stages:
13 #   1. Build lib/Support and lib/TableGen, 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.
18 #   6. Build tools, runtime, docs.
19 #
20 # When cross-compiling, there are some things (tablegen) that need to
21 # be build for the build system first.
22
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.
27 ifneq ($(findstring llvmCore, $(RC_ProjectName)),llvmCore)  # Normal build (not "Apple-style").
28
29 ifeq ($(BUILD_DIRS_ONLY),1)
30   DIRS := lib/Support lib/TableGen utils tools/llvm-config-2
31   OPTIONAL_DIRS := tools/clang/utils/TableGen
32 else
33   DIRS := lib/Support lib/TableGen utils lib/VMCore lib tools/llvm-shlib \
34           tools/llvm-config tools/llvm-config-2 tools runtime docs unittests
35   OPTIONAL_DIRS := projects bindings
36 endif
37
38 ifeq ($(BUILD_EXAMPLES),1)
39   OPTIONAL_DIRS += examples
40 endif
41
42 EXTRA_DIST := test unittests llvm.spec include win32 Xcode
43
44 include $(LEVEL)/Makefile.config
45
46 ifneq ($(ENABLE_SHARED),1)
47   DIRS := $(filter-out tools/llvm-shlib, $(DIRS))
48 endif
49
50 ifneq ($(ENABLE_DOCS),1)
51   DIRS := $(filter-out docs, $(DIRS))
52 endif
53
54 ifeq ($(MAKECMDGOALS),libs-only)
55   DIRS := $(filter-out tools runtime docs, $(DIRS))
56   OPTIONAL_DIRS :=
57 endif
58
59 ifeq ($(MAKECMDGOALS),install-libs)
60   DIRS := $(filter-out tools runtime docs, $(DIRS))
61   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
62 endif
63
64 ifeq ($(MAKECMDGOALS),tools-only)
65   DIRS := $(filter-out runtime docs, $(DIRS))
66   OPTIONAL_DIRS :=
67 endif
68
69 ifeq ($(MAKECMDGOALS),install-clang)
70   DIRS := tools/clang/tools/driver tools/clang/lib/Headers \
71           tools/clang/tools/libclang tools/clang/tools/c-index-test \
72           tools/clang/include/clang-c \
73           tools/clang/runtime tools/clang/docs \
74           tools/lto runtime
75   OPTIONAL_DIRS :=
76   NO_INSTALL = 1
77 endif
78
79 ifeq ($(MAKECMDGOALS),install-clang-c)
80   DIRS := tools/clang/tools/driver tools/clang/lib/Headers \
81           tools/clang/tools/libclang tools/clang/tools/c-index-test \
82          tools/clang/include/clang-c
83   OPTIONAL_DIRS :=
84   NO_INSTALL = 1
85 endif
86
87 ifeq ($(MAKECMDGOALS),clang-only)
88   DIRS := $(filter-out tools docs unittests, $(DIRS)) \
89           tools/clang tools/lto
90   OPTIONAL_DIRS :=
91 endif
92
93 ifeq ($(MAKECMDGOALS),unittests)
94   DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
95   OPTIONAL_DIRS :=
96 endif
97
98 # Use NO_INSTALL define of the Makefile of each directory for deciding
99 # if the directory is installed or not
100 ifeq ($(MAKECMDGOALS),install)
101   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
102 endif
103
104 # Don't build unittests when ONLY_TOOLS is set.
105 ifneq ($(ONLY_TOOLS),)
106   DIRS := $(filter-out unittests, $(DIRS))
107 endif
108
109 # If we're cross-compiling, build the build-hosted tools first
110 ifeq ($(LLVM_CROSS_COMPILING),1)
111 all:: cross-compile-build-tools
112
113 clean::
114         $(Verb) rm -rf BuildTools
115
116 cross-compile-build-tools:
117         $(Verb) if [ ! -f BuildTools/Makefile ]; then \
118           $(MKDIR) BuildTools; \
119           cd BuildTools ; \
120           unset CFLAGS ; \
121           unset CXXFLAGS ; \
122           $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
123                 --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE) \
124                 --disable-polly ; \
125           cd .. ; \
126         fi; \
127         (unset SDKROOT; \
128          $(MAKE) -C BuildTools \
129           BUILD_DIRS_ONLY=1 \
130           UNIVERSAL= \
131           TARGET_NATIVE_ARCH="$(TARGET_NATIVE_ARCH)" \
132           TARGETS_TO_BUILD="$(TARGETS_TO_BUILD)" \
133           ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \
134           ENABLE_PROFILING=$(ENABLE_PROFILING) \
135           ENABLE_COVERAGE=$(ENABLE_COVERAGE) \
136           DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \
137           ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \
138           ENABLE_LIBCPP=$(ENABLE_LIBCPP) \
139           CFLAGS= \
140           CXXFLAGS= \
141         ) || exit 1;
142 endif
143
144 # Include the main makefile machinery.
145 include $(LLVM_SRC_ROOT)/Makefile.rules
146
147 # Specify options to pass to configure script when we're
148 # running the dist-check target
149 DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
150
151 .PHONY: debug-opt-prof
152 debug-opt-prof:
153         $(Echo) Building Debug Version
154         $(Verb) $(MAKE)
155         $(Echo)
156         $(Echo) Building Optimized Version
157         $(Echo)
158         $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
159         $(Echo)
160         $(Echo) Building Profiling Version
161         $(Echo)
162         $(Verb) $(MAKE) ENABLE_PROFILING=1
163
164 dist-hook::
165         $(Echo) Eliminating files constructed by configure
166         $(Verb) $(RM) -f \
167           $(TopDistDir)/include/llvm/Config/config.h  \
168           $(TopDistDir)/include/llvm/Support/DataTypes.h
169
170 clang-only: all
171 tools-only: all
172 libs-only: all
173 install-clang: install
174 install-clang-c: install
175 install-libs: install
176
177 # If SHOW_DIAGNOSTICS is enabled, clear the diagnostics file first.
178 ifeq ($(SHOW_DIAGNOSTICS),1)
179 clean-diagnostics:
180         $(Verb) rm -f $(LLVM_OBJ_ROOT)/$(BuildMode)/diags
181 .PHONY: clean-diagnostics
182
183 all-local:: clean-diagnostics
184 endif
185
186 #------------------------------------------------------------------------
187 # Make sure the generated headers are up-to-date. This must be kept in
188 # sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
189 #------------------------------------------------------------------------
190 FilesToConfig := \
191   include/llvm/Config/config.h \
192   include/llvm/Config/Targets.def \
193   include/llvm/Config/AsmPrinters.def \
194   include/llvm/Config/AsmParsers.def \
195   include/llvm/Config/Disassemblers.def \
196   include/llvm/Support/DataTypes.h
197 FilesToConfigPATH  := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
198
199 all-local:: $(FilesToConfigPATH)
200 $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
201         $(Echo) Regenerating $*
202         $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
203 .PRECIOUS: $(FilesToConfigPATH)
204
205 # NOTE: This needs to remain as the last target definition in this file so
206 # that it gets executed last.
207 ifneq ($(BUILD_DIRS_ONLY),1)
208 all::
209         $(Echo) '*****' Completed $(BuildMode) Build
210 ifneq ($(ENABLE_OPTIMIZED),1)
211         $(Echo) '*****' Note: Debug build can be 10 times slower than an
212         $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
213         $(Echo) '*****' make an optimized build. Alternatively you can
214         $(Echo) '*****' configure with --enable-optimized.
215 ifeq ($(SHOW_DIAGNOSTICS),1)
216         $(Verb) if test -s $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; then \
217           $(LLVM_SRC_ROOT)/utils/clang-parse-diagnostics-file -a \
218             $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; \
219         fi
220 endif
221 endif
222 endif
223
224 check-llvm2cpp:
225         $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
226
227 srpm: $(LLVM_OBJ_ROOT)/llvm.spec
228         rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
229
230 rpm: $(LLVM_OBJ_ROOT)/llvm.spec
231         rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
232
233 show-footprint:
234         $(Verb) du -sk $(LibDir)
235         $(Verb) du -sk $(ToolDir)
236         $(Verb) du -sk $(ExmplDir)
237         $(Verb) du -sk $(ObjDir)
238
239 build-for-llvm-top:
240         $(Verb) if test ! -f ./config.status ; then \
241           ./configure --prefix="$(LLVM_TOP)/install" \
242             --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
243         fi
244         $(Verb) $(MAKE) tools-only
245
246 SVN = svn
247 SVN-UPDATE-OPTIONS =
248 AWK = awk
249 SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}'   \
250                 | LC_ALL=C xargs $(SVN) info 2>/dev/null \
251                 | $(AWK) '/^Path:\ / {print $$2}'
252
253 update:
254         $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
255         @ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
256
257 happiness: update all check-all
258
259 .PHONY: srpm rpm update happiness
260
261 # declare all targets at this level to be serial:
262
263 .NOTPARALLEL:
264
265 else # Building "Apple-style."
266 # In an Apple-style build, once configuration is done, lines marked
267 # "Apple-style" are removed with sed!  Please don't remove these!
268 # Look for the string "Apple-style" in utils/buildit/build_llvm.
269 include $(shell find . -name GNUmakefile) # Building "Apple-style."
270 endif # Building "Apple-style."