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