kbuild: link symbol CRCs at final link, removing CONFIG_MODULE_REL_CRCS
[linux-2.6-microblaze.git] / scripts / Makefile.build
1 # SPDX-License-Identifier: GPL-2.0
2 # ==========================================================================
3 # Building
4 # ==========================================================================
5
6 src := $(obj)
7
8 PHONY := __build
9 __build:
10
11 # Init all relevant variables used in kbuild files so
12 # 1) they have correct type
13 # 2) they do not inherit any value from the environment
14 obj-y :=
15 obj-m :=
16 lib-y :=
17 lib-m :=
18 always-y :=
19 always-m :=
20 targets :=
21 subdir-y :=
22 subdir-m :=
23 EXTRA_AFLAGS   :=
24 EXTRA_CFLAGS   :=
25 EXTRA_CPPFLAGS :=
26 EXTRA_LDFLAGS  :=
27 asflags-y  :=
28 ccflags-y  :=
29 cppflags-y :=
30 ldflags-y  :=
31
32 subdir-asflags-y :=
33 subdir-ccflags-y :=
34
35 # Read auto.conf if it exists, otherwise ignore
36 -include include/config/auto.conf
37
38 include $(srctree)/scripts/Kbuild.include
39 include $(srctree)/scripts/Makefile.compiler
40
41 # The filename Kbuild has precedence over Makefile
42 kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
43 include $(or $(wildcard $(kbuild-dir)/Kbuild),$(kbuild-dir)/Makefile)
44
45 include $(srctree)/scripts/Makefile.lib
46
47 # Do not include hostprogs rules unless needed.
48 # $(sort ...) is used here to remove duplicated words and excessive spaces.
49 hostprogs := $(sort $(hostprogs))
50 ifneq ($(hostprogs),)
51 include $(srctree)/scripts/Makefile.host
52 endif
53
54 # Do not include userprogs rules unless needed.
55 # $(sort ...) is used here to remove duplicated words and excessive spaces.
56 userprogs := $(sort $(userprogs))
57 ifneq ($(userprogs),)
58 include $(srctree)/scripts/Makefile.userprogs
59 endif
60
61 ifndef obj
62 $(warning kbuild: Makefile.build is included improperly)
63 endif
64
65 ifeq ($(need-modorder),)
66 ifneq ($(obj-m),)
67 $(warning $(patsubst %.o,'%.ko',$(obj-m)) will not be built even though obj-m is specified.)
68 $(warning You cannot use subdir-y/m to visit a module Makefile. Use obj-y/m instead.)
69 endif
70 endif
71
72 # ===========================================================================
73
74 # subdir-builtin and subdir-modorder may contain duplications. Use $(sort ...)
75 subdir-builtin := $(sort $(filter %/built-in.a, $(real-obj-y)))
76 subdir-modorder := $(sort $(filter %/modules.order, $(obj-m)))
77
78 targets-for-builtin := $(extra-y)
79
80 ifneq ($(strip $(lib-y) $(lib-m) $(lib-)),)
81 targets-for-builtin += $(obj)/lib.a
82 endif
83
84 ifdef need-builtin
85 targets-for-builtin += $(obj)/built-in.a
86 endif
87
88 targets-for-modules := $(foreach x, o mod $(if $(CONFIG_TRIM_UNUSED_KSYMS), usyms), \
89                                 $(patsubst %.o, %.$x, $(filter %.o, $(obj-m))))
90
91 ifneq ($(CONFIG_LTO_CLANG)$(CONFIG_X86_KERNEL_IBT),)
92 targets-for-modules += $(patsubst %.o, %.prelink.o, $(filter %.o, $(obj-m)))
93 endif
94
95 ifdef need-modorder
96 targets-for-modules += $(obj)/modules.order
97 endif
98
99 targets += $(targets-for-builtin) $(targets-for-modules)
100
101 # Linus' kernel sanity checking tool
102 ifeq ($(KBUILD_CHECKSRC),1)
103   quiet_cmd_checksrc       = CHECK   $<
104         cmd_checksrc       = $(CHECK) $(CHECKFLAGS) $(c_flags) $<
105 else ifeq ($(KBUILD_CHECKSRC),2)
106   quiet_cmd_force_checksrc = CHECK   $<
107         cmd_force_checksrc = $(CHECK) $(CHECKFLAGS) $(c_flags) $<
108 endif
109
110 ifneq ($(KBUILD_EXTRA_WARN),)
111   cmd_checkdoc = $(srctree)/scripts/kernel-doc -none $<
112 endif
113
114 # Compile C sources (.c)
115 # ---------------------------------------------------------------------------
116
117 quiet_cmd_cc_s_c = CC $(quiet_modtag)  $@
118       cmd_cc_s_c = $(CC) $(filter-out $(DEBUG_CFLAGS) $(CC_FLAGS_LTO), $(c_flags)) -fverbose-asm -S -o $@ $<
119
120 $(obj)/%.s: $(src)/%.c FORCE
121         $(call if_changed_dep,cc_s_c)
122
123 quiet_cmd_cpp_i_c = CPP $(quiet_modtag) $@
124 cmd_cpp_i_c       = $(CPP) $(c_flags) -o $@ $<
125
126 $(obj)/%.i: $(src)/%.c FORCE
127         $(call if_changed_dep,cpp_i_c)
128
129 genksyms = scripts/genksyms/genksyms            \
130         $(if $(1), -T $(2))                     \
131         $(if $(KBUILD_PRESERVE), -p)            \
132         -r $(or $(wildcard $(2:.symtypes=.symref)), /dev/null)
133
134 # These mirror gensymtypes_S and co below, keep them in synch.
135 cmd_gensymtypes_c = $(CPP) -D__GENKSYMS__ $(c_flags) $< | $(genksyms)
136
137 quiet_cmd_cc_symtypes_c = SYM $(quiet_modtag) $@
138       cmd_cc_symtypes_c = $(call cmd_gensymtypes_c,true,$@) >/dev/null
139
140 $(obj)/%.symtypes : $(src)/%.c FORCE
141         $(call cmd,cc_symtypes_c)
142
143 # LLVM assembly
144 # Generate .ll files from .c
145 quiet_cmd_cc_ll_c = CC $(quiet_modtag)  $@
146       cmd_cc_ll_c = $(CC) $(c_flags) -emit-llvm -S -o $@ $<
147
148 $(obj)/%.ll: $(src)/%.c FORCE
149         $(call if_changed_dep,cc_ll_c)
150
151 # C (.c) files
152 # The C file is compiled and updated dependency information is generated.
153 # (See cmd_cc_o_c + relevant part of rule_cc_o_c)
154
155 quiet_cmd_cc_o_c = CC $(quiet_modtag)  $@
156       cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $< $(cmd_objtool)
157
158 ifdef CONFIG_MODVERSIONS
159 # When module versioning is enabled the following steps are executed:
160 # o compile a <file>.o from <file>.c
161 # o if <file>.o doesn't contain a __ksymtab version, i.e. does
162 #   not export symbols, it's done.
163 # o otherwise, we calculate symbol versions using the good old
164 #   genksyms on the preprocessed source and dump them into the .cmd file.
165 # o modpost will extract versions from that file and create *.c files that will
166 #   be compiled and linked to the kernel and/or modules.
167
168 genksyms_format := __crc_\(.*\) = \(.*\);
169
170 gen_symversions =                                                               \
171         if $(NM) $@ 2>/dev/null | grep -q __ksymtab; then                       \
172                 $(call cmd_gensymtypes_$(1),$(KBUILD_SYMTYPES),$(@:.o=.symtypes)) \
173                     > $@.symversions;                                           \
174                 sed -n 's/$(genksyms_format)/$(pound)SYMVER \1 \2/p' $@.symversions \
175                         >> $(dot-target).cmd;                                   \
176         else                                                                    \
177                 rm -f $@.symversions;                                           \
178         fi
179
180 cmd_gen_symversions_c = $(call gen_symversions,c)
181
182 endif
183
184 ifdef CONFIG_FTRACE_MCOUNT_USE_RECORDMCOUNT
185 # compiler will not generate __mcount_loc use recordmcount or recordmcount.pl
186 ifdef BUILD_C_RECORDMCOUNT
187 ifeq ("$(origin RECORDMCOUNT_WARN)", "command line")
188   RECORDMCOUNT_FLAGS = -w
189 endif
190 # Due to recursion, we must skip empty.o.
191 # The empty.o file is created in the make process in order to determine
192 # the target endianness and word size. It is made before all other C
193 # files, including recordmcount.
194 sub_cmd_record_mcount =                                 \
195         if [ $(@) != "scripts/mod/empty.o" ]; then      \
196                 $(objtree)/scripts/recordmcount $(RECORDMCOUNT_FLAGS) "$(@)";   \
197         fi;
198 recordmcount_source := $(srctree)/scripts/recordmcount.c \
199                     $(srctree)/scripts/recordmcount.h
200 else
201 sub_cmd_record_mcount = perl $(srctree)/scripts/recordmcount.pl "$(ARCH)" \
202         "$(if $(CONFIG_CPU_BIG_ENDIAN),big,little)" \
203         "$(if $(CONFIG_64BIT),64,32)" \
204         "$(OBJDUMP)" "$(OBJCOPY)" "$(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS)" \
205         "$(LD) $(KBUILD_LDFLAGS)" "$(NM)" "$(RM)" "$(MV)" \
206         "$(if $(part-of-module),1,0)" "$(@)";
207 recordmcount_source := $(srctree)/scripts/recordmcount.pl
208 endif # BUILD_C_RECORDMCOUNT
209 cmd_record_mcount = $(if $(findstring $(strip $(CC_FLAGS_FTRACE)),$(_c_flags)), \
210         $(sub_cmd_record_mcount))
211 endif # CONFIG_FTRACE_MCOUNT_USE_RECORDMCOUNT
212
213 ifdef CONFIG_STACK_VALIDATION
214
215 objtool := $(objtree)/tools/objtool/objtool
216
217 objtool_args =                                                          \
218         $(if $(CONFIG_UNWINDER_ORC),orc generate,check)                 \
219         $(if $(part-of-module), --module)                               \
220         $(if $(CONFIG_X86_KERNEL_IBT), --lto --ibt)                     \
221         $(if $(CONFIG_FRAME_POINTER),, --no-fp)                         \
222         $(if $(CONFIG_GCOV_KERNEL)$(CONFIG_LTO_CLANG), --no-unreachable)\
223         $(if $(CONFIG_RETPOLINE), --retpoline)                          \
224         $(if $(CONFIG_X86_SMAP), --uaccess)                             \
225         $(if $(CONFIG_FTRACE_MCOUNT_USE_OBJTOOL), --mcount)             \
226         $(if $(CONFIG_SLS), --sls)
227
228 cmd_objtool = $(if $(objtool-enabled), ; $(objtool) $(objtool_args) $@)
229 cmd_gen_objtooldep = $(if $(objtool-enabled), { echo ; echo '$@: $$(wildcard $(objtool))' ; } >> $(dot-target).cmd)
230
231 endif # CONFIG_STACK_VALIDATION
232
233 ifneq ($(CONFIG_LTO_CLANG)$(CONFIG_X86_KERNEL_IBT),)
234
235 # Skip objtool for LLVM bitcode
236 $(obj)/%.o: objtool-enabled :=
237
238 else
239
240 # 'OBJECT_FILES_NON_STANDARD := y': skip objtool checking for a directory
241 # 'OBJECT_FILES_NON_STANDARD_foo.o := 'y': skip objtool checking for a file
242 # 'OBJECT_FILES_NON_STANDARD_foo.o := 'n': override directory skip for a file
243
244 $(obj)/%.o: objtool-enabled = $(if $(filter-out y%, \
245         $(OBJECT_FILES_NON_STANDARD_$(basetarget).o)$(OBJECT_FILES_NON_STANDARD)n),y)
246
247 endif
248
249 ifdef CONFIG_TRIM_UNUSED_KSYMS
250 cmd_gen_ksymdeps = \
251         $(CONFIG_SHELL) $(srctree)/scripts/gen_ksymdeps.sh $@ >> $(dot-target).cmd
252 endif
253
254 define rule_cc_o_c
255         $(call cmd_and_fixdep,cc_o_c)
256         $(call cmd,gen_ksymdeps)
257         $(call cmd,checksrc)
258         $(call cmd,checkdoc)
259         $(call cmd,gen_objtooldep)
260         $(call cmd,gen_symversions_c)
261         $(call cmd,record_mcount)
262 endef
263
264 define rule_as_o_S
265         $(call cmd_and_fixdep,as_o_S)
266         $(call cmd,gen_ksymdeps)
267         $(call cmd,gen_objtooldep)
268         $(call cmd,gen_symversions_S)
269 endef
270
271 # Built-in and composite module parts
272 $(obj)/%.o: $(src)/%.c $(recordmcount_source) FORCE
273         $(call if_changed_rule,cc_o_c)
274         $(call cmd,force_checksrc)
275
276 ifneq ($(CONFIG_LTO_CLANG)$(CONFIG_X86_KERNEL_IBT),)
277 # Module .o files may contain LLVM bitcode, compile them into native code
278 # before ELF processing
279 quiet_cmd_cc_prelink_modules = LD [M]  $@
280       cmd_cc_prelink_modules =                                          \
281         $(LD) $(ld_flags) -r -o $@                                      \
282                 --whole-archive $(filter-out FORCE,$^)                  \
283                 $(cmd_objtool)
284
285 # objtool was skipped for LLVM bitcode, run it now that we have compiled
286 # modules into native code
287 $(obj)/%.prelink.o: objtool-enabled = y
288 $(obj)/%.prelink.o: part-of-module := y
289
290 $(obj)/%.prelink.o: $(obj)/%.o FORCE
291         $(call if_changed,cc_prelink_modules)
292 endif
293
294 cmd_mod = echo $(addprefix $(obj)/, $(call real-search, $*.o, .o, -objs -y -m)) | \
295         $(AWK) -v RS='( |\n)' '!x[$$0]++' > $@
296
297 $(obj)/%.mod: FORCE
298         $(call if_changed,mod)
299
300 # List module undefined symbols
301 cmd_undefined_syms = $(NM) $< | sed -n 's/^  *U //p' > $@
302
303 $(obj)/%.usyms: $(obj)/%$(mod-prelink-ext).o FORCE
304         $(call if_changed,undefined_syms)
305
306 quiet_cmd_cc_lst_c = MKLST   $@
307       cmd_cc_lst_c = $(CC) $(c_flags) -g -c -o $*.o $< && \
308                      $(CONFIG_SHELL) $(srctree)/scripts/makelst $*.o \
309                                      System.map $(OBJDUMP) > $@
310
311 $(obj)/%.lst: $(src)/%.c FORCE
312         $(call if_changed_dep,cc_lst_c)
313
314 # Compile assembler sources (.S)
315 # ---------------------------------------------------------------------------
316
317 # .S file exports must have their C prototypes defined in asm/asm-prototypes.h
318 # or a file that it includes, in order to get versioned symbols. We build a
319 # dummy C file that includes asm-prototypes and the EXPORT_SYMBOL lines from
320 # the .S file (with trailing ';'), and run genksyms on that, to extract vers.
321 #
322 # This is convoluted. The .S file must first be preprocessed to run guards and
323 # expand names, then the resulting exports must be constructed into plain
324 # EXPORT_SYMBOL(symbol); to build our dummy C file, and that gets preprocessed
325 # to make the genksyms input.
326 #
327 # These mirror gensymtypes_c and co above, keep them in synch.
328 cmd_gensymtypes_S =                                                         \
329    { echo "\#include <linux/kernel.h>" ;                                    \
330      echo "\#include <asm/asm-prototypes.h>" ;                              \
331     $(CPP) $(a_flags) $< |                                                  \
332      grep "\<___EXPORT_SYMBOL\>" |                                          \
333      sed 's/.*___EXPORT_SYMBOL[[:space:]]*\([a-zA-Z0-9_]*\)[[:space:]]*,.*/EXPORT_SYMBOL(\1);/' ; } | \
334     $(CPP) -D__GENKSYMS__ $(c_flags) -xc - | $(genksyms)
335
336 quiet_cmd_cc_symtypes_S = SYM $(quiet_modtag) $@
337       cmd_cc_symtypes_S = $(call cmd_gensymtypes_S,true,$@) >/dev/null
338
339 $(obj)/%.symtypes : $(src)/%.S FORCE
340         $(call cmd,cc_symtypes_S)
341
342
343 quiet_cmd_cpp_s_S = CPP $(quiet_modtag) $@
344 cmd_cpp_s_S       = $(CPP) $(a_flags) -o $@ $<
345
346 $(obj)/%.s: $(src)/%.S FORCE
347         $(call if_changed_dep,cpp_s_S)
348
349 quiet_cmd_as_o_S = AS $(quiet_modtag)  $@
350       cmd_as_o_S = $(CC) $(a_flags) -c -o $@ $< $(cmd_objtool)
351
352 ifdef CONFIG_ASM_MODVERSIONS
353
354 # versioning matches the C process described above, with difference that
355 # we parse asm-prototypes.h C header to get function definitions.
356
357 cmd_gen_symversions_S = $(call gen_symversions,S)
358
359 endif
360
361 $(obj)/%.o: $(src)/%.S FORCE
362         $(call if_changed_rule,as_o_S)
363
364 targets += $(filter-out $(subdir-builtin), $(real-obj-y))
365 targets += $(filter-out $(subdir-modorder), $(real-obj-m))
366 targets += $(real-dtb-y) $(lib-y) $(always-y) $(MAKECMDGOALS)
367
368 # Linker scripts preprocessor (.lds.S -> .lds)
369 # ---------------------------------------------------------------------------
370 quiet_cmd_cpp_lds_S = LDS     $@
371       cmd_cpp_lds_S = $(CPP) $(cpp_flags) -P -U$(ARCH) \
372                              -D__ASSEMBLY__ -DLINKER_SCRIPT -o $@ $<
373
374 $(obj)/%.lds: $(src)/%.lds.S FORCE
375         $(call if_changed_dep,cpp_lds_S)
376
377 # ASN.1 grammar
378 # ---------------------------------------------------------------------------
379 quiet_cmd_asn1_compiler = ASN.1   $(basename $@).[ch]
380       cmd_asn1_compiler = $(objtree)/scripts/asn1_compiler $< \
381                                 $(basename $@).c $(basename $@).h
382
383 $(obj)/%.asn1.c $(obj)/%.asn1.h: $(src)/%.asn1 $(objtree)/scripts/asn1_compiler
384         $(call cmd,asn1_compiler)
385
386 # Build the compiled-in targets
387 # ---------------------------------------------------------------------------
388
389 # To build objects in subdirs, we need to descend into the directories
390 $(subdir-builtin): $(obj)/%/built-in.a: $(obj)/% ;
391 $(subdir-modorder): $(obj)/%/modules.order: $(obj)/% ;
392
393 # combine symversions for later processing
394 ifeq ($(CONFIG_LTO_CLANG) $(CONFIG_MODVERSIONS),y y)
395       cmd_update_lto_symversions =                                      \
396         rm -f $@.symversions                                            \
397         $(foreach n, $(filter-out FORCE,$^),                            \
398                 $(if $(shell test -s $(n).symversions && echo y),       \
399                         ; cat $(n).symversions >> $@.symversions))
400 else
401       cmd_update_lto_symversions = echo >/dev/null
402 endif
403
404 #
405 # Rule to compile a set of .o files into one .a file (without symbol table)
406 #
407
408 quiet_cmd_ar_builtin = AR      $@
409       cmd_ar_builtin = rm -f $@; $(AR) cDPrST $@ $(real-prereqs)
410
411 quiet_cmd_ar_and_symver = AR      $@
412       cmd_ar_and_symver = $(cmd_update_lto_symversions); $(cmd_ar_builtin)
413
414 $(obj)/built-in.a: $(real-obj-y) FORCE
415         $(call if_changed,ar_and_symver)
416
417 #
418 # Rule to create modules.order file
419 #
420 # Create commands to either record .ko file or cat modules.order from
421 # a subdirectory
422 # Add $(obj-m) as the prerequisite to avoid updating the timestamp of
423 # modules.order unless contained modules are updated.
424
425 cmd_modules_order = { $(foreach m, $(real-prereqs), \
426         $(if $(filter %/modules.order, $m), cat $m, echo $(patsubst %.o,%.ko,$m));) :; } \
427         | $(AWK) '!x[$$0]++' - > $@
428
429 $(obj)/modules.order: $(obj-m) FORCE
430         $(call if_changed,modules_order)
431
432 #
433 # Rule to compile a set of .o files into one .a file (with symbol table)
434 #
435 quiet_cmd_ar_lib = AR      $@
436       cmd_ar_lib = $(cmd_update_lto_symversions); $(cmd_ar)
437
438 $(obj)/lib.a: $(lib-y) FORCE
439         $(call if_changed,ar_lib)
440
441 ifneq ($(CONFIG_LTO_CLANG)$(CONFIG_X86_KERNEL_IBT),)
442 quiet_cmd_link_multi-m = AR [M]  $@
443 cmd_link_multi-m =                                              \
444         $(cmd_update_lto_symversions);                          \
445         rm -f $@;                                               \
446         $(AR) cDPrsT $@ @$(patsubst %.o,%.mod,$@)
447 else
448 quiet_cmd_link_multi-m = LD [M]  $@
449       cmd_link_multi-m = $(LD) $(ld_flags) -r -o $@ @$(patsubst %.o,%.mod,$@)
450 endif
451
452 $(multi-obj-m): %.o: %.mod FORCE
453         $(call if_changed,link_multi-m)
454 $(call multi_depend, $(multi-obj-m), .o, -objs -y -m)
455
456 targets := $(filter-out $(PHONY), $(targets))
457
458 # Add intermediate targets:
459 # When building objects with specific suffix patterns, add intermediate
460 # targets that the final targets are derived from.
461 intermediate_targets = $(foreach sfx, $(2), \
462                                 $(patsubst %$(strip $(1)),%$(sfx), \
463                                         $(filter %$(strip $(1)), $(targets))))
464 # %.asn1.o <- %.asn1.[ch] <- %.asn1
465 # %.dtb.o <- %.dtb.S <- %.dtb <- %.dts
466 # %.lex.o <- %.lex.c <- %.l
467 # %.tab.o <- %.tab.[ch] <- %.y
468 targets += $(call intermediate_targets, .asn1.o, .asn1.c .asn1.h) \
469            $(call intermediate_targets, .dtb.o, .dtb.S .dtb) \
470            $(call intermediate_targets, .lex.o, .lex.c) \
471            $(call intermediate_targets, .tab.o, .tab.c .tab.h)
472
473 # Build
474 # ---------------------------------------------------------------------------
475
476 ifdef single-build
477
478 KBUILD_SINGLE_TARGETS := $(filter $(obj)/%, $(KBUILD_SINGLE_TARGETS))
479
480 curdir-single := $(sort $(foreach x, $(KBUILD_SINGLE_TARGETS), \
481                         $(if $(filter $(x) $(basename $(x)).o, $(targets)), $(x))))
482
483 # Handle single targets without any rule: show "Nothing to be done for ..." or
484 # "No rule to make target ..." depending on whether the target exists.
485 unknown-single := $(filter-out $(addsuffix /%, $(subdir-ym)), \
486                         $(filter-out $(curdir-single), $(KBUILD_SINGLE_TARGETS)))
487
488 single-subdirs := $(foreach d, $(subdir-ym), \
489                         $(if $(filter $(d)/%, $(KBUILD_SINGLE_TARGETS)), $(d)))
490
491 __build: $(curdir-single) $(single-subdirs)
492 ifneq ($(unknown-single),)
493         $(Q)$(MAKE) -f /dev/null $(unknown-single)
494 endif
495         @:
496
497 ifeq ($(curdir-single),)
498 # Nothing to do in this directory. Do not include any .*.cmd file for speed-up
499 targets :=
500 else
501 targets += $(curdir-single)
502 endif
503
504 else
505
506 __build: $(if $(KBUILD_BUILTIN), $(targets-for-builtin)) \
507          $(if $(KBUILD_MODULES), $(targets-for-modules)) \
508          $(subdir-ym) $(always-y)
509         @:
510
511 endif
512
513 # Descending
514 # ---------------------------------------------------------------------------
515
516 PHONY += $(subdir-ym)
517 $(subdir-ym):
518         $(Q)$(MAKE) $(build)=$@ \
519         $(if $(filter $@/, $(KBUILD_SINGLE_TARGETS)),single-build=) \
520         need-builtin=$(if $(filter $@/built-in.a, $(subdir-builtin)),1) \
521         need-modorder=$(if $(filter $@/modules.order, $(subdir-modorder)),1)
522
523 # Add FORCE to the prequisites of a target to force it to be always rebuilt.
524 # ---------------------------------------------------------------------------
525
526 PHONY += FORCE
527
528 FORCE:
529
530 # Read all saved command lines and dependencies for the $(targets) we
531 # may be building above, using $(if_changed{,_dep}). As an
532 # optimization, we don't need to read them if the target does not
533 # exist, we will rebuild anyway in that case.
534
535 existing-targets := $(wildcard $(sort $(targets)))
536
537 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
538
539 # Create directories for object files if they do not exist
540 obj-dirs := $(sort $(patsubst %/,%, $(dir $(targets))))
541 # If targets exist, their directories apparently exist. Skip mkdir.
542 existing-dirs := $(sort $(patsubst %/,%, $(dir $(existing-targets))))
543 obj-dirs := $(strip $(filter-out $(existing-dirs), $(obj-dirs)))
544 ifneq ($(obj-dirs),)
545 $(shell mkdir -p $(obj-dirs))
546 endif
547
548 .PHONY: $(PHONY)