]> git.lizzy.rs Git - rust.git/blob - Makefile.in
auto merge of #12149 : thomaslee/rust/ipaddr_deriving_iter_bytes, r=cmr
[rust.git] / Makefile.in
1 # Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 # file at the top-level directory of this distribution and at
3 # http://rust-lang.org/COPYRIGHT.
4 #
5 # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 # option. This file may not be copied, modified, or distributed
9 # except according to those terms.
10
11 # An explanation of how the build is structured:
12 #
13 # There are multiple build stages (0-3) needed to verify that the
14 # compiler is properly self-hosting. Each stage is divided between
15 # 'host' artifacts and 'target' artifacts, where the stageN host
16 # compiler builds artifacts for 1 or more stageN target architectures.
17 # Once the stageN target compiler has been built for the host
18 # architecture it is promoted (copied) to a stageN+1 host artifact.
19 #
20 # The stage3 host compiler is a compiler that successfully builds
21 # itself and should (in theory) be bitwise identical to the stage2
22 # host compiler. The process is bootstrapped using a stage0 host
23 # compiler downloaded from a previous snapshot.
24 #
25 # At no time should stageN artifacts be interacting with artifacts
26 # from other stages. For consistency, we use the 'promotion' logic
27 # for all artifacts, even those that don't make sense on non-host
28 # architectures.
29 #
30 # The directory layout for a stage is intended to match the layout
31 # of the installed compiler, and looks like the following:
32 #
33 # stageN - this is the system root, corresponding to, e.g. /usr
34 #   bin - binaries compiled for the host
35 #   lib - libraries used by the host compiler
36 #     rustlib - rustc's own place to organize libraries
37 #       $(target) - target-specific artifacts
38 #         bin - binaries for target architectures
39 #         lib - libraries for target architectures
40 #
41 # A note about host libraries:
42 #
43 # The only libraries that get promoted to stageN/lib are those needed
44 # by rustc. In general, rust programs, even those compiled for the
45 # host architecture will use libraries from the target
46 # directories. This gives rust some freedom to experiment with how
47 # libraries are managed and versioned without polluting the common
48 # areas of the filesystem.
49 #
50 # General rust binaries may stil live in the host bin directory; they
51 # will just link against the libraries in the target lib directory.
52 #
53 # Admittedly this is a little convoluted.
54
55 STAGES = 0 1 2 3
56
57 ######################################################################
58 # Residual auto-configuration
59 ######################################################################
60
61 # Recursive wildcard function
62 # http://blog.jgc.org/2011/07/gnu-make-recursive-wildcard-function.html
63 rwildcard=$(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) \
64   $(filter $(subst *,%,$2),$d))
65
66 include config.mk
67
68 # We track all of the object files we might build so that we can find
69 # and include all of the .d files in one fell swoop.
70 ALL_OBJ_FILES :=
71
72 MKFILE_DEPS := config.stamp $(call rwildcard,$(CFG_SRC_DIR)mk/,*)
73 NON_BUILD_HOST = $(filter-out $(CFG_BUILD),$(CFG_HOST))
74 NON_BUILD_TARGET = $(filter-out $(CFG_BUILD),$(CFG_TARGET))
75
76 ifneq ($(MAKE_RESTARTS),)
77 CFG_INFO := $(info cfg: make restarts: $(MAKE_RESTARTS))
78 endif
79
80 CFG_INFO := $(info cfg: build triple $(CFG_BUILD))
81 CFG_INFO := $(info cfg: host triples $(CFG_HOST))
82 CFG_INFO := $(info cfg: target triples $(CFG_TARGET))
83
84 ifneq ($(wildcard $(NON_BUILD_HOST)),)
85 CFG_INFO := $(info cfg: non-build host triples $(NON_BUILD_HOST))
86 endif
87 ifneq ($(wildcard $(NON_BUILD_TARGET)),)
88 CFG_INFO := $(info cfg: non-build target triples $(NON_BUILD_TARGET))
89 endif
90
91 CFG_RUSTC_FLAGS := $(RUSTFLAGS)
92 CFG_GCCISH_CFLAGS :=
93 CFG_GCCISH_LINK_FLAGS :=
94
95 ifdef CFG_DISABLE_OPTIMIZE
96   $(info cfg: disabling rustc optimization (CFG_DISABLE_OPTIMIZE))
97   CFG_RUSTC_FLAGS +=
98 else
99   # The rtopt cfg turns off runtime sanity checks
100   CFG_RUSTC_FLAGS += -O --cfg rtopt
101 endif
102
103 ifdef CFG_DISABLE_DEBUG
104   CFG_RUSTC_FLAGS += --cfg ndebug
105   CFG_GCCISH_CFLAGS += -DRUST_NDEBUG
106 else
107   $(info cfg: enabling more debugging (CFG_ENABLE_DEBUG))
108   CFG_RUSTC_FLAGS += --cfg debug
109   CFG_GCCISH_CFLAGS += -DRUST_DEBUG
110 endif
111
112 ifdef SAVE_TEMPS
113   CFG_RUSTC_FLAGS += --save-temps
114 endif
115 ifdef ASM_COMMENTS
116   CFG_RUSTC_FLAGS += -Z asm-comments
117 endif
118 ifdef TIME_PASSES
119   CFG_RUSTC_FLAGS += -Z time-passes
120 endif
121 ifdef TIME_LLVM_PASSES
122   CFG_RUSTC_FLAGS += -Z time-llvm-passes
123 endif
124 ifdef TRACE
125   CFG_RUSTC_FLAGS += -Z trace
126 endif
127 ifdef CFG_DISABLE_RPATH
128 # NOTE: make this CFG_RUSTC_FLAGS after stage0 snapshot
129 RUSTFLAGS_STAGE1 += --no-rpath
130 RUSTFLAGS_STAGE2 += --no-rpath
131 RUSTFLAGS_STAGE3 += --no-rpath
132 endif
133
134 # The executables crated during this compilation process have no need to include
135 # static copies of libstd and libextra. We also generate dynamic versions of all
136 # libraries, so in the interest of space, prefer dynamic linking throughout the
137 # compilation process.
138 #
139 # Note though that these flags are omitted for stage2+. This means that the
140 # snapshot will be generated with a statically linked rustc so we only have to
141 # worry about the distribution of one file (with its native dynamic
142 # dependencies)
143 RUSTFLAGS_STAGE0 += -Z prefer-dynamic
144 RUSTFLAGS_STAGE1 += -C prefer-dynamic
145
146 # platform-specific auto-configuration
147 include $(CFG_SRC_DIR)mk/platform.mk
148
149 # Run the stage1/2 compilers under valgrind
150 ifdef VALGRIND_COMPILE
151   CFG_VALGRIND_COMPILE :=$(CFG_VALGRIND)
152 else
153   CFG_VALGRIND_COMPILE :=
154 endif
155
156 # version-string calculation
157 CFG_GIT_DIR := $(CFG_SRC_DIR).git
158 CFG_RELEASE = 0.10-pre
159 CFG_VERSION = $(CFG_RELEASE)
160 # windows exe's need numeric versions - don't use anything but
161 # numbers and dots here
162 CFG_VERSION_WIN = 0.10
163
164 # since $(CFG_GIT) may contain spaces (especially on Windows),
165 # we need to escape them. (" " to r"\ ")
166 # Note that $(subst ...) ignores space after `subst`,
167 # so we use a hack: define $(SPACE) which contains space character.
168 SPACE :=
169 SPACE +=
170 ifneq ($(wildcard $(subst $(SPACE),\$(SPACE),$(CFG_GIT))),)
171 ifneq ($(wildcard $(subst $(SPACE),\$(SPACE),$(CFG_GIT_DIR))),)
172     CFG_VERSION += $(shell git --git-dir='$(CFG_GIT_DIR)' log -1 \
173                      --pretty=format:'(%h %ci)')
174     CFG_VER_HASH = $(shell git --git-dir='$(CFG_GIT_DIR)' rev-parse HEAD)
175 endif
176 endif
177
178 ifdef CFG_ENABLE_VALGRIND
179   $(info cfg: enabling valgrind (CFG_ENABLE_VALGRIND))
180 else
181   CFG_VALGRIND :=
182 endif
183 ifdef CFG_BAD_VALGRIND
184   $(info cfg: disabling valgrind due to its unreliability on this platform)
185   CFG_VALGRIND :=
186 endif
187
188
189 ######################################################################
190 # Target-and-rule "utility variables"
191 ######################################################################
192
193 ifdef VERBOSE
194   Q :=
195   E =
196 else
197   Q := @
198   E = echo $(1)
199 endif
200
201 S := $(CFG_SRC_DIR)
202
203 define DEF_X
204 X_$(1) := $(CFG_EXE_SUFFIX_$(1))
205 endef
206 $(foreach target,$(CFG_TARGET),\
207   $(eval $(call DEF_X,$(target))))
208
209 # "Source" files we generate in builddir along the way.
210 GENERATED :=
211
212 # Delete the built-in rules.
213 .SUFFIXES:
214 %:: %,v
215 %:: RCS/%,v
216 %:: RCS/%
217 %:: s.%
218 %:: SCCS/s.%
219
220
221 ######################################################################
222 # Cleaning out old crates
223 ######################################################################
224
225 # $(1) is the path for directory to match against
226 # $(2) is the glob to use in the match
227 #
228 # Note that a common bug is to accidentally construct the glob denoted
229 # by $(2) with a space character prefix, which invalidates the
230 # construction $(1)$(2).
231 define CHECK_FOR_OLD_GLOB_MATCHES
232   $(Q)MATCHES="$(wildcard $(1))"; if [ -n "$$MATCHES" ] ; then echo "warning: there are previous" \'$(notdir $(2))\' "libraries:" $$MATCHES; fi
233 endef
234
235 # Same interface as above, but deletes rather than just listing the files.
236 ifdef VERBOSE
237 define REMOVE_ALL_OLD_GLOB_MATCHES
238   $(Q)MATCHES="$(wildcard $(1))"; if [ -n "$$MATCHES" ] ; then echo "warning: removing previous" \'$(notdir $(1))\' "libraries:" $$MATCHES; rm $$MATCHES ; fi
239 endef
240 else
241 define REMOVE_ALL_OLD_GLOB_MATCHES
242   $(Q)MATCHES="$(wildcard $(1))"; if [ -n "$$MATCHES" ] ; then rm $$MATCHES ; fi
243 endef
244 endif
245
246 # We use a different strategy for LIST_ALL_OLD_GLOB_MATCHES_EXCEPT
247 # than in the macros above because it needs the result of running the
248 # `ls` command after other rules in the command list have run; the
249 # macro-expander for $(wildcard ...) would deliver its results too
250 # soon. (This is in contrast to the macros above, which are meant to
251 # be run at the outset of a command list in a rule.)
252 ifdef VERBOSE
253 define LIST_ALL_OLD_GLOB_MATCHES
254   @echo "info: now are following matches for" '$(notdir $(1))' "libraries:"
255   @( ls $(1) 2>/dev/null || true )
256 endef
257 else
258 define LIST_ALL_OLD_GLOB_MATCHES
259 endef
260 endif
261
262 ######################################################################
263 # LLVM macros
264 ######################################################################
265
266 # FIXME: x86-ism
267 LLVM_COMPONENTS=x86 arm mips ipo bitreader bitwriter linker asmparser jit mcjit \
268                 interpreter instrumentation
269
270 # Only build these LLVM tools
271 LLVM_TOOLS=bugpoint llc llvm-ar llvm-as llvm-dis llvm-mc opt llvm-extract
272
273 define DEF_LLVM_VARS
274 # The configure script defines these variables with the target triples
275 # separated by Z. This defines new ones with the expected format.
276 CFG_LLVM_BUILD_DIR_$(1):=$$(CFG_LLVM_BUILD_DIR_$(subst -,_,$(1)))
277 CFG_LLVM_INST_DIR_$(1):=$$(CFG_LLVM_INST_DIR_$(subst -,_,$(1)))
278
279 # Any rules that depend on LLVM should depend on LLVM_CONFIG
280 LLVM_CONFIG_$(1):=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-config$$(X_$(1))
281 LLVM_MC_$(1):=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-mc$$(X_$(1))
282 LLVM_VERSION_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --version)
283 LLVM_BINDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --bindir)
284 LLVM_INCDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --includedir)
285 LLVM_LIBDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --libdir)
286 LLVM_LIBS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --libs $$(LLVM_COMPONENTS))
287 LLVM_LDFLAGS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --ldflags)
288 # On FreeBSD, it may search wrong headers (that are for pre-installed LLVM),
289 # so we replace -I with -iquote to ensure that it searches bundled LLVM first.
290 LLVM_CXXFLAGS_$(1)=$$(subst -I, -iquote , $$(shell "$$(LLVM_CONFIG_$(1))" --cxxflags))
291 LLVM_HOST_TRIPLE_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --host-target)
292
293 LLVM_AS_$(1)=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-as$$(X_$(1))
294 LLC_$(1)=$$(CFG_LLVM_INST_DIR_$(1))/bin/llc$$(X_$(1))
295
296 endef
297
298 $(foreach host,$(CFG_HOST), \
299  $(eval $(call DEF_LLVM_VARS,$(host))))
300
301 ######################################################################
302 # Exports for sub-utilities
303 ######################################################################
304
305 # Note that any variable that re-configure should pick up needs to be
306 # exported
307
308 export CFG_SRC_DIR
309 export CFG_BUILD_DIR
310 export CFG_VERSION
311 export CFG_VERSION_WIN
312 export CFG_RELEASE
313 export CFG_BUILD
314 export CFG_LLVM_ROOT
315 export CFG_ENABLE_MINGW_CROSS
316 export CFG_PREFIX
317 export CFG_LIBDIR
318 export CFG_RUSTLIBDIR
319 export CFG_LIBDIR_RELATIVE
320 export CFG_DISABLE_INJECT_STD_VERSION
321
322 ######################################################################
323 # Per-stage targets and runner
324 ######################################################################
325
326 include $(CFG_SRC_DIR)mk/crates.mk
327
328 define SREQ
329 # $(1) is the stage number
330 # $(2) is the target triple
331 # $(3) is the host triple
332
333 # Destinations of artifacts for the host compiler
334 HROOT$(1)_H_$(3) = $(3)/stage$(1)
335 HBIN$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/bin
336 HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_LIBDIR_RELATIVE)
337
338 # Destinations of artifacts for target architectures
339 TROOT$(1)_T_$(2)_H_$(3) = $$(HLIB$(1)_H_$(3))/$$(CFG_RUSTLIBDIR)/$(2)
340 TBIN$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/bin
341 TLIB$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/lib
342
343 # Preqrequisites for using the stageN compiler
344 ifeq ($(1),0)
345 HSREQ$(1)_H_$(3) = $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))
346 else
347 HSREQ$(1)_H_$(3) = \
348         $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
349         $$(HLIB$(1)_H_$(3))/stamp.rustc \
350         $$(foreach dep,$$(RUST_DEPS_rustc),$$(HLIB$(1)_H_$(3))/stamp.$$(dep)) \
351         $$(MKFILE_DEPS)
352 endif
353
354 # Prerequisites for using the stageN compiler to build target artifacts
355 TSREQ$(1)_T_$(2)_H_$(3) = \
356         $$(HSREQ$(1)_H_$(3)) \
357         $$(TLIB$(1)_T_$(2)_H_$(3))/libmorestack.a
358
359 # Prerequisites for a working stageN compiler and libraries, for a specific
360 # target
361 SREQ$(1)_T_$(2)_H_$(3) = \
362         $$(TSREQ$(1)_T_$(2)_H_$(3)) \
363         $$(foreach dep,$$(TARGET_CRATES),\
364             $$(TLIB$(1)_T_$(2)_H_$(3))/stamp.$$(dep))
365
366 # Prerequisites for a working stageN compiler and complete set of target
367 # libraries
368 CSREQ$(1)_T_$(2)_H_$(3) = \
369         $$(TSREQ$(1)_T_$(2)_H_$(3)) \
370         $$(HBIN$(1)_H_$(3))/rustdoc$$(X_$(3)) \
371         $$(foreach dep,$$(CRATES),$$(TLIB$(1)_T_$(2)_H_$(3))/stamp.$$(dep)) \
372         $$(foreach dep,$$(HOST_CRATES),$$(HLIB$(1)_H_$(3))/stamp.$$(dep))
373
374 ifeq ($(1),0)
375 # Don't run the the stage0 compiler under valgrind - that ship has sailed
376 CFG_VALGRIND_COMPILE$(1) =
377 else
378 CFG_VALGRIND_COMPILE$(1) = $$(CFG_VALGRIND_COMPILE)
379 endif
380
381 # Add RUSTFLAGS_STAGEN values to the build command
382 EXTRAFLAGS_STAGE$(1) = $$(RUSTFLAGS_STAGE$(1))
383
384 CFGFLAG$(1)_T_$(2)_H_$(3) = stage$(1)
385
386 # Pass --cfg stage0 only for the build->host part of stage0;
387 # if you're building a cross config, the host->* parts are
388 # effectively stage1, since it uses the just-built stage0.
389 ifeq ($(1),0)
390 ifneq ($(strip $(CFG_BUILD)),$(strip $(3)))
391 CFGFLAG$(1)_T_$(2)_H_$(3) = stage1
392 endif
393 endif
394
395 ifdef CFG_DISABLE_RPATH
396 ifeq ($$(OSTYPE_$(3)),apple-darwin)
397   RPATH_VAR$(1)_T_$(2)_H_$(3) := \
398       DYLD_LIBRARY_PATH="$$$$DYLD_LIBRARY_PATH:$$(HLIB$(1)_H_$(3))"
399 else
400   RPATH_VAR$(1)_T_$(2)_H_$(3) := \
401       LD_LIBRARY_PATH="$$$$LD_LIBRARY_PATH:$$(HLIB$(1)_H_$(3))"
402 endif
403 else
404     RPATH_VAR$(1)_T_$(2)_H_$(3) :=
405 endif
406
407 STAGE$(1)_T_$(2)_H_$(3) :=                                              \
408         $$(Q)$$(RPATH_VAR$(1)_T_$(2)_H_$(3))                            \
409                 $$(call CFG_RUN_TARG_$(3),$(1),                         \
410                 $$(CFG_VALGRIND_COMPILE$(1))                            \
411                 $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))                     \
412                 --cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3))                     \
413                 $$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
414                 $$(RUSTC_FLAGS_$(2))
415
416 PERF_STAGE$(1)_T_$(2)_H_$(3) :=                                         \
417         $$(Q)$$(call CFG_RUN_TARG_$(3),$(1),                            \
418                 $$(CFG_PERF_TOOL)                                       \
419                 $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))                     \
420                 --cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3))                     \
421                 $$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
422                 $$(RUSTC_FLAGS_$(2))
423
424 endef
425
426 $(foreach build,$(CFG_HOST), \
427  $(eval $(foreach target,$(CFG_TARGET), \
428   $(eval $(foreach stage,$(STAGES), \
429    $(eval $(call SREQ,$(stage),$(target),$(build))))))))
430
431 ######################################################################
432 # rustc-H-targets
433 #
434 # Builds a functional Rustc for the given host.
435 ######################################################################
436
437 define DEF_RUSTC_STAGE_TARGET
438 # $(1) == architecture
439 # $(2) == stage
440
441 rustc-stage$(2)-H-$(1):                                                 \
442         $$(foreach target,$$(CFG_TARGET),$$(SREQ$(2)_T_$$(target)_H_$(1)))
443
444 endef
445
446 $(foreach host,$(CFG_HOST),                                             \
447  $(eval $(foreach stage,1 2 3,                                          \
448   $(eval $(call DEF_RUSTC_STAGE_TARGET,$(host),$(stage))))))
449
450 rustc-stage1: rustc-stage1-H-$(CFG_BUILD)
451 rustc-stage2: rustc-stage2-H-$(CFG_BUILD)
452 rustc-stage3: rustc-stage3-H-$(CFG_BUILD)
453
454 define DEF_RUSTC_TARGET
455 # $(1) == architecture
456
457 rustc-H-$(1): rustc-stage2-H-$(1)
458 endef
459
460 $(foreach host,$(CFG_TARGET),                   \
461  $(eval $(call DEF_RUSTC_TARGET,$(host))))
462
463 rustc-stage1: rustc-stage1-H-$(CFG_BUILD)
464 rustc-stage2: rustc-stage2-H-$(CFG_BUILD)
465 rustc-stage3: rustc-stage3-H-$(CFG_BUILD)
466 rustc: rustc-H-$(CFG_BUILD)
467
468 rustc-H-all: $(foreach host,$(CFG_HOST),rustc-H-$(host))
469
470 ######################################################################
471 # Entrypoint rule
472 ######################################################################
473
474 .DEFAULT_GOAL := all
475
476 ifneq ($(CFG_IN_TRANSITION),)
477
478 CFG_INFO := $(info cfg:)
479 CFG_INFO := $(info cfg: *** compiler is in snapshot transition ***)
480 CFG_INFO := $(info cfg: *** stage2 and later will not be built ***)
481 CFG_INFO := $(info cfg:)
482
483 #FIXME This is surely busted
484 all: $(SREQ1$(CFG_BUILD)) $(GENERATED) docs
485
486 else
487
488 define ALL_TARGET_N
489 ifneq ($$(findstring $(1),$$(CFG_HOST)),)
490 # This is a host
491 all-target-$(1)-host-$(2): $$(CSREQ2_T_$(1)_H_$(2))
492 else
493 # This is a target only
494 all-target-$(1)-host-$(2): $$(SREQ2_T_$(1)_H_$(2))
495 endif
496 endef
497
498 $(foreach target,$(CFG_TARGET), \
499  $(foreach host,$(CFG_HOST), \
500  $(eval $(call ALL_TARGET_N,$(target),$(host)))))
501
502 ALL_TARGET_RULES = $(foreach target,$(CFG_TARGET), \
503         $(foreach host,$(CFG_HOST), \
504  all-target-$(target)-host-$(host)))
505
506 all: $(ALL_TARGET_RULES) $(GENERATED) docs
507
508 endif
509
510
511 ######################################################################
512 # Re-configuration
513 ######################################################################
514
515 ifndef CFG_DISABLE_MANAGE_SUBMODULES
516 # This is a pretty expensive operation but I don't see any way to avoid it
517 NEED_GIT_RECONFIG=$(shell cd "$(CFG_SRC_DIR)" && "$(CFG_GIT)" submodule status | grep -c '^\(+\|-\)')
518 else
519 NEED_GIT_RECONFIG=0
520 endif
521
522 ifeq ($(NEED_GIT_RECONFIG),0)
523 else
524 # If the submodules have changed then always execute config.mk
525 .PHONY: config.stamp
526 endif
527
528 Makefile config.mk: config.stamp
529
530 config.stamp: $(S)configure $(S)Makefile.in $(S)src/snapshots.txt
531         @$(call E, cfg: reconfiguring)
532         $(Q)$(S)configure $(CFG_CONFIGURE_ARGS)
533
534
535 ######################################################################
536 # Primary-target makefiles
537 ######################################################################
538
539 # Issue #9531: If you change the order of any of the following (or add
540 # new definitions), make sure definitions always precede their uses,
541 # especially for the dependency lists of recipes.
542
543 include $(CFG_SRC_DIR)mk/rt.mk
544 include $(CFG_SRC_DIR)mk/target.mk
545 include $(CFG_SRC_DIR)mk/host.mk
546 include $(CFG_SRC_DIR)mk/stage0.mk
547 include $(CFG_SRC_DIR)mk/rustllvm.mk
548 include $(CFG_SRC_DIR)mk/docs.mk
549 include $(CFG_SRC_DIR)mk/llvm.mk
550
551 ######################################################################
552 # Secondary makefiles, conditionalized for speed
553 ######################################################################
554
555 ifneq ($(strip $(findstring dist,$(MAKECMDGOALS))   \
556                $(findstring check,$(MAKECMDGOALS))  \
557                $(findstring test,$(MAKECMDGOALS))   \
558                $(findstring tidy,$(MAKECMDGOALS))   \
559                $(findstring clean,$(MAKECMDGOALS))),)
560   CFG_INFO := $(info cfg: including dist rules)
561   include $(CFG_SRC_DIR)mk/dist.mk
562 endif
563
564 ifneq ($(strip $(findstring snap,$(MAKECMDGOALS))   \
565                $(findstring clean,$(MAKECMDGOALS))),)
566   CFG_INFO := $(info cfg: including snap rules)
567   include $(CFG_SRC_DIR)mk/snap.mk
568 endif
569
570 ifneq ($(strip $(findstring check,$(MAKECMDGOALS)) \
571                $(findstring test,$(MAKECMDGOALS))  \
572                $(findstring perf,$(MAKECMDGOALS))  \
573                $(findstring tidy,$(MAKECMDGOALS))),)
574   CFG_INFO := $(info cfg: including test rules)
575   include $(CFG_SRC_DIR)mk/tests.mk
576 endif
577
578 ifneq ($(findstring perf,$(MAKECMDGOALS)),)
579   CFG_INFO := $(info cfg: including perf rules)
580   include $(CFG_SRC_DIR)mk/perf.mk
581 endif
582
583 ifneq ($(findstring clean,$(MAKECMDGOALS)),)
584   CFG_INFO := $(info cfg: including clean rules)
585   include $(CFG_SRC_DIR)mk/clean.mk
586 endif
587
588 ifneq ($(findstring install,$(MAKECMDGOALS)),)
589   CFG_INFO := $(info cfg: including install rules)
590   include $(CFG_SRC_DIR)mk/install.mk
591 endif
592
593 ifneq ($(strip $(findstring TAGS.emacs,$(MAKECMDGOALS)) \
594                $(findstring TAGS.vi,$(MAKECMDGOALS))),)
595   CFG_INFO := $(info cfg: including ctags rules)
596   include $(CFG_SRC_DIR)mk/ctags.mk
597 endif
598
599 # Find all of the .d files and include them to add information about
600 # header file dependencies.
601 ALL_DEP_FILES := $(ALL_OBJ_FILES:%.o=%.d)
602 -include $(ALL_DEP_FILES)