]> git.ipfire.org Git - thirdparty/linux.git/blame - scripts/Makefile.build
mm: remove both instances of __vmalloc_node_flags
[thirdparty/linux.git] / scripts / Makefile.build
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2# ==========================================================================
3# Building
4# ==========================================================================
5
6src := $(obj)
7
4f193362 8PHONY := __build
1da177e4
LT
9__build:
10
d72e5edb
SR
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
14obj-y :=
15obj-m :=
16lib-y :=
17lib-m :=
18always :=
5f2fb52f
MY
19always-y :=
20always-m :=
d72e5edb
SR
21targets :=
22subdir-y :=
23subdir-m :=
24EXTRA_AFLAGS :=
25EXTRA_CFLAGS :=
26EXTRA_CPPFLAGS :=
27EXTRA_LDFLAGS :=
f77bf014
SR
28asflags-y :=
29ccflags-y :=
30cppflags-y :=
31ldflags-y :=
d72e5edb 32
720097d8
SR
33subdir-asflags-y :=
34subdir-ccflags-y :=
35
3156fd05 36# Read auto.conf if it exists, otherwise ignore
c955ccaf 37-include include/config/auto.conf
1da177e4 38
20a468b5
SR
39include scripts/Kbuild.include
40
2a691470 41# The filename Kbuild has precedence over Makefile
db8c1a7b 42kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
0c53c8e6
SR
43kbuild-file := $(if $(wildcard $(kbuild-dir)/Kbuild),$(kbuild-dir)/Kbuild,$(kbuild-dir)/Makefile)
44include $(kbuild-file)
45
1da177e4
LT
46include scripts/Makefile.lib
47
3156fd05 48# Do not include host rules unless needed
77342a02 49ifneq ($(hostprogs)$(hostcxxlibs-y)$(hostcxxlibs-m),)
1da177e4
LT
50include scripts/Makefile.host
51endif
52
1da177e4
LT
53ifndef obj
54$(warning kbuild: Makefile.build is included improperly)
55endif
56
394053f4 57ifeq ($(need-modorder),)
c07d8d47
MY
58ifneq ($(obj-m),)
59$(warning $(patsubst %.o,'%.ko',$(obj-m)) will not be built even though obj-m is specified.)
60$(warning You cannot use subdir-y/m to visit a module Makefile. Use obj-y/m instead.)
61endif
62endif
63
1da177e4
LT
64# ===========================================================================
65
a4954fd7 66ifneq ($(strip $(lib-y) $(lib-m) $(lib-)),)
1da177e4
LT
67lib-target := $(obj)/lib.a
68endif
69
56d58936 70ifdef need-builtin
f49821ee 71builtin-target := $(obj)/built-in.a
1da177e4
LT
72endif
73
7e131918 74ifeq ($(CONFIG_MODULES)$(need-modorder),y1)
551559e1 75modorder-target := $(obj)/modules.order
1d8001ef 76endif
551559e1 77
9f69a496
MY
78mod-targets := $(patsubst %.o, %.mod, $(obj-m))
79
1da177e4 80# Linus' kernel sanity checking tool
7d0ea252
MY
81ifeq ($(KBUILD_CHECKSRC),1)
82 quiet_cmd_checksrc = CHECK $<
e5d28910 83 cmd_checksrc = $(CHECK) $(CHECKFLAGS) $(c_flags) $<
7d0ea252
MY
84else ifeq ($(KBUILD_CHECKSRC),2)
85 quiet_cmd_force_checksrc = CHECK $<
e5d28910 86 cmd_force_checksrc = $(CHECK) $(CHECKFLAGS) $(c_flags) $<
1da177e4
LT
87endif
88
e27128db 89ifneq ($(KBUILD_EXTRA_WARN),)
e5d28910 90 cmd_checkdoc = $(srctree)/scripts/kernel-doc -none $<
3a025e1d
MW
91endif
92
1da177e4
LT
93# Compile C sources (.c)
94# ---------------------------------------------------------------------------
95
1da177e4 96quiet_cmd_cc_s_c = CC $(quiet_modtag) $@
1e88e415 97 cmd_cc_s_c = $(CC) $(filter-out $(DEBUG_CFLAGS), $(c_flags)) $(DISABLE_LTO) -fverbose-asm -S -o $@ $<
1da177e4 98
767e581d 99$(obj)/%.s: $(src)/%.c FORCE
1da177e4
LT
100 $(call if_changed_dep,cc_s_c)
101
23d43848
MY
102quiet_cmd_cpp_i_c = CPP $(quiet_modtag) $@
103cmd_cpp_i_c = $(CPP) $(c_flags) -o $@ $<
1da177e4 104
767e581d 105$(obj)/%.i: $(src)/%.c FORCE
23d43848 106 $(call if_changed_dep,cpp_i_c)
1da177e4 107
4efca4ed
NP
108# These mirror gensymtypes_S and co below, keep them in synch.
109cmd_gensymtypes_c = \
37a8d9f6 110 $(CPP) -D__GENKSYMS__ $(c_flags) $< | \
88110713 111 scripts/genksyms/genksyms $(if $(1), -T $(2)) \
56067812 112 $(patsubst y,-R,$(CONFIG_MODULE_REL_CRCS)) \
37a8d9f6 113 $(if $(KBUILD_PRESERVE),-p) \
e26d6b83 114 -r $(firstword $(wildcard $(2:.symtypes=.symref) /dev/null))
37a8d9f6 115
15fde675 116quiet_cmd_cc_symtypes_c = SYM $(quiet_modtag) $@
37a8d9f6 117cmd_cc_symtypes_c = \
4efca4ed 118 $(call cmd_gensymtypes_c,true,$@) >/dev/null; \
37a8d9f6 119 test -s $@ || rm -f $@
15fde675 120
767e581d 121$(obj)/%.symtypes : $(src)/%.c FORCE
64e6c1e1 122 $(call cmd,cc_symtypes_c)
15fde675 123
433db3e2
VT
124# LLVM assembly
125# Generate .ll files from .c
126quiet_cmd_cc_ll_c = CC $(quiet_modtag) $@
127 cmd_cc_ll_c = $(CC) $(c_flags) -emit-llvm -S -o $@ $<
128
129$(obj)/%.ll: $(src)/%.c FORCE
130 $(call if_changed_dep,cc_ll_c)
131
1da177e4
LT
132# C (.c) files
133# The C file is compiled and updated dependency information is generated.
134# (See cmd_cc_o_c + relevant part of rule_cc_o_c)
135
136quiet_cmd_cc_o_c = CC $(quiet_modtag) $@
ee3e46b7 137 cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<
1da177e4 138
ee3e46b7 139ifdef CONFIG_MODVERSIONS
1da177e4 140# When module versioning is enabled the following steps are executed:
ee3e46b7
MY
141# o compile a <file>.o from <file>.c
142# o if <file>.o doesn't contain a __ksymtab version, i.e. does
143# not export symbols, it's done.
1da177e4
LT
144# o otherwise, we calculate symbol versions using the good old
145# genksyms on the preprocessed source and postprocess them in a way
2ea03891 146# that they are usable as a linker script
ee3e46b7 147# o generate .tmp_<file>.o from <file>.o using the linker to
2ea03891
SR
148# replace the unresolved symbols __crc_exported_symbol with
149# the actual value of the checksum generated by genksyms
ee3e46b7 150# o remove .tmp_<file>.o to <file>.o
4efca4ed
NP
151
152cmd_modversions_c = \
ee3e46b7 153 if $(OBJDUMP) -h $@ | grep -q __ksymtab; then \
4efca4ed 154 $(call cmd_gensymtypes_c,$(KBUILD_SYMTYPES),$(@:.o=.symtypes)) \
e26d6b83
DZ
155 > $(@D)/.tmp_$(@F:.o=.ver); \
156 \
ee3e46b7 157 $(LD) $(KBUILD_LDFLAGS) -r -o $(@D)/.tmp_$(@F) $@ \
e26d6b83 158 -T $(@D)/.tmp_$(@F:.o=.ver); \
e26d6b83 159 mv -f $(@D)/.tmp_$(@F) $@; \
ee3e46b7 160 rm -f $(@D)/.tmp_$(@F:.o=.ver); \
e5d28910 161 fi
1da177e4
LT
162endif
163
8da3821b 164ifdef CONFIG_FTRACE_MCOUNT_RECORD
07d04081
VG
165ifndef CC_USING_RECORD_MCOUNT
166# compiler will not generate __mcount_loc use recordmcount or recordmcount.pl
72441cb1 167ifdef BUILD_C_RECORDMCOUNT
85356f80
SR
168ifeq ("$(origin RECORDMCOUNT_WARN)", "command line")
169 RECORDMCOUNT_FLAGS = -w
170endif
d7b4d6de
SR
171# Due to recursion, we must skip empty.o.
172# The empty.o file is created in the make process in order to determine
312a3d09
C
173# the target endianness and word size. It is made before all other C
174# files, including recordmcount.
45677454
WZ
175sub_cmd_record_mcount = \
176 if [ $(@) != "scripts/mod/empty.o" ]; then \
85356f80 177 $(objtree)/scripts/recordmcount $(RECORDMCOUNT_FLAGS) "$(@)"; \
45677454 178 fi;
d6971822
MM
179recordmcount_source := $(srctree)/scripts/recordmcount.c \
180 $(srctree)/scripts/recordmcount.h
72441cb1 181else
4317ee3b 182sub_cmd_record_mcount = perl $(srctree)/scripts/recordmcount.pl "$(ARCH)" \
e6299d26 183 "$(if $(CONFIG_CPU_BIG_ENDIAN),big,little)" \
b3acf29a 184 "$(if $(CONFIG_64BIT),64,32)" \
5a4630aa 185 "$(OBJDUMP)" "$(OBJCOPY)" "$(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS)" \
d503ac53 186 "$(LD) $(KBUILD_LDFLAGS)" "$(NM)" "$(RM)" "$(MV)" \
18c167fd 187 "$(if $(part-of-module),1,0)" "$(@)";
d6971822 188recordmcount_source := $(srctree)/scripts/recordmcount.pl
312a3d09 189endif # BUILD_C_RECORDMCOUNT
1a49b2fd
JL
190cmd_record_mcount = $(if $(findstring $(strip $(CC_FLAGS_FTRACE)),$(_c_flags)), \
191 $(sub_cmd_record_mcount))
07d04081 192endif # CC_USING_RECORD_MCOUNT
312a3d09 193endif # CONFIG_FTRACE_MCOUNT_RECORD
8da3821b 194
b9ab5ebb 195ifdef CONFIG_STACK_VALIDATION
3b27a0c8 196ifneq ($(SKIP_STACK_VALIDATION),1)
b9ab5ebb
JP
197
198__objtool_obj := $(objtree)/tools/objtool/objtool
199
11af8474 200objtool_args = $(if $(CONFIG_UNWINDER_ORC),orc generate,check)
ee9f8fce 201
ca41b97e
PZ
202objtool_args += $(if $(part-of-module), --module,)
203
b9ab5ebb
JP
204ifndef CONFIG_FRAME_POINTER
205objtool_args += --no-fp
206endif
867ac9d7
JP
207ifdef CONFIG_GCOV_KERNEL
208objtool_args += --no-unreachable
209endif
b5bc2231
PZ
210ifdef CONFIG_RETPOLINE
211 objtool_args += --retpoline
212endif
ea24213d
PZ
213ifdef CONFIG_X86_SMAP
214 objtool_args += --uaccess
215endif
b5bc2231 216
b9ab5ebb
JP
217# 'OBJECT_FILES_NON_STANDARD := y': skip objtool checking for a directory
218# 'OBJECT_FILES_NON_STANDARD_foo.o := 'y': skip objtool checking for a file
219# 'OBJECT_FILES_NON_STANDARD_foo.o := 'n': override directory skip for a file
220cmd_objtool = $(if $(patsubst y%,, \
221 $(OBJECT_FILES_NON_STANDARD_$(basetarget).o)$(OBJECT_FILES_NON_STANDARD)n), \
e5d28910 222 $(__objtool_obj) $(objtool_args) $@)
b9ab5ebb
JP
223objtool_obj = $(if $(patsubst y%,, \
224 $(OBJECT_FILES_NON_STANDARD_$(basetarget).o)$(OBJECT_FILES_NON_STANDARD)n), \
225 $(__objtool_obj))
226
3b27a0c8 227endif # SKIP_STACK_VALIDATION
b9ab5ebb
JP
228endif # CONFIG_STACK_VALIDATION
229
ee9f8fce
JP
230# Rebuild all objects when objtool changes, or is enabled/disabled.
231objtool_dep = $(objtool_obj) \
232 $(wildcard include/config/orc/unwinder.h \
233 include/config/stack/validation.h)
234
bbda5ec6
MY
235ifdef CONFIG_TRIM_UNUSED_KSYMS
236cmd_gen_ksymdeps = \
e5d28910 237 $(CONFIG_SHELL) $(srctree)/scripts/gen_ksymdeps.sh $@ >> $(dot-target).cmd
bbda5ec6
MY
238endif
239
1da177e4 240define rule_cc_o_c
3a2429e1
MY
241 $(call cmd,checksrc)
242 $(call cmd_and_fixdep,cc_o_c)
243 $(call cmd,gen_ksymdeps)
244 $(call cmd,checkdoc)
245 $(call cmd,objtool)
246 $(call cmd,modversions_c)
247 $(call cmd,record_mcount)
1da177e4
LT
248endef
249
b9ab5ebb 250define rule_as_o_S
3a2429e1
MY
251 $(call cmd_and_fixdep,as_o_S)
252 $(call cmd,gen_ksymdeps)
253 $(call cmd,objtool)
254 $(call cmd,modversions_S)
b9ab5ebb
JP
255endef
256
9895c03d
NP
257# List module undefined symbols (or empty line if not enabled)
258ifdef CONFIG_TRIM_UNUSED_KSYMS
9f69a496 259cmd_undef_syms = $(NM) $< | sed -n 's/^ *U //p' | xargs echo
9895c03d
NP
260else
261cmd_undef_syms = echo
262endif
263
1da177e4 264# Built-in and composite module parts
ee9f8fce 265$(obj)/%.o: $(src)/%.c $(recordmcount_source) $(objtool_dep) FORCE
1da177e4
LT
266 $(call cmd,force_checksrc)
267 $(call if_changed_rule,cc_o_c)
268
9f69a496
MY
269cmd_mod = { \
270 echo $(if $($*-objs)$($*-y)$($*-m), $(addprefix $(obj)/, $($*-objs) $($*-y) $($*-m)), $(@:.mod=.o)); \
271 $(cmd_undef_syms); \
272 } > $@
273
274$(obj)/%.mod: $(obj)/%.o FORCE
275 $(call if_changed,mod)
276
277targets += $(mod-targets)
1da177e4
LT
278
279quiet_cmd_cc_lst_c = MKLST $@
280 cmd_cc_lst_c = $(CC) $(c_flags) -g -c -o $*.o $< && \
281 $(CONFIG_SHELL) $(srctree)/scripts/makelst $*.o \
282 System.map $(OBJDUMP) > $@
283
767e581d 284$(obj)/%.lst: $(src)/%.c FORCE
1da177e4
LT
285 $(call if_changed_dep,cc_lst_c)
286
287# Compile assembler sources (.S)
288# ---------------------------------------------------------------------------
289
4efca4ed
NP
290# .S file exports must have their C prototypes defined in asm/asm-prototypes.h
291# or a file that it includes, in order to get versioned symbols. We build a
292# dummy C file that includes asm-prototypes and the EXPORT_SYMBOL lines from
293# the .S file (with trailing ';'), and run genksyms on that, to extract vers.
294#
295# This is convoluted. The .S file must first be preprocessed to run guards and
296# expand names, then the resulting exports must be constructed into plain
297# EXPORT_SYMBOL(symbol); to build our dummy C file, and that gets preprocessed
298# to make the genksyms input.
299#
300# These mirror gensymtypes_c and co above, keep them in synch.
301cmd_gensymtypes_S = \
b79c6aa6 302 { echo "\#include <linux/kernel.h>" ; \
4efca4ed
NP
303 echo "\#include <asm/asm-prototypes.h>" ; \
304 $(CPP) $(a_flags) $< | \
cc6acc11 305 grep "\<___EXPORT_SYMBOL\>" | \
b79c6aa6 306 sed 's/.*___EXPORT_SYMBOL[[:space:]]*\([a-zA-Z0-9_]*\)[[:space:]]*,.*/EXPORT_SYMBOL(\1);/' ; } | \
4efca4ed 307 $(CPP) -D__GENKSYMS__ $(c_flags) -xc - | \
88110713 308 scripts/genksyms/genksyms $(if $(1), -T $(2)) \
56067812 309 $(patsubst y,-R,$(CONFIG_MODULE_REL_CRCS)) \
4efca4ed
NP
310 $(if $(KBUILD_PRESERVE),-p) \
311 -r $(firstword $(wildcard $(2:.symtypes=.symref) /dev/null))
312
313quiet_cmd_cc_symtypes_S = SYM $(quiet_modtag) $@
314cmd_cc_symtypes_S = \
4efca4ed
NP
315 $(call cmd_gensymtypes_S,true,$@) >/dev/null; \
316 test -s $@ || rm -f $@
317
318$(obj)/%.symtypes : $(src)/%.S FORCE
319 $(call cmd,cc_symtypes_S)
320
321
e0f41e52
MY
322quiet_cmd_cpp_s_S = CPP $(quiet_modtag) $@
323cmd_cpp_s_S = $(CPP) $(a_flags) -o $@ $<
1da177e4 324
767e581d 325$(obj)/%.s: $(src)/%.S FORCE
e0f41e52 326 $(call if_changed_dep,cpp_s_S)
1da177e4
LT
327
328quiet_cmd_as_o_S = AS $(quiet_modtag) $@
ee3e46b7 329 cmd_as_o_S = $(CC) $(a_flags) -c -o $@ $<
4efca4ed 330
2ff2b7ec 331ifdef CONFIG_ASM_MODVERSIONS
4efca4ed
NP
332
333# versioning matches the C process described above, with difference that
334# we parse asm-prototypes.h C header to get function definitions.
335
4efca4ed 336cmd_modversions_S = \
ee3e46b7 337 if $(OBJDUMP) -h $@ | grep -q __ksymtab; then \
4efca4ed
NP
338 $(call cmd_gensymtypes_S,$(KBUILD_SYMTYPES),$(@:.o=.symtypes)) \
339 > $(@D)/.tmp_$(@F:.o=.ver); \
340 \
ee3e46b7 341 $(LD) $(KBUILD_LDFLAGS) -r -o $(@D)/.tmp_$(@F) $@ \
4efca4ed 342 -T $(@D)/.tmp_$(@F:.o=.ver); \
4efca4ed 343 mv -f $(@D)/.tmp_$(@F) $@; \
ee3e46b7 344 rm -f $(@D)/.tmp_$(@F:.o=.ver); \
e5d28910 345 fi
4efca4ed 346endif
1da177e4 347
ee9f8fce 348$(obj)/%.o: $(src)/%.S $(objtool_dep) FORCE
b9ab5ebb 349 $(call if_changed_rule,as_o_S)
1da177e4 350
f98fe47c 351targets += $(filter-out $(subdir-obj-y), $(real-obj-y)) $(real-obj-m) $(lib-y)
5f2fb52f 352targets += $(extra-y) $(always-y) $(MAKECMDGOALS)
1da177e4
LT
353
354# Linker scripts preprocessor (.lds.S -> .lds)
355# ---------------------------------------------------------------------------
356quiet_cmd_cpp_lds_S = LDS $@
5cb0512c 357 cmd_cpp_lds_S = $(CPP) $(cpp_flags) -P -U$(ARCH) \
42f29a25 358 -D__ASSEMBLY__ -DLINKER_SCRIPT -o $@ $<
1da177e4 359
767e581d 360$(obj)/%.lds: $(src)/%.lds.S FORCE
1da177e4
LT
361 $(call if_changed_dep,cpp_lds_S)
362
4520c6a4
DH
363# ASN.1 grammar
364# ---------------------------------------------------------------------------
49d5089d 365quiet_cmd_asn1_compiler = ASN.1 $(basename $@).[ch]
4520c6a4 366 cmd_asn1_compiler = $(objtree)/scripts/asn1_compiler $< \
49d5089d 367 $(basename $@).c $(basename $@).h
4520c6a4 368
4fa8bc94 369$(obj)/%.asn1.c $(obj)/%.asn1.h: $(src)/%.asn1 $(objtree)/scripts/asn1_compiler
4520c6a4
DH
370 $(call cmd,asn1_compiler)
371
1da177e4
LT
372# Build the compiled-in targets
373# ---------------------------------------------------------------------------
374
375# To build objects in subdirs, we need to descend into the directories
a7499267 376$(obj)/%/built-in.a: $(obj)/% ;
1da177e4
LT
377
378#
dee94953 379# Rule to compile a set of .o files into one .a file (without symbol table)
1da177e4
LT
380#
381ifdef builtin-target
a5967db9 382
5e18f029 383quiet_cmd_ar_builtin = AR $@
13dc8c02 384 cmd_ar_builtin = rm -f $@; $(AR) cDPrST $@ $(real-prereqs)
1da177e4 385
f98fe47c 386$(builtin-target): $(real-obj-y) FORCE
5e18f029 387 $(call if_changed,ar_builtin)
1da177e4
LT
388
389targets += $(builtin-target)
390endif # builtin-target
391
551559e1
TH
392#
393# Rule to create modules.order file
394#
395# Create commands to either record .ko file or cat modules.order from
396# a subdirectory
551559e1 397$(modorder-target): $(subdir-ym) FORCE
e0e1b1ec
MY
398 $(Q){ $(foreach m, $(modorder), \
399 $(if $(filter %/modules.order, $m), cat $m, echo $m);) :; } \
400 | $(AWK) '!x[$$0]++' - > $@
551559e1 401
1da177e4 402#
dee94953 403# Rule to compile a set of .o files into one .a file (with symbol table)
1da177e4
LT
404#
405ifdef lib-target
1da177e4
LT
406
407$(lib-target): $(lib-y) FORCE
898f5a00 408 $(call if_changed,ar)
1da177e4
LT
409
410targets += $(lib-target)
7f2084fa 411
1da177e4
LT
412endif
413
afa974b7
MY
414# NOTE:
415# Do not replace $(filter %.o,^) with $(real-prereqs). When a single object
416# module is turned into a multi object module, $^ will contain header file
417# dependencies recorded in the .*.cmd file.
1da177e4 418quiet_cmd_link_multi-m = LD [M] $@
b7dca6dd 419 cmd_link_multi-m = $(LD) $(ld_flags) -r -o $@ $(filter %.o,$^)
1da177e4 420
c8589d1e 421$(multi-used-m): FORCE
1da177e4 422 $(call if_changed,link_multi-m)
cf4f2193 423$(call multi_depend, $(multi-used-m), .o, -objs -y -m)
1da177e4 424
f98fe47c 425targets += $(multi-used-m)
591f6689 426targets := $(filter-out $(PHONY), $(targets))
1da177e4 427
b23d1a24
MY
428# Add intermediate targets:
429# When building objects with specific suffix patterns, add intermediate
430# targets that the final targets are derived from.
431intermediate_targets = $(foreach sfx, $(2), \
432 $(patsubst %$(strip $(1)),%$(sfx), \
433 $(filter %$(strip $(1)), $(targets))))
54a702f7 434# %.asn1.o <- %.asn1.[ch] <- %.asn1
a7f92419 435# %.dtb.o <- %.dtb.S <- %.dtb <- %.dts
b23d1a24
MY
436# %.lex.o <- %.lex.c <- %.l
437# %.tab.o <- %.tab.[ch] <- %.y
54a702f7
MY
438targets += $(call intermediate_targets, .asn1.o, .asn1.c .asn1.h) \
439 $(call intermediate_targets, .dtb.o, .dtb.S .dtb) \
a7f92419 440 $(call intermediate_targets, .lex.o, .lex.c) \
b23d1a24
MY
441 $(call intermediate_targets, .tab.o, .tab.c .tab.h)
442
394053f4
MY
443# Build
444# ---------------------------------------------------------------------------
445
446ifdef single-build
447
20312629
MY
448KBUILD_SINGLE_TARGETS := $(filter $(obj)/%, $(KBUILD_SINGLE_TARGETS))
449
394053f4
MY
450curdir-single := $(sort $(foreach x, $(KBUILD_SINGLE_TARGETS), \
451 $(if $(filter $(x) $(basename $(x)).o, $(targets)), $(x))))
452
453# Handle single targets without any rule: show "Nothing to be done for ..." or
454# "No rule to make target ..." depending on whether the target exists.
455unknown-single := $(filter-out $(addsuffix /%, $(subdir-ym)), \
20312629 456 $(filter-out $(curdir-single), $(KBUILD_SINGLE_TARGETS)))
394053f4 457
2dffd23f
MY
458single-subdirs := $(foreach d, $(subdir-ym), \
459 $(if $(filter $(d)/%, $(KBUILD_SINGLE_TARGETS)), $(d)))
460
461__build: $(curdir-single) $(single-subdirs)
394053f4
MY
462ifneq ($(unknown-single),)
463 $(Q)$(MAKE) -f /dev/null $(unknown-single)
464endif
465 @:
466
467ifeq ($(curdir-single),)
468# Nothing to do in this directory. Do not include any .*.cmd file for speed-up
469targets :=
470else
471targets += $(curdir-single)
472endif
473
474else
475
476__build: $(if $(KBUILD_BUILTIN),$(builtin-target) $(lib-target) $(extra-y)) \
477 $(if $(KBUILD_MODULES),$(obj-m) $(mod-targets) $(modorder-target)) \
5f2fb52f 478 $(subdir-ym) $(always-y)
394053f4
MY
479 @:
480
481endif
482
1da177e4
LT
483# Descending
484# ---------------------------------------------------------------------------
485
4f193362 486PHONY += $(subdir-ym)
1da177e4 487$(subdir-ym):
d9f78edf 488 $(Q)$(MAKE) $(build)=$@ \
394053f4 489 $(if $(filter $@/, $(KBUILD_SINGLE_TARGETS)),single-build=) \
4f2c8f30
MY
490 need-builtin=$(if $(filter $@/built-in.a, $(subdir-obj-y)),1) \
491 need-modorder=$(if $(need-modorder),$(if $(filter $@/modules.order, $(modorder)),1))
1da177e4
LT
492
493# Add FORCE to the prequisites of a target to force it to be always rebuilt.
494# ---------------------------------------------------------------------------
495
4f193362 496PHONY += FORCE
1da177e4
LT
497
498FORCE:
499
500# Read all saved command lines and dependencies for the $(targets) we
501# may be building above, using $(if_changed{,_dep}). As an
502# optimization, we don't need to read them if the target does not
503# exist, we will rebuild anyway in that case.
504
392885ee 505existing-targets := $(wildcard $(sort $(targets)))
1da177e4 506
392885ee 507-include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
4f193362 508
051f278e 509ifdef building_out_of_srctree
8a78756e
MY
510# Create directories for object files if they do not exist
511obj-dirs := $(sort $(obj) $(patsubst %/,%, $(dir $(targets))))
392885ee
MY
512# If targets exist, their directories apparently exist. Skip mkdir.
513existing-dirs := $(sort $(patsubst %/,%, $(dir $(existing-targets))))
514obj-dirs := $(strip $(filter-out $(existing-dirs), $(obj-dirs)))
c4da7ed0 515ifneq ($(obj-dirs),)
8a78756e
MY
516$(shell mkdir -p $(obj-dirs))
517endif
c4da7ed0 518endif
8a78756e 519
4f193362 520.PHONY: $(PHONY)