Don't try to install c-index-test with BUILD_CLANG_ONLY. rdar://12492703
[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
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 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 \
72           tools/clang/include/clang-c \
73           tools/clang/runtime tools/clang/docs \
74           tools/lto runtime
75   ifneq ($(BUILD_CLANG_ONLY),YES)
76     DIRS += tools/clang/tools/c-index-test
77   endif
78   OPTIONAL_DIRS :=
79   NO_INSTALL = 1
80 endif
81
82 ifeq ($(MAKECMDGOALS),clang-only)
83   DIRS := $(filter-out tools docs unittests, $(DIRS)) \
84           tools/clang tools/lto
85   OPTIONAL_DIRS :=
86 endif
87
88 ifeq ($(MAKECMDGOALS),unittests)
89   DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
90   OPTIONAL_DIRS :=
91 endif
92
93 # Use NO_INSTALL define of the Makefile of each directory for deciding
94 # if the directory is installed or not
95 ifeq ($(MAKECMDGOALS),install)
96   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
97 endif
98
99 # Don't build unittests when ONLY_TOOLS is set.
100 ifneq ($(ONLY_TOOLS),)
101   DIRS := $(filter-out unittests, $(DIRS))
102 endif
103
104 # If we're cross-compiling, build the build-hosted tools first
105 ifeq ($(LLVM_CROSS_COMPILING),1)
106 all:: cross-compile-build-tools
107
108 clean::
109         $(Verb) rm -rf BuildTools
110
111 cross-compile-build-tools:
112         $(Verb) if [ ! -f BuildTools/Makefile ]; then \
113           $(MKDIR) BuildTools; \
114           cd BuildTools ; \
115           unset CFLAGS ; \
116           unset CXXFLAGS ; \
117           unset SDKROOT ; \
118           unset UNIVERSAL_SDK_PATH ; \
119           $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
120                 --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE) \
121                 --disable-polly ; \
122           cd .. ; \
123         fi; \
124         ($(MAKE) -C BuildTools \
125           BUILD_DIRS_ONLY=1 \
126           UNIVERSAL= \
127           UNIVERSAL_SDK_PATH= \
128           SDKROOT= \
129           TARGET_NATIVE_ARCH="$(TARGET_NATIVE_ARCH)" \
130           TARGETS_TO_BUILD="$(TARGETS_TO_BUILD)" \
131           ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \
132           ENABLE_PROFILING=$(ENABLE_PROFILING) \
133           ENABLE_COVERAGE=$(ENABLE_COVERAGE) \
134           DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \
135           ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \
136           ENABLE_LIBCPP=$(ENABLE_LIBCPP) \
137           CFLAGS= \
138           CXXFLAGS= \
139         ) || exit 1;
140 endif
141
142 # Include the main makefile machinery.
143 include $(LLVM_SRC_ROOT)/Makefile.rules
144
145 # Specify options to pass to configure script when we're
146 # running the dist-check target
147 DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
148
149 .PHONY: debug-opt-prof
150 debug-opt-prof:
151         $(Echo) Building Debug Version
152         $(Verb) $(MAKE)
153         $(Echo)
154         $(Echo) Building Optimized Version
155         $(Echo)
156         $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
157         $(Echo)
158         $(Echo) Building Profiling Version
159         $(Echo)
160         $(Verb) $(MAKE) ENABLE_PROFILING=1
161
162 dist-hook::
163         $(Echo) Eliminating files constructed by configure
164         $(Verb) $(RM) -f \
165           $(TopDistDir)/include/llvm/Config/config.h  \
166           $(TopDistDir)/include/llvm/Support/DataTypes.h
167
168 clang-only: all
169 tools-only: all
170 libs-only: all
171 install-clang: install
172 install-libs: install
173
174 # If SHOW_DIAGNOSTICS is enabled, clear the diagnostics file first.
175 ifeq ($(SHOW_DIAGNOSTICS),1)
176 clean-diagnostics:
177         $(Verb) rm -f $(LLVM_OBJ_ROOT)/$(BuildMode)/diags
178 .PHONY: clean-diagnostics
179
180 all-local:: clean-diagnostics
181 endif
182
183 #------------------------------------------------------------------------
184 # Make sure the generated files are up-to-date. This must be kept in
185 # sync with the AC_CONFIG_HEADER and AC_CONFIG_FILE invocations in
186 # autoconf/configure.ac.
187 # Note that Makefile.config is covered by its own separate rule
188 # in Makefile.rules where it can be reused by sub-projects.
189 #------------------------------------------------------------------------
190 FilesToConfig := \
191   bindings/ocaml/llvm/META.llvm \
192   docs/doxygen.cfg \
193   llvm.spec \
194   include/llvm/Config/config.h \
195   include/llvm/Config/llvm-config.h \
196   include/llvm/Config/Targets.def \
197   include/llvm/Config/AsmPrinters.def \
198   include/llvm/Config/AsmParsers.def \
199   include/llvm/Config/Disassemblers.def \
200   include/llvm/Support/DataTypes.h
201 FilesToConfigPATH  := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
202
203 all-local:: $(FilesToConfigPATH)
204 $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
205         $(Echo) Regenerating $*
206         $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
207 .PRECIOUS: $(FilesToConfigPATH)
208
209 # NOTE: This needs to remain as the last target definition in this file so
210 # that it gets executed last.
211 ifneq ($(BUILD_DIRS_ONLY),1)
212 all::
213         $(Echo) '*****' Completed $(BuildMode) Build
214 ifneq ($(ENABLE_OPTIMIZED),1)
215         $(Echo) '*****' Note: Debug build can be 10 times slower than an
216         $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
217         $(Echo) '*****' make an optimized build. Alternatively you can
218         $(Echo) '*****' configure with --enable-optimized.
219 ifeq ($(SHOW_DIAGNOSTICS),1)
220         $(Verb) if test -s $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; then \
221           $(LLVM_SRC_ROOT)/utils/clang-parse-diagnostics-file -a \
222             $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; \
223         fi
224 endif
225 endif
226 endif
227
228 check-llvm2cpp:
229         $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
230
231 srpm: $(LLVM_OBJ_ROOT)/llvm.spec
232         rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
233
234 rpm: $(LLVM_OBJ_ROOT)/llvm.spec
235         rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
236
237 show-footprint:
238         $(Verb) du -sk $(LibDir)
239         $(Verb) du -sk $(ToolDir)
240         $(Verb) du -sk $(ExmplDir)
241         $(Verb) du -sk $(ObjDir)
242
243 build-for-llvm-top:
244         $(Verb) if test ! -f ./config.status ; then \
245           ./configure --prefix="$(LLVM_TOP)/install" \
246             --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
247         fi
248         $(Verb) $(MAKE) tools-only
249
250 SVN = svn
251 SVN-UPDATE-OPTIONS =
252 AWK = awk
253 SUB-SVN-DIRS = $(AWK) '/I|\?      / {print $$2}'   \
254                 | LC_ALL=C xargs $(SVN) info 2>/dev/null \
255                 | $(AWK) '/^Path:\ / {print $$2}'
256
257 update:
258         $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
259         @ $(SVN) status --no-ignore $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
260
261 happiness: update all check-all
262
263 .PHONY: srpm rpm update happiness
264
265 # declare all targets at this level to be serial:
266
267 .NOTPARALLEL:
268
269 else # Building "Apple-style."
270 # In an Apple-style build, once configuration is done, lines marked
271 # "Apple-style" are removed with sed!  Please don't remove these!
272 # Look for the string "Apple-style" in utils/buildit/build_llvm.
273 include $(shell find . -name GNUmakefile) # Building "Apple-style."
274 endif # Building "Apple-style."