Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | # ========================================================================== |
| 3 | # Building |
| 4 | # ========================================================================== |
| 5 | |
| 6 | src := $(obj) |
| 7 | |
Paul Smith | 4f19336 | 2006-03-05 17:14:10 -0500 | [diff] [blame] | 8 | PHONY := __build |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | __build: |
| 10 | |
Sam Ravnborg | d72e5ed | 2007-05-28 22:47:48 +0200 | [diff] [blame] | 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 := |
Masahiro Yamada | 5f2fb52 | 2020-02-02 01:49:24 +0900 | [diff] [blame] | 18 | always-y := |
| 19 | always-m := |
Sam Ravnborg | d72e5ed | 2007-05-28 22:47:48 +0200 | [diff] [blame] | 20 | targets := |
| 21 | subdir-y := |
| 22 | subdir-m := |
| 23 | EXTRA_AFLAGS := |
| 24 | EXTRA_CFLAGS := |
| 25 | EXTRA_CPPFLAGS := |
| 26 | EXTRA_LDFLAGS := |
Sam Ravnborg | f77bf01 | 2007-10-15 22:25:06 +0200 | [diff] [blame] | 27 | asflags-y := |
| 28 | ccflags-y := |
| 29 | cppflags-y := |
| 30 | ldflags-y := |
Sam Ravnborg | d72e5ed | 2007-05-28 22:47:48 +0200 | [diff] [blame] | 31 | |
Sam Ravnborg | 720097d | 2009-04-19 11:04:26 +0200 | [diff] [blame] | 32 | subdir-asflags-y := |
| 33 | subdir-ccflags-y := |
| 34 | |
Robert P. J. Day | 3156fd0 | 2008-02-18 04:48:20 -0500 | [diff] [blame] | 35 | # Read auto.conf if it exists, otherwise ignore |
Roman Zippel | c955cca | 2006-06-08 22:12:39 -0700 | [diff] [blame] | 36 | -include include/config/auto.conf |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Masahiro Yamada | 3204a7f | 2021-02-28 15:10:26 +0900 | [diff] [blame] | 38 | include $(srctree)/scripts/Kbuild.include |
Masahiro Yamada | 57fd251 | 2021-02-28 15:10:27 +0900 | [diff] [blame] | 39 | include $(srctree)/scripts/Makefile.compiler |
Sam Ravnborg | 20a468b | 2006-01-22 13:34:15 +0100 | [diff] [blame] | 40 | |
Sam Ravnborg | 2a69147 | 2005-07-25 20:26:04 +0000 | [diff] [blame] | 41 | # The filename Kbuild has precedence over Makefile |
Sam Ravnborg | db8c1a7 | 2005-07-27 22:11:01 +0200 | [diff] [blame] | 42 | kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src)) |
Masahiro Yamada | 5c81664 | 2022-02-11 14:14:11 +0900 | [diff] [blame] | 43 | include $(or $(wildcard $(kbuild-dir)/Kbuild),$(kbuild-dir)/Makefile) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Masahiro Yamada | 3204a7f | 2021-02-28 15:10:26 +0900 | [diff] [blame] | 45 | include $(srctree)/scripts/Makefile.lib |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Masahiro Yamada | 85569d1 | 2020-07-29 12:15:37 +0900 | [diff] [blame] | 47 | # Do not include hostprogs rules unless needed. |
| 48 | # $(sort ...) is used here to remove duplicated words and excessive spaces. |
| 49 | hostprogs := $(sort $(hostprogs)) |
Masahiro Yamada | 42640b13 | 2020-07-29 12:15:36 +0900 | [diff] [blame] | 50 | ifneq ($(hostprogs),) |
Masahiro Yamada | 3204a7f | 2021-02-28 15:10:26 +0900 | [diff] [blame] | 51 | include $(srctree)/scripts/Makefile.host |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | endif |
| 53 | |
Masahiro Yamada | 7f3a59d | 2020-04-29 12:45:14 +0900 | [diff] [blame] | 54 | # Do not include userprogs rules unless needed. |
Masahiro Yamada | 85569d1 | 2020-07-29 12:15:37 +0900 | [diff] [blame] | 55 | # $(sort ...) is used here to remove duplicated words and excessive spaces. |
Masahiro Yamada | 7f3a59d | 2020-04-29 12:45:14 +0900 | [diff] [blame] | 56 | userprogs := $(sort $(userprogs)) |
| 57 | ifneq ($(userprogs),) |
Masahiro Yamada | 3204a7f | 2021-02-28 15:10:26 +0900 | [diff] [blame] | 58 | include $(srctree)/scripts/Makefile.userprogs |
Masahiro Yamada | 7f3a59d | 2020-04-29 12:45:14 +0900 | [diff] [blame] | 59 | endif |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | ifndef obj |
| 62 | $(warning kbuild: Makefile.build is included improperly) |
| 63 | endif |
| 64 | |
Masahiro Yamada | 394053f | 2019-08-15 00:19:18 +0900 | [diff] [blame] | 65 | ifeq ($(need-modorder),) |
Masahiro Yamada | c07d8d47 | 2019-08-08 20:21:11 +0900 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | # =========================================================================== |
| 73 | |
Masahiro Yamada | 454753d | 2020-05-22 11:00:02 +0900 | [diff] [blame] | 74 | # subdir-builtin and subdir-modorder may contain duplications. Use $(sort ...) |
Masahiro Yamada | aaa385b | 2020-05-22 11:00:01 +0900 | [diff] [blame] | 75 | subdir-builtin := $(sort $(filter %/built-in.a, $(real-obj-y))) |
Masahiro Yamada | b2c8855 | 2020-06-01 14:57:00 +0900 | [diff] [blame] | 76 | subdir-modorder := $(sort $(filter %/modules.order, $(obj-m))) |
Masahiro Yamada | 6ba3bcb | 2020-05-22 11:00:00 +0900 | [diff] [blame] | 77 | |
Masahiro Yamada | f3908ab | 2020-06-01 14:56:56 +0900 | [diff] [blame] | 78 | targets-for-builtin := $(extra-y) |
| 79 | |
Masahiro Yamada | a4954fd | 2014-09-09 19:26:21 +0900 | [diff] [blame] | 80 | ifneq ($(strip $(lib-y) $(lib-m) $(lib-)),) |
Masahiro Yamada | f3908ab | 2020-06-01 14:56:56 +0900 | [diff] [blame] | 81 | targets-for-builtin += $(obj)/lib.a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | endif |
| 83 | |
Masahiro Yamada | 56d5893 | 2019-12-19 01:04:28 +0900 | [diff] [blame] | 84 | ifdef need-builtin |
Masahiro Yamada | f3908ab | 2020-06-01 14:56:56 +0900 | [diff] [blame] | 85 | targets-for-builtin += $(obj)/built-in.a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | endif |
| 87 | |
Masahiro Yamada | fc93a4c | 2022-04-07 00:30:22 +0900 | [diff] [blame] | 88 | targets-for-modules := $(foreach x, o mod $(if $(CONFIG_TRIM_UNUSED_KSYMS), usyms), \ |
Masahiro Yamada | 9413e76 | 2022-04-07 00:30:20 +0900 | [diff] [blame] | 89 | $(patsubst %.o, %.$x, $(filter %.o, $(obj-m)))) |
Masahiro Yamada | f3908ab | 2020-06-01 14:56:56 +0900 | [diff] [blame] | 90 | |
Masahiro Yamada | b480fec | 2020-05-22 10:59:59 +0900 | [diff] [blame] | 91 | ifdef need-modorder |
Masahiro Yamada | f3908ab | 2020-06-01 14:56:56 +0900 | [diff] [blame] | 92 | targets-for-modules += $(obj)/modules.order |
Masahiro Yamada | 1d8001e | 2019-02-14 12:05:15 +0900 | [diff] [blame] | 93 | endif |
Tejun Heo | 551559e | 2007-12-07 21:04:30 +0900 | [diff] [blame] | 94 | |
Masahiro Yamada | f3908ab | 2020-06-01 14:56:56 +0900 | [diff] [blame] | 95 | targets += $(targets-for-builtin) $(targets-for-modules) |
Masahiro Yamada | 9f69a49 | 2019-07-17 15:18:00 +0900 | [diff] [blame] | 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | # Linus' kernel sanity checking tool |
Masahiro Yamada | 7d0ea25 | 2018-10-10 00:05:39 +0900 | [diff] [blame] | 98 | ifeq ($(KBUILD_CHECKSRC),1) |
| 99 | quiet_cmd_checksrc = CHECK $< |
Masahiro Yamada | e5d2891 | 2018-11-30 10:05:28 +0900 | [diff] [blame] | 100 | cmd_checksrc = $(CHECK) $(CHECKFLAGS) $(c_flags) $< |
Masahiro Yamada | 7d0ea25 | 2018-10-10 00:05:39 +0900 | [diff] [blame] | 101 | else ifeq ($(KBUILD_CHECKSRC),2) |
| 102 | quiet_cmd_force_checksrc = CHECK $< |
Masahiro Yamada | e5d2891 | 2018-11-30 10:05:28 +0900 | [diff] [blame] | 103 | cmd_force_checksrc = $(CHECK) $(CHECKFLAGS) $(c_flags) $< |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | endif |
| 105 | |
Masahiro Yamada | e27128d | 2019-09-01 01:25:55 +0900 | [diff] [blame] | 106 | ifneq ($(KBUILD_EXTRA_WARN),) |
Masahiro Yamada | e5d2891 | 2018-11-30 10:05:28 +0900 | [diff] [blame] | 107 | cmd_checkdoc = $(srctree)/scripts/kernel-doc -none $< |
Matthew Wilcox | 3a025e1 | 2017-11-20 10:40:40 -0800 | [diff] [blame] | 108 | endif |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | # Compile C sources (.c) |
| 111 | # --------------------------------------------------------------------------- |
| 112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | quiet_cmd_cc_s_c = CC $(quiet_modtag) $@ |
Sami Tolvanen | dc5723b | 2020-12-11 10:46:19 -0800 | [diff] [blame] | 114 | cmd_cc_s_c = $(CC) $(filter-out $(DEBUG_CFLAGS) $(CC_FLAGS_LTO), $(c_flags)) -fverbose-asm -S -o $@ $< |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
Sam Ravnborg | 767e581 | 2007-05-06 09:23:45 +0200 | [diff] [blame] | 116 | $(obj)/%.s: $(src)/%.c FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | $(call if_changed_dep,cc_s_c) |
| 118 | |
Masahiro Yamada | 23d4384 | 2016-04-08 11:24:47 +0900 | [diff] [blame] | 119 | quiet_cmd_cpp_i_c = CPP $(quiet_modtag) $@ |
| 120 | cmd_cpp_i_c = $(CPP) $(c_flags) -o $@ $< |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
Sam Ravnborg | 767e581 | 2007-05-06 09:23:45 +0200 | [diff] [blame] | 122 | $(obj)/%.i: $(src)/%.c FORCE |
Masahiro Yamada | 23d4384 | 2016-04-08 11:24:47 +0900 | [diff] [blame] | 123 | $(call if_changed_dep,cpp_i_c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Masahiro Yamada | f43e31d5 | 2022-04-05 20:33:49 +0900 | [diff] [blame] | 125 | genksyms = scripts/genksyms/genksyms \ |
| 126 | $(if $(1), -T $(2)) \ |
Masahiro Yamada | f43e31d5 | 2022-04-05 20:33:49 +0900 | [diff] [blame] | 127 | $(if $(KBUILD_PRESERVE), -p) \ |
| 128 | -r $(or $(wildcard $(2:.symtypes=.symref)), /dev/null) |
| 129 | |
Nicholas Piggin | 4efca4e | 2016-11-01 12:46:19 +1100 | [diff] [blame] | 130 | # These mirror gensymtypes_S and co below, keep them in synch. |
Masahiro Yamada | f43e31d5 | 2022-04-05 20:33:49 +0900 | [diff] [blame] | 131 | cmd_gensymtypes_c = $(CPP) -D__GENKSYMS__ $(c_flags) $< | $(genksyms) |
Sam Ravnborg | 37a8d9f | 2008-12-19 21:38:09 +0100 | [diff] [blame] | 132 | |
Andreas Gruenbacher | 15fde67 | 2006-05-09 20:37:30 +0200 | [diff] [blame] | 133 | quiet_cmd_cc_symtypes_c = SYM $(quiet_modtag) $@ |
Masahiro Yamada | dc6dc3e | 2022-04-05 20:33:50 +0900 | [diff] [blame] | 134 | cmd_cc_symtypes_c = $(call cmd_gensymtypes_c,true,$@) >/dev/null |
Andreas Gruenbacher | 15fde67 | 2006-05-09 20:37:30 +0200 | [diff] [blame] | 135 | |
Sam Ravnborg | 767e581 | 2007-05-06 09:23:45 +0200 | [diff] [blame] | 136 | $(obj)/%.symtypes : $(src)/%.c FORCE |
Andreas Gruenbacher | 64e6c1e | 2008-12-01 14:21:01 -0800 | [diff] [blame] | 137 | $(call cmd,cc_symtypes_c) |
Andreas Gruenbacher | 15fde67 | 2006-05-09 20:37:30 +0200 | [diff] [blame] | 138 | |
VinÃcius Tinti | 433db3e | 2017-04-24 13:04:58 -0700 | [diff] [blame] | 139 | # LLVM assembly |
| 140 | # Generate .ll files from .c |
| 141 | quiet_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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Masahiro Yamada | c25e1c5 | 2022-05-27 19:01:49 +0900 | [diff] [blame] | 151 | is-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. |
| 155 | ifdef CONFIG_LTO_CLANG |
| 156 | cmd_ld_single_m = $(if $(is-single-obj-m), ; $(LD) $(ld_flags) -r -o $(tmp-target) $@; mv $(tmp-target) $@) |
| 157 | endif |
| 158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | quiet_cmd_cc_o_c = CC $(quiet_modtag) $@ |
Masahiro Yamada | c25e1c5 | 2022-05-27 19:01:49 +0900 | [diff] [blame] | 160 | cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $< \ |
| 161 | $(cmd_ld_single_m) \ |
| 162 | $(cmd_objtool) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Masahiro Yamada | ee3e46b | 2018-11-30 10:05:25 +0900 | [diff] [blame] | 164 | ifdef CONFIG_MODVERSIONS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | # When module versioning is enabled the following steps are executed: |
Masahiro Yamada | ee3e46b | 2018-11-30 10:05:25 +0900 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | # o otherwise, we calculate symbol versions using the good old |
Masahiro Yamada | 7b45371 | 2022-05-13 20:39:22 +0900 | [diff] [blame] | 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. |
Nicholas Piggin | 4efca4e | 2016-11-01 12:46:19 +1100 | [diff] [blame] | 173 | |
Masahiro Yamada | 8017ce5 | 2022-04-05 20:33:57 +0900 | [diff] [blame] | 174 | gen_symversions = \ |
Sami Tolvanen | 38e8918 | 2020-12-11 10:46:20 -0800 | [diff] [blame] | 175 | if $(NM) $@ 2>/dev/null | grep -q __ksymtab; then \ |
Masahiro Yamada | 8017ce5 | 2022-04-05 20:33:57 +0900 | [diff] [blame] | 176 | $(call cmd_gensymtypes_$(1),$(KBUILD_SYMTYPES),$(@:.o=.symtypes)) \ |
Masahiro Yamada | 78e9e56 | 2022-05-05 16:22:35 +0900 | [diff] [blame] | 177 | >> $(dot-target).cmd; \ |
Masahiro Yamada | e5d2891 | 2018-11-30 10:05:28 +0900 | [diff] [blame] | 178 | fi |
Masahiro Yamada | 8017ce5 | 2022-04-05 20:33:57 +0900 | [diff] [blame] | 179 | |
| 180 | cmd_gen_symversions_c = $(call gen_symversions,c) |
| 181 | |
Sami Tolvanen | 38e8918 | 2020-12-11 10:46:20 -0800 | [diff] [blame] | 182 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
Sami Tolvanen | 3b15cdc1 | 2020-12-11 10:46:18 -0800 | [diff] [blame] | 184 | ifdef CONFIG_FTRACE_MCOUNT_USE_RECORDMCOUNT |
Vasily Gorbik | 07d0408 | 2018-08-06 15:17:44 +0200 | [diff] [blame] | 185 | # compiler will not generate __mcount_loc use recordmcount or recordmcount.pl |
Steven Rostedt | 72441cb | 2010-10-13 17:12:30 -0400 | [diff] [blame] | 186 | ifdef BUILD_C_RECORDMCOUNT |
Steven Rostedt | 85356f8 | 2011-04-12 18:59:10 -0400 | [diff] [blame] | 187 | ifeq ("$(origin RECORDMCOUNT_WARN)", "command line") |
| 188 | RECORDMCOUNT_FLAGS = -w |
| 189 | endif |
Steven Rostedt | d7b4d6d | 2010-10-18 14:42:00 -0400 | [diff] [blame] | 190 | # Due to recursion, we must skip empty.o. |
| 191 | # The empty.o file is created in the make process in order to determine |
Cao jin | 312a3d0 | 2017-08-02 10:31:06 +0800 | [diff] [blame] | 192 | # the target endianness and word size. It is made before all other C |
| 193 | # files, including recordmcount. |
Wu Zhangjin | 4567745 | 2010-10-28 00:24:34 +0800 | [diff] [blame] | 194 | sub_cmd_record_mcount = \ |
| 195 | if [ $(@) != "scripts/mod/empty.o" ]; then \ |
Steven Rostedt | 85356f8 | 2011-04-12 18:59:10 -0400 | [diff] [blame] | 196 | $(objtree)/scripts/recordmcount $(RECORDMCOUNT_FLAGS) "$(@)"; \ |
Wu Zhangjin | 4567745 | 2010-10-28 00:24:34 +0800 | [diff] [blame] | 197 | fi; |
Michal Marek | d697182 | 2011-05-17 15:36:46 +0200 | [diff] [blame] | 198 | recordmcount_source := $(srctree)/scripts/recordmcount.c \ |
| 199 | $(srctree)/scripts/recordmcount.h |
Steven Rostedt | 72441cb | 2010-10-13 17:12:30 -0400 | [diff] [blame] | 200 | else |
Masahiro Yamada | 4317ee3 | 2018-11-30 10:05:24 +0900 | [diff] [blame] | 201 | sub_cmd_record_mcount = perl $(srctree)/scripts/recordmcount.pl "$(ARCH)" \ |
Wu Zhangjin | e6299d2 | 2009-11-20 20:34:31 +0800 | [diff] [blame] | 202 | "$(if $(CONFIG_CPU_BIG_ENDIAN),big,little)" \ |
Steven Rostedt | b3acf29 | 2008-10-29 15:30:26 -0400 | [diff] [blame] | 203 | "$(if $(CONFIG_64BIT),64,32)" \ |
Joel Stanley | 5a4630a | 2018-09-17 17:07:54 +0930 | [diff] [blame] | 204 | "$(OBJDUMP)" "$(OBJCOPY)" "$(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS)" \ |
Masahiro Yamada | d503ac5 | 2018-08-24 08:20:39 +0900 | [diff] [blame] | 205 | "$(LD) $(KBUILD_LDFLAGS)" "$(NM)" "$(RM)" "$(MV)" \ |
Shaohua Li | 18c167f | 2009-01-12 10:00:51 +0800 | [diff] [blame] | 206 | "$(if $(part-of-module),1,0)" "$(@)"; |
Michal Marek | d697182 | 2011-05-17 15:36:46 +0200 | [diff] [blame] | 207 | recordmcount_source := $(srctree)/scripts/recordmcount.pl |
Cao jin | 312a3d0 | 2017-08-02 10:31:06 +0800 | [diff] [blame] | 208 | endif # BUILD_C_RECORDMCOUNT |
Joe Lawrence | 1a49b2f | 2019-03-26 10:50:28 -0400 | [diff] [blame] | 209 | cmd_record_mcount = $(if $(findstring $(strip $(CC_FLAGS_FTRACE)),$(_c_flags)), \ |
| 210 | $(sub_cmd_record_mcount)) |
Sami Tolvanen | 3b15cdc1 | 2020-12-11 10:46:18 -0800 | [diff] [blame] | 211 | endif # CONFIG_FTRACE_MCOUNT_USE_RECORDMCOUNT |
Steven Rostedt | 8da3821 | 2008-08-14 15:45:07 -0400 | [diff] [blame] | 212 | |
Josh Poimboeuf | b9ab5eb | 2016-02-28 22:22:42 -0600 | [diff] [blame] | 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 |
Masahiro Yamada | 918a6b7 | 2021-08-31 16:39:55 +0900 | [diff] [blame] | 216 | |
Masahiro Yamada | c25e1c5 | 2022-05-27 19:01:49 +0900 | [diff] [blame] | 217 | is-standard-object = $(if $(filter-out y%, $(OBJECT_FILES_NON_STANDARD_$(basetarget).o)$(OBJECT_FILES_NON_STANDARD)n),y) |
Masahiro Yamada | 918a6b7 | 2021-08-31 16:39:55 +0900 | [diff] [blame] | 218 | |
Masahiro Yamada | c25e1c5 | 2022-05-27 19:01:49 +0900 | [diff] [blame] | 219 | $(obj)/%.o: objtool-enabled = $(if $(is-standard-object),$(if $(delay-objtool),$(is-single-obj-m),y)) |
Josh Poimboeuf | b9ab5eb | 2016-02-28 22:22:42 -0600 | [diff] [blame] | 220 | |
Masahiro Yamada | bbda5ec | 2018-11-30 10:05:26 +0900 | [diff] [blame] | 221 | ifdef CONFIG_TRIM_UNUSED_KSYMS |
| 222 | cmd_gen_ksymdeps = \ |
Masahiro Yamada | e5d2891 | 2018-11-30 10:05:28 +0900 | [diff] [blame] | 223 | $(CONFIG_SHELL) $(srctree)/scripts/gen_ksymdeps.sh $@ >> $(dot-target).cmd |
Masahiro Yamada | bbda5ec | 2018-11-30 10:05:26 +0900 | [diff] [blame] | 224 | endif |
| 225 | |
Masahiro Yamada | 31cb50b | 2022-05-27 19:01:51 +0900 | [diff] [blame] | 226 | cmd_check_local_export = $(srctree)/scripts/check-local-export $@ |
| 227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | define rule_cc_o_c |
Masahiro Yamada | 3a2429e | 2018-11-30 10:05:27 +0900 | [diff] [blame] | 229 | $(call cmd_and_fixdep,cc_o_c) |
| 230 | $(call cmd,gen_ksymdeps) |
Masahiro Yamada | 31cb50b | 2022-05-27 19:01:51 +0900 | [diff] [blame] | 231 | $(call cmd,check_local_export) |
Luc Van Oostenryck | 0c33f12 | 2020-06-22 17:45:12 +0200 | [diff] [blame] | 232 | $(call cmd,checksrc) |
Masahiro Yamada | 3a2429e | 2018-11-30 10:05:27 +0900 | [diff] [blame] | 233 | $(call cmd,checkdoc) |
Masahiro Yamada | ef62588c | 2021-08-31 16:39:56 +0900 | [diff] [blame] | 234 | $(call cmd,gen_objtooldep) |
Masahiro Yamada | 8017ce5 | 2022-04-05 20:33:57 +0900 | [diff] [blame] | 235 | $(call cmd,gen_symversions_c) |
Masahiro Yamada | 3a2429e | 2018-11-30 10:05:27 +0900 | [diff] [blame] | 236 | $(call cmd,record_mcount) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | endef |
| 238 | |
Josh Poimboeuf | b9ab5eb | 2016-02-28 22:22:42 -0600 | [diff] [blame] | 239 | define rule_as_o_S |
Masahiro Yamada | 3a2429e | 2018-11-30 10:05:27 +0900 | [diff] [blame] | 240 | $(call cmd_and_fixdep,as_o_S) |
| 241 | $(call cmd,gen_ksymdeps) |
Masahiro Yamada | 31cb50b | 2022-05-27 19:01:51 +0900 | [diff] [blame] | 242 | $(call cmd,check_local_export) |
Masahiro Yamada | ef62588c | 2021-08-31 16:39:56 +0900 | [diff] [blame] | 243 | $(call cmd,gen_objtooldep) |
Masahiro Yamada | 7cfa2fc | 2022-04-05 20:33:58 +0900 | [diff] [blame] | 244 | $(call cmd,gen_symversions_S) |
Josh Poimboeuf | b9ab5eb | 2016-02-28 22:22:42 -0600 | [diff] [blame] | 245 | endef |
| 246 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | # Built-in and composite module parts |
Masahiro Yamada | ef62588c | 2021-08-31 16:39:56 +0900 | [diff] [blame] | 248 | $(obj)/%.o: $(src)/%.c $(recordmcount_source) FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | $(call if_changed_rule,cc_o_c) |
Luc Van Oostenryck | 0c33f12 | 2020-06-22 17:45:12 +0200 | [diff] [blame] | 250 | $(call cmd,force_checksrc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
Masahiro Yamada | c6031b1 | 2022-05-27 19:01:53 +0900 | [diff] [blame] | 252 | # To make this rule robust against "Argument list too long" error, |
| 253 | # ensure to add $(obj)/ prefix by a shell command. |
Kevin Locke | 7bf179d | 2022-06-06 20:42:54 -0600 | [diff] [blame] | 254 | cmd_mod = printf '%s\n' $(call real-search, $*.o, .o, -objs -y -m) | \ |
| 255 | $(AWK) '!x[$$0]++ { print("$(obj)/"$$0) }' > $@ |
Masahiro Yamada | 9f69a49 | 2019-07-17 15:18:00 +0900 | [diff] [blame] | 256 | |
Masahiro Yamada | fc93a4c | 2022-04-07 00:30:22 +0900 | [diff] [blame] | 257 | $(obj)/%.mod: FORCE |
Masahiro Yamada | 9f69a49 | 2019-07-17 15:18:00 +0900 | [diff] [blame] | 258 | $(call if_changed,mod) |
| 259 | |
Masahiro Yamada | 9413e76 | 2022-04-07 00:30:20 +0900 | [diff] [blame] | 260 | # List module undefined symbols |
| 261 | cmd_undefined_syms = $(NM) $< | sed -n 's/^ *U //p' > $@ |
| 262 | |
Masahiro Yamada | c25e1c5 | 2022-05-27 19:01:49 +0900 | [diff] [blame] | 263 | $(obj)/%.usyms: $(obj)/%.o FORCE |
Masahiro Yamada | 9413e76 | 2022-04-07 00:30:20 +0900 | [diff] [blame] | 264 | $(call if_changed,undefined_syms) |
| 265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | quiet_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 | |
Sam Ravnborg | 767e581 | 2007-05-06 09:23:45 +0200 | [diff] [blame] | 271 | $(obj)/%.lst: $(src)/%.c FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | $(call if_changed_dep,cc_lst_c) |
| 273 | |
| 274 | # Compile assembler sources (.S) |
| 275 | # --------------------------------------------------------------------------- |
| 276 | |
Nicholas Piggin | 4efca4e | 2016-11-01 12:46:19 +1100 | [diff] [blame] | 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. |
| 288 | cmd_gensymtypes_S = \ |
Masahiro Yamada | b79c6aa | 2019-01-17 19:02:44 +0900 | [diff] [blame] | 289 | { echo "\#include <linux/kernel.h>" ; \ |
Nicholas Piggin | 4efca4e | 2016-11-01 12:46:19 +1100 | [diff] [blame] | 290 | echo "\#include <asm/asm-prototypes.h>" ; \ |
| 291 | $(CPP) $(a_flags) $< | \ |
Nicholas Piggin | cc6acc1 | 2016-11-09 15:34:05 +1100 | [diff] [blame] | 292 | grep "\<___EXPORT_SYMBOL\>" | \ |
Masahiro Yamada | b79c6aa | 2019-01-17 19:02:44 +0900 | [diff] [blame] | 293 | sed 's/.*___EXPORT_SYMBOL[[:space:]]*\([a-zA-Z0-9_]*\)[[:space:]]*,.*/EXPORT_SYMBOL(\1);/' ; } | \ |
Masahiro Yamada | f43e31d5 | 2022-04-05 20:33:49 +0900 | [diff] [blame] | 294 | $(CPP) -D__GENKSYMS__ $(c_flags) -xc - | $(genksyms) |
Nicholas Piggin | 4efca4e | 2016-11-01 12:46:19 +1100 | [diff] [blame] | 295 | |
| 296 | quiet_cmd_cc_symtypes_S = SYM $(quiet_modtag) $@ |
Masahiro Yamada | dc6dc3e | 2022-04-05 20:33:50 +0900 | [diff] [blame] | 297 | cmd_cc_symtypes_S = $(call cmd_gensymtypes_S,true,$@) >/dev/null |
Nicholas Piggin | 4efca4e | 2016-11-01 12:46:19 +1100 | [diff] [blame] | 298 | |
| 299 | $(obj)/%.symtypes : $(src)/%.S FORCE |
| 300 | $(call cmd,cc_symtypes_S) |
| 301 | |
| 302 | |
Masahiro Yamada | e0f41e5 | 2016-04-08 11:24:48 +0900 | [diff] [blame] | 303 | quiet_cmd_cpp_s_S = CPP $(quiet_modtag) $@ |
| 304 | cmd_cpp_s_S = $(CPP) $(a_flags) -o $@ $< |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | |
Sam Ravnborg | 767e581 | 2007-05-06 09:23:45 +0200 | [diff] [blame] | 306 | $(obj)/%.s: $(src)/%.S FORCE |
Masahiro Yamada | e0f41e5 | 2016-04-08 11:24:48 +0900 | [diff] [blame] | 307 | $(call if_changed_dep,cpp_s_S) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
| 309 | quiet_cmd_as_o_S = AS $(quiet_modtag) $@ |
Masahiro Yamada | 92594d5 | 2021-08-31 16:39:54 +0900 | [diff] [blame] | 310 | cmd_as_o_S = $(CC) $(a_flags) -c -o $@ $< $(cmd_objtool) |
Nicholas Piggin | 4efca4e | 2016-11-01 12:46:19 +1100 | [diff] [blame] | 311 | |
Masahiro Yamada | 2ff2b7e | 2019-08-19 14:54:20 +0900 | [diff] [blame] | 312 | ifdef CONFIG_ASM_MODVERSIONS |
Nicholas Piggin | 4efca4e | 2016-11-01 12:46:19 +1100 | [diff] [blame] | 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 | |
Masahiro Yamada | 7cfa2fc | 2022-04-05 20:33:58 +0900 | [diff] [blame] | 317 | cmd_gen_symversions_S = $(call gen_symversions,S) |
| 318 | |
Nicholas Piggin | 4efca4e | 2016-11-01 12:46:19 +1100 | [diff] [blame] | 319 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
Masahiro Yamada | ef62588c | 2021-08-31 16:39:56 +0900 | [diff] [blame] | 321 | $(obj)/%.o: $(src)/%.S FORCE |
Josh Poimboeuf | b9ab5eb | 2016-02-28 22:22:42 -0600 | [diff] [blame] | 322 | $(call if_changed_rule,as_o_S) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
Masahiro Yamada | b2c8855 | 2020-06-01 14:57:00 +0900 | [diff] [blame] | 324 | targets += $(filter-out $(subdir-builtin), $(real-obj-y)) |
| 325 | targets += $(filter-out $(subdir-modorder), $(real-obj-m)) |
Masahiro Yamada | bcf0c66 | 2021-05-03 03:09:56 +0900 | [diff] [blame] | 326 | targets += $(real-dtb-y) $(lib-y) $(always-y) $(MAKECMDGOALS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
| 328 | # Linker scripts preprocessor (.lds.S -> .lds) |
| 329 | # --------------------------------------------------------------------------- |
| 330 | quiet_cmd_cpp_lds_S = LDS $@ |
Linus Torvalds | 5cb0512 | 2017-11-02 14:10:37 -0700 | [diff] [blame] | 331 | cmd_cpp_lds_S = $(CPP) $(cpp_flags) -P -U$(ARCH) \ |
Tim Abbott | 42f29a2 | 2009-09-20 18:14:12 -0400 | [diff] [blame] | 332 | -D__ASSEMBLY__ -DLINKER_SCRIPT -o $@ $< |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
Sam Ravnborg | 767e581 | 2007-05-06 09:23:45 +0200 | [diff] [blame] | 334 | $(obj)/%.lds: $(src)/%.lds.S FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | $(call if_changed_dep,cpp_lds_S) |
| 336 | |
David Howells | 4520c6a | 2012-09-21 23:31:13 +0100 | [diff] [blame] | 337 | # ASN.1 grammar |
| 338 | # --------------------------------------------------------------------------- |
Masahiro Yamada | 49d5089 | 2019-07-21 01:27:38 +0900 | [diff] [blame] | 339 | quiet_cmd_asn1_compiler = ASN.1 $(basename $@).[ch] |
David Howells | 4520c6a | 2012-09-21 23:31:13 +0100 | [diff] [blame] | 340 | cmd_asn1_compiler = $(objtree)/scripts/asn1_compiler $< \ |
Masahiro Yamada | 49d5089 | 2019-07-21 01:27:38 +0900 | [diff] [blame] | 341 | $(basename $@).c $(basename $@).h |
David Howells | 4520c6a | 2012-09-21 23:31:13 +0100 | [diff] [blame] | 342 | |
Masahiro Yamada | 4fa8bc9 | 2018-03-23 22:04:37 +0900 | [diff] [blame] | 343 | $(obj)/%.asn1.c $(obj)/%.asn1.h: $(src)/%.asn1 $(objtree)/scripts/asn1_compiler |
David Howells | 4520c6a | 2012-09-21 23:31:13 +0100 | [diff] [blame] | 344 | $(call cmd,asn1_compiler) |
| 345 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | # Build the compiled-in targets |
| 347 | # --------------------------------------------------------------------------- |
| 348 | |
| 349 | # To build objects in subdirs, we need to descend into the directories |
Masahiro Yamada | aaa385b | 2020-05-22 11:00:01 +0900 | [diff] [blame] | 350 | $(subdir-builtin): $(obj)/%/built-in.a: $(obj)/% ; |
Masahiro Yamada | 454753d | 2020-05-22 11:00:02 +0900 | [diff] [blame] | 351 | $(subdir-modorder): $(obj)/%/modules.order: $(obj)/% ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | |
| 353 | # |
Masahiro Yamada | dee9495 | 2019-01-17 09:10:03 +0900 | [diff] [blame] | 354 | # Rule to compile a set of .o files into one .a file (without symbol table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | # |
Masahiro Yamada | cd968b9 | 2022-05-27 19:01:52 +0900 | [diff] [blame] | 356 | # To make this rule robust against "Argument list too long" error, |
| 357 | # remove $(obj)/ prefix, and restore it by a shell command. |
Stephen Rothwell | a5967db | 2016-08-24 22:29:19 +1000 | [diff] [blame] | 358 | |
Masahiro Yamada | 5e18f02 | 2018-03-19 20:26:12 +0900 | [diff] [blame] | 359 | quiet_cmd_ar_builtin = AR $@ |
Masahiro Yamada | cd968b9 | 2022-05-27 19:01:52 +0900 | [diff] [blame] | 360 | cmd_ar_builtin = rm -f $@; \ |
Masahiro Yamada | 5439d4d | 2022-06-14 14:51:49 +0900 | [diff] [blame] | 361 | $(if $(real-prereqs), printf "$(obj)/%s " $(patsubst $(obj)/%,%,$(real-prereqs)) | xargs) \ |
| 362 | $(AR) cDPrST $@ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
Masahiro Yamada | e578edc | 2020-05-22 10:59:58 +0900 | [diff] [blame] | 364 | $(obj)/built-in.a: $(real-obj-y) FORCE |
Masahiro Yamada | 7375cbc | 2022-05-13 20:39:23 +0900 | [diff] [blame] | 365 | $(call if_changed,ar_builtin) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | # |
Tejun Heo | 551559e | 2007-12-07 21:04:30 +0900 | [diff] [blame] | 368 | # Rule to create modules.order file |
| 369 | # |
| 370 | # Create commands to either record .ko file or cat modules.order from |
| 371 | # a subdirectory |
Masahiro Yamada | b2c8855 | 2020-06-01 14:57:00 +0900 | [diff] [blame] | 372 | # Add $(obj-m) as the prerequisite to avoid updating the timestamp of |
| 373 | # modules.order unless contained modules are updated. |
| 374 | |
| 375 | cmd_modules_order = { $(foreach m, $(real-prereqs), \ |
| 376 | $(if $(filter %/modules.order, $m), cat $m, echo $(patsubst %.o,%.ko,$m));) :; } \ |
Masahiro Yamada | e0e1b1e | 2019-07-17 15:17:51 +0900 | [diff] [blame] | 377 | | $(AWK) '!x[$$0]++' - > $@ |
Tejun Heo | 551559e | 2007-12-07 21:04:30 +0900 | [diff] [blame] | 378 | |
Masahiro Yamada | b2c8855 | 2020-06-01 14:57:00 +0900 | [diff] [blame] | 379 | $(obj)/modules.order: $(obj-m) FORCE |
| 380 | $(call if_changed,modules_order) |
| 381 | |
Tejun Heo | 551559e | 2007-12-07 21:04:30 +0900 | [diff] [blame] | 382 | # |
Masahiro Yamada | dee9495 | 2019-01-17 09:10:03 +0900 | [diff] [blame] | 383 | # Rule to compile a set of .o files into one .a file (with symbol table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | # |
Sami Tolvanen | 38e8918 | 2020-12-11 10:46:20 -0800 | [diff] [blame] | 385 | |
Masahiro Yamada | e578edc | 2020-05-22 10:59:58 +0900 | [diff] [blame] | 386 | $(obj)/lib.a: $(lib-y) FORCE |
Masahiro Yamada | 7375cbc | 2022-05-13 20:39:23 +0900 | [diff] [blame] | 387 | $(call if_changed,ar) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
Masahiro Yamada | f6b66ca | 2022-05-27 19:01:55 +0900 | [diff] [blame] | 389 | quiet_cmd_ld_multi_m = LD [M] $@ |
| 390 | cmd_ld_multi_m = $(LD) $(ld_flags) -r -o $@ @$(patsubst %.o,%.mod,$@) $(cmd_objtool) |
| 391 | |
| 392 | define rule_ld_multi_m |
| 393 | $(call cmd_and_savecmd,ld_multi_m) |
| 394 | $(call cmd,gen_objtooldep) |
| 395 | endef |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | |
Masahiro Yamada | c25e1c5 | 2022-05-27 19:01:49 +0900 | [diff] [blame] | 397 | $(multi-obj-m): objtool-enabled := $(delay-objtool) |
| 398 | $(multi-obj-m): part-of-module := y |
Masahiro Yamada | feb7d79 | 2022-04-07 00:30:23 +0900 | [diff] [blame] | 399 | $(multi-obj-m): %.o: %.mod FORCE |
Masahiro Yamada | f6b66ca | 2022-05-27 19:01:55 +0900 | [diff] [blame] | 400 | $(call if_changed_rule,ld_multi_m) |
Masahiro Yamada | a6601e0 | 2021-03-06 15:11:20 +0900 | [diff] [blame] | 401 | $(call multi_depend, $(multi-obj-m), .o, -objs -y -m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | |
Masahiro Yamada | 591f668 | 2017-11-13 19:29:36 +0900 | [diff] [blame] | 403 | targets := $(filter-out $(PHONY), $(targets)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | |
Masahiro Yamada | b23d1a2 | 2018-03-23 22:04:33 +0900 | [diff] [blame] | 405 | # Add intermediate targets: |
| 406 | # When building objects with specific suffix patterns, add intermediate |
| 407 | # targets that the final targets are derived from. |
| 408 | intermediate_targets = $(foreach sfx, $(2), \ |
| 409 | $(patsubst %$(strip $(1)),%$(sfx), \ |
| 410 | $(filter %$(strip $(1)), $(targets)))) |
Masahiro Yamada | 54a702f | 2018-03-23 22:04:39 +0900 | [diff] [blame] | 411 | # %.asn1.o <- %.asn1.[ch] <- %.asn1 |
Masahiro Yamada | a7f9241 | 2018-03-23 22:04:34 +0900 | [diff] [blame] | 412 | # %.dtb.o <- %.dtb.S <- %.dtb <- %.dts |
Masahiro Yamada | b23d1a2 | 2018-03-23 22:04:33 +0900 | [diff] [blame] | 413 | # %.lex.o <- %.lex.c <- %.l |
| 414 | # %.tab.o <- %.tab.[ch] <- %.y |
Masahiro Yamada | 54a702f | 2018-03-23 22:04:39 +0900 | [diff] [blame] | 415 | targets += $(call intermediate_targets, .asn1.o, .asn1.c .asn1.h) \ |
| 416 | $(call intermediate_targets, .dtb.o, .dtb.S .dtb) \ |
Masahiro Yamada | a7f9241 | 2018-03-23 22:04:34 +0900 | [diff] [blame] | 417 | $(call intermediate_targets, .lex.o, .lex.c) \ |
Masahiro Yamada | b23d1a2 | 2018-03-23 22:04:33 +0900 | [diff] [blame] | 418 | $(call intermediate_targets, .tab.o, .tab.c .tab.h) |
| 419 | |
Masahiro Yamada | 394053f | 2019-08-15 00:19:18 +0900 | [diff] [blame] | 420 | # Build |
| 421 | # --------------------------------------------------------------------------- |
| 422 | |
| 423 | ifdef single-build |
| 424 | |
Masahiro Yamada | 2031262 | 2019-10-16 14:15:46 +0900 | [diff] [blame] | 425 | KBUILD_SINGLE_TARGETS := $(filter $(obj)/%, $(KBUILD_SINGLE_TARGETS)) |
| 426 | |
Masahiro Yamada | 394053f | 2019-08-15 00:19:18 +0900 | [diff] [blame] | 427 | curdir-single := $(sort $(foreach x, $(KBUILD_SINGLE_TARGETS), \ |
| 428 | $(if $(filter $(x) $(basename $(x)).o, $(targets)), $(x)))) |
| 429 | |
| 430 | # Handle single targets without any rule: show "Nothing to be done for ..." or |
| 431 | # "No rule to make target ..." depending on whether the target exists. |
| 432 | unknown-single := $(filter-out $(addsuffix /%, $(subdir-ym)), \ |
Masahiro Yamada | 2031262 | 2019-10-16 14:15:46 +0900 | [diff] [blame] | 433 | $(filter-out $(curdir-single), $(KBUILD_SINGLE_TARGETS))) |
Masahiro Yamada | 394053f | 2019-08-15 00:19:18 +0900 | [diff] [blame] | 434 | |
Masahiro Yamada | 2dffd23 | 2019-10-16 14:15:47 +0900 | [diff] [blame] | 435 | single-subdirs := $(foreach d, $(subdir-ym), \ |
| 436 | $(if $(filter $(d)/%, $(KBUILD_SINGLE_TARGETS)), $(d))) |
| 437 | |
| 438 | __build: $(curdir-single) $(single-subdirs) |
Masahiro Yamada | 394053f | 2019-08-15 00:19:18 +0900 | [diff] [blame] | 439 | ifneq ($(unknown-single),) |
| 440 | $(Q)$(MAKE) -f /dev/null $(unknown-single) |
| 441 | endif |
| 442 | @: |
| 443 | |
| 444 | ifeq ($(curdir-single),) |
| 445 | # Nothing to do in this directory. Do not include any .*.cmd file for speed-up |
| 446 | targets := |
| 447 | else |
| 448 | targets += $(curdir-single) |
| 449 | endif |
| 450 | |
| 451 | else |
| 452 | |
Masahiro Yamada | f3908ab | 2020-06-01 14:56:56 +0900 | [diff] [blame] | 453 | __build: $(if $(KBUILD_BUILTIN), $(targets-for-builtin)) \ |
| 454 | $(if $(KBUILD_MODULES), $(targets-for-modules)) \ |
Masahiro Yamada | 5f2fb52 | 2020-02-02 01:49:24 +0900 | [diff] [blame] | 455 | $(subdir-ym) $(always-y) |
Masahiro Yamada | 394053f | 2019-08-15 00:19:18 +0900 | [diff] [blame] | 456 | @: |
| 457 | |
| 458 | endif |
| 459 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | # Descending |
| 461 | # --------------------------------------------------------------------------- |
| 462 | |
Paul Smith | 4f19336 | 2006-03-05 17:14:10 -0500 | [diff] [blame] | 463 | PHONY += $(subdir-ym) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | $(subdir-ym): |
Masahiro Yamada | d9f78ed | 2019-08-06 19:03:21 +0900 | [diff] [blame] | 465 | $(Q)$(MAKE) $(build)=$@ \ |
Masahiro Yamada | 394053f | 2019-08-15 00:19:18 +0900 | [diff] [blame] | 466 | $(if $(filter $@/, $(KBUILD_SINGLE_TARGETS)),single-build=) \ |
Masahiro Yamada | aaa385b | 2020-05-22 11:00:01 +0900 | [diff] [blame] | 467 | need-builtin=$(if $(filter $@/built-in.a, $(subdir-builtin)),1) \ |
Masahiro Yamada | 454753d | 2020-05-22 11:00:02 +0900 | [diff] [blame] | 468 | need-modorder=$(if $(filter $@/modules.order, $(subdir-modorder)),1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | |
| 470 | # Add FORCE to the prequisites of a target to force it to be always rebuilt. |
| 471 | # --------------------------------------------------------------------------- |
| 472 | |
Paul Smith | 4f19336 | 2006-03-05 17:14:10 -0500 | [diff] [blame] | 473 | PHONY += FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | |
| 475 | FORCE: |
| 476 | |
| 477 | # Read all saved command lines and dependencies for the $(targets) we |
| 478 | # may be building above, using $(if_changed{,_dep}). As an |
| 479 | # optimization, we don't need to read them if the target does not |
| 480 | # exist, we will rebuild anyway in that case. |
| 481 | |
Masahiro Yamada | 392885e | 2018-11-30 10:05:22 +0900 | [diff] [blame] | 482 | existing-targets := $(wildcard $(sort $(targets))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | |
Masahiro Yamada | 392885e | 2018-11-30 10:05:22 +0900 | [diff] [blame] | 484 | -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd) |
Paul Smith | 4f19336 | 2006-03-05 17:14:10 -0500 | [diff] [blame] | 485 | |
Masahiro Yamada | 8a78756 | 2017-11-13 19:29:37 +0900 | [diff] [blame] | 486 | # Create directories for object files if they do not exist |
Masahiro Yamada | cc8a51c | 2020-07-01 12:29:51 +0900 | [diff] [blame] | 487 | obj-dirs := $(sort $(patsubst %/,%, $(dir $(targets)))) |
Masahiro Yamada | 392885e | 2018-11-30 10:05:22 +0900 | [diff] [blame] | 488 | # If targets exist, their directories apparently exist. Skip mkdir. |
| 489 | existing-dirs := $(sort $(patsubst %/,%, $(dir $(existing-targets)))) |
| 490 | obj-dirs := $(strip $(filter-out $(existing-dirs), $(obj-dirs))) |
Masahiro Yamada | c4da7ed | 2017-11-13 19:29:38 +0900 | [diff] [blame] | 491 | ifneq ($(obj-dirs),) |
Masahiro Yamada | 8a78756 | 2017-11-13 19:29:37 +0900 | [diff] [blame] | 492 | $(shell mkdir -p $(obj-dirs)) |
| 493 | endif |
| 494 | |
Paul Smith | 4f19336 | 2006-03-05 17:14:10 -0500 | [diff] [blame] | 495 | .PHONY: $(PHONY) |