Blame view

scripts/Kbuild.include 12.1 KB
96ac6d435   Greg Kroah-Hartman   treewide: Add SPD...
1
  # SPDX-License-Identifier: GPL-2.0
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
2
3
  ####
  # kbuild: Generic definitions
beda9f3a1   Roman Zippel   [PATCH] kbuild: m...
4
  # Convenient variables
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
5
  comma   := ,
13338935f   Masahiro Yamada   kbuild: move "quo...
6
  quote   := "
d51bfb785   Sam Ravnborg   kbuild: introduce...
7
  squote  := '
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
8
9
  empty   :=
  space   := $(empty) $(empty)
9c8fa9bc0   Masahiro Yamada   kbuild: fix if_ch...
10
  space_escape := _-_SPACE_-_
9564a8cf4   Rasmus Villemoes   Kbuild: fix # esc...
11
  pound := \#
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
12
13
  
  ###
48f1f0589   Sam Ravnborg   kbuild: consisten...
14
15
16
17
  # Name of target with a '.' as filename prefix. foo/bar.o => foo/.bar.o
  dot-target = $(dir $@).$(notdir $@)
  
  ###
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
18
19
  # The temporary file to save gcc -MD generated dependencies must not
  # contain a comma
48f1f0589   Sam Ravnborg   kbuild: consisten...
20
  depfile = $(subst $(comma),_,$(dot-target).d)
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
21
22
  
  ###
5e8d780d7   Sam Ravnborg   kbuild: fix ia64 ...
23
24
25
26
  # filename of target with directory and extension stripped
  basetarget = $(basename $(notdir $@))
  
  ###
afa974b77   Masahiro Yamada   kbuild: add real-...
27
28
29
30
  # real prerequisites without phony targets
  real-prereqs = $(filter-out $(PHONY), $^)
  
  ###
d51bfb785   Sam Ravnborg   kbuild: introduce...
31
32
33
34
  # Escape single quote for use in echo statements
  escsq = $(subst $(squote),'\$(squote)',$1)
  
  ###
5410ecc0d   Mike Frysinger   kbuild: introduce...
35
36
37
38
39
40
41
  # Easy method for doing a status message
         kecho := :
   quiet_kecho := echo
  silent_kecho := :
  kecho := $($(quiet)kecho)
  
  ###
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
42
43
  # filechk is used to check if the content of a generated file is updated.
  # Sample usage:
ba97df455   Masahiro Yamada   kbuild: use assig...
44
45
46
  #
  # filechk_sample = echo $(KERNELRELEASE)
  # version.h: FORCE
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
47
  #	$(call filechk,sample)
ba97df455   Masahiro Yamada   kbuild: use assig...
48
  #
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
49
50
51
52
53
54
55
56
  # The rule defined shall write to stdout the content of the new file.
  # The existing file will be compared with the new one.
  # - If no file exist it is created
  # - If the content differ the new file is used
  # - If they are equal no change, and no timestamp update
  # - stdin is piped in from the first prerequisite ($<) so one has
  #   to specify a valid file as first prerequisite (often the kbuild file)
  define filechk
23d3f191a   Masahiro Yamada   kbuild: remove *....
57
58
59
60
61
62
63
  	$(Q)set -e;						\
  	mkdir -p $(dir $@);					\
  	trap "rm -f $(dot-target).tmp" EXIT;			\
  	{ $(filechk_$(1)); } > $(dot-target).tmp;		\
  	if [ ! -r $@ ] || ! cmp -s $@ $(dot-target).tmp; then	\
  		$(kecho) '  UPD     $@';			\
  		mv -f $(dot-target).tmp $@;			\
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
64
65
  	fi
  endef
20a468b51   Sam Ravnborg   kbuild: make cc-v...
66
  ######
9d6e7a709   Sam Ravnborg   kbuild: fix comme...
67
  # gcc support functions
cd238effe   Mauro Carvalho Chehab   docs: kbuild: con...
68
  # See documentation in Documentation/kbuild/makefiles.rst
20a468b51   Sam Ravnborg   kbuild: make cc-v...
69

910b40468   Sam Ravnborg   kbuild: introduce...
70
71
  # cc-cross-prefix
  # Usage: CROSS_COMPILE := $(call cc-cross-prefix, m68k-linux-gnu- m68k-linux-)
bd55f96fa   Masahiro Yamada   kbuild: refactor ...
72
73
  # Return first <prefix> where a <prefix>gcc is found in PATH.
  # If no gcc found in PATH with listed prefixes return nothing
913ab9780   Masahiro Yamada   kbuild: use more ...
74
75
76
77
78
  #
  # Note: '2>/dev/null' is here to force Make to invoke a shell. Otherwise, it
  # would try to directly execute the shell builtin 'command'. This workaround
  # should be kept for a long time since this issue was fixed only after the
  # GNU Make 4.2.1 release.
d4a74bbfe   Masahiro Yamada   kbuild: use -- se...
79
80
  cc-cross-prefix = $(firstword $(foreach c, $(1), \
  			$(if $(shell command -v -- $(c)gcc 2>/dev/null), $(c))))
910b40468   Sam Ravnborg   kbuild: introduce...
81

beda9f3a1   Roman Zippel   [PATCH] kbuild: m...
82
83
84
85
86
  # output directory for tests below
  TMPOUT := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/)
  
  # try-run
  # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
312a3d091   Cao jin   kbuild: trivial c...
87
88
  # Exit code chooses option. "$$TMP" serves as a temporary file and is
  # automatically cleaned up.
e08d6de4e   Masahiro Yamada   kbuild: remove kb...
89
  try-run = $(shell set -e;		\
beda9f3a1   Roman Zippel   [PATCH] kbuild: m...
90
  	TMP="$(TMPOUT).$$$$.tmp";	\
691ef3e7f   Sam Ravnborg   kbuild: introduce...
91
  	TMPO="$(TMPOUT).$$$$.o";	\
beda9f3a1   Roman Zippel   [PATCH] kbuild: m...
92
93
94
95
  	if ($(1)) >/dev/null 2>&1;	\
  	then echo "$(2)";		\
  	else echo "$(3)";		\
  	fi;				\
e08d6de4e   Masahiro Yamada   kbuild: remove kb...
96
  	rm -f "$$TMP" "$$TMPO")
347a00fb4   Roman Zippel   [PATCH] kbuild: d...
97

20a468b51   Sam Ravnborg   kbuild: make cc-v...
98
  # as-option
bff288c19   Oleg Verych   [PATCH] kbuild, K...
99
  # Usage: cflags-y += $(call as-option,-Wa$(comma)-isa=foo,)
beda9f3a1   Roman Zippel   [PATCH] kbuild: m...
100

e08d6de4e   Masahiro Yamada   kbuild: remove kb...
101
  as-option = $(call try-run,\
b1e0d8b70   Jean Delvare   kbuild: Fix gcc -...
102
  	$(CC) $(KBUILD_CFLAGS) $(1) -c -x assembler /dev/null -o "$$TMP",$(1),$(2))
20a468b51   Sam Ravnborg   kbuild: make cc-v...
103

e2414910f   Andi Kleen   [PATCH] x86: Dete...
104
  # as-instr
bff288c19   Oleg Verych   [PATCH] kbuild, K...
105
  # Usage: cflags-y += $(call as-instr,instr,option1,option2)
beda9f3a1   Roman Zippel   [PATCH] kbuild: m...
106

e08d6de4e   Masahiro Yamada   kbuild: remove kb...
107
  as-instr = $(call try-run,\
b1e0d8b70   Jean Delvare   kbuild: Fix gcc -...
108
109
  	printf "%b
  " "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -x assembler -o "$$TMP" -,$(2),$(3))
e2414910f   Andi Kleen   [PATCH] x86: Dete...
110

9f3f1fd29   Matthias Kaehlcke   kbuild: Add __cc-...
111
112
  # __cc-option
  # Usage: MY_CFLAGS += $(call __cc-option,$(CC),$(MY_CFLAGS),-march=winchip-c6,-march=i586)
e08d6de4e   Masahiro Yamada   kbuild: remove kb...
113
  __cc-option = $(call try-run,\
9f3f1fd29   Matthias Kaehlcke   kbuild: Add __cc-...
114
  	$(1) -Werror $(2) $(3) -c -x c /dev/null -o "$$TMP",$(3),$(4))
d26e94149   Emese Revfy   kbuild: no gcc-pl...
115
116
  # Do not attempt to build with gcc plugins during cc-option tests.
  # (And this uses delayed resolution so the flags will be up to date.)
6ac389346   Ingo Molnar   Revert "kbuild/Ma...
117
  CC_OPTION_CFLAGS = $(filter-out $(GCC_PLUGINS_CFLAGS),$(KBUILD_CFLAGS))
d26e94149   Emese Revfy   kbuild: no gcc-pl...
118

20a468b51   Sam Ravnborg   kbuild: make cc-v...
119
  # cc-option
bff288c19   Oleg Verych   [PATCH] kbuild, K...
120
  # Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586)
beda9f3a1   Roman Zippel   [PATCH] kbuild: m...
121

9f3f1fd29   Matthias Kaehlcke   kbuild: Add __cc-...
122
123
  cc-option = $(call __cc-option, $(CC),\
  	$(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS),$(1),$(2))
20a468b51   Sam Ravnborg   kbuild: make cc-v...
124
  # cc-option-yn
bff288c19   Oleg Verych   [PATCH] kbuild, K...
125
  # Usage: flag := $(call cc-option-yn,-march=winchip-c6)
e08d6de4e   Masahiro Yamada   kbuild: remove kb...
126
  cc-option-yn = $(call try-run,\
c3f0d0bc5   Mark Charlebois   kbuild, LLVMLinux...
127
  	$(CC) -Werror $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",y,n)
20a468b51   Sam Ravnborg   kbuild: make cc-v...
128

8417da6f2   Michal Marek   kbuild: Fix passi...
129
130
  # cc-disable-warning
  # Usage: cflags-y += $(call cc-disable-warning,unused-but-set-variable)
e08d6de4e   Masahiro Yamada   kbuild: remove kb...
131
  cc-disable-warning = $(call try-run,\
c3f0d0bc5   Mark Charlebois   kbuild, LLVMLinux...
132
  	$(CC) -Werror $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) -W$(strip $(1)) -c -x c /dev/null -o "$$TMP",-Wno-$(strip $(1)))
8417da6f2   Michal Marek   kbuild: Fix passi...
133

20a468b51   Sam Ravnborg   kbuild: make cc-v...
134
135
  # cc-ifversion
  # Usage:  EXTRA_CFLAGS += $(call cc-ifversion, -lt, 0402, -O1)
d3a918c65   Masahiro Yamada   kbuild: remove cc...
136
  cc-ifversion = $(shell [ $(CONFIG_GCC_VERSION)0 $(1) $(2)000 ] && echo $(3) || echo $(4))
20a468b51   Sam Ravnborg   kbuild: make cc-v...
137

691ef3e7f   Sam Ravnborg   kbuild: introduce...
138
  # ld-option
d503ac531   Masahiro Yamada   kbuild: rename LD...
139
140
  # Usage: KBUILD_LDFLAGS += $(call ld-option, -X, -Y)
  ld-option = $(call try-run, $(LD) $(KBUILD_LDFLAGS) $(1) -v,$(1),$(2),$(3))
691ef3e7f   Sam Ravnborg   kbuild: introduce...
141

ccbef1674   Andi Kleen   Kbuild, lto: add ...
142
  # ld-version
ccbef1674   Andi Kleen   Kbuild, lto: add ...
143
  # Note this is mainly for HJ Lu's 3 number binutil versions
e08d6de4e   Masahiro Yamada   kbuild: remove kb...
144
  ld-version = $(shell $(LD) --version | $(srctree)/scripts/ld-version.sh)
ccbef1674   Andi Kleen   Kbuild, lto: add ...
145
146
147
  
  # ld-ifversion
  # Usage:  $(call ld-ifversion, -ge, 22252, y)
6dcb4e5ed   Masahiro Yamada   kbuild: allow cc-...
148
  ld-ifversion = $(shell [ $(ld-version) $(1) $(2) ] && echo $(3) || echo $(4))
ccbef1674   Andi Kleen   Kbuild, lto: add ...
149

5de043f4b   Oleg Verych   [PATCH] kbuild: i...
150
  ######
0b0bf7a3c   Roland McGrath   [PATCH] vDSO hash...
151

beda9f3a1   Roman Zippel   [PATCH] kbuild: m...
152
  ###
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
153
154
155
  # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj=
  # Usage:
  # $(Q)$(MAKE) $(build)=dir
5b2389b45   Masahiro Yamada   kbuild: simplify ...
156
  build := -f $(srctree)/scripts/Makefile.build obj
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
157

bc081dd6e   Michal Marek   kbuild: generate ...
158
159
160
161
  ###
  # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.modbuiltin obj=
  # Usage:
  # $(Q)$(MAKE) $(modbuiltin)=dir
5b2389b45   Masahiro Yamada   kbuild: simplify ...
162
  modbuiltin := -f $(srctree)/scripts/Makefile.modbuiltin obj
bc081dd6e   Michal Marek   kbuild: generate ...
163

9fb5e5372   Robert Richter   dts, kbuild: Fact...
164
165
166
167
  ###
  # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.dtbinst obj=
  # Usage:
  # $(Q)$(MAKE) $(dtbinst)=dir
487c7c770   Masahiro Yamada   kbuild: prefix Ma...
168
  dtbinst := -f $(srctree)/scripts/Makefile.dtbinst obj
9fb5e5372   Robert Richter   dts, kbuild: Fact...
169

d08372ca2   Linus Torvalds   Merge branch 'kbu...
170
  ###
371fdc77a   Masahiro Yamada   kbuild: collect s...
171
172
173
174
  # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=
  # Usage:
  # $(Q)$(MAKE) $(clean)=dir
  clean := -f $(srctree)/scripts/Makefile.clean obj
5de043f4b   Oleg Verych   [PATCH] kbuild: i...
175
176
  # echo command.
  # Short version is used, if $(quiet) equals `quiet_', otherwise full one.
bff288c19   Oleg Verych   [PATCH] kbuild, K...
177
  echo-cmd = $(if $($(quiet)cmd_$(1)),\
5de043f4b   Oleg Verych   [PATCH] kbuild: i...
178
179
180
  	echo '  $(call escsq,$($(quiet)cmd_$(1)))$(echo-why)';)
  
  # printing commands
3a2429e1f   Masahiro Yamada   kbuild: change if...
181
  cmd = @set -e; $(echo-cmd) $(cmd_$(1))
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
182
183
  
  ###
5de043f4b   Oleg Verych   [PATCH] kbuild: i...
184
  # if_changed      - execute command if any prerequisite is newer than
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
185
186
187
188
  #                   target, or command line has changed
  # if_changed_dep  - as if_changed, but uses fixdep to reveal dependencies
  #                   including used config symbols
  # if_changed_rule - as if_changed but execute rule instead
cd238effe   Mauro Carvalho Chehab   docs: kbuild: con...
189
  # See Documentation/kbuild/makefiles.rst for more info
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
190
191
  
  ifneq ($(KBUILD_NOCMDDEP),1)
50bcca6ac   Masahiro Yamada   kbuild: rename ar...
192
  # Check if both commands are the same including their order. Result is empty
9c8fa9bc0   Masahiro Yamada   kbuild: fix if_ch...
193
  # string if equal. User may override this check using make KBUILD_NOCMDDEP=1
50bcca6ac   Masahiro Yamada   kbuild: rename ar...
194
  cmd-check = $(filter-out $(subst $(space),$(space_escape),$(strip $(cmd_$@))), \
9c8fa9bc0   Masahiro Yamada   kbuild: fix if_ch...
195
                           $(subst $(space),$(space_escape),$(strip $(cmd_$1))))
c4d5ee139   Michal Marek   kbuild: make KBUI...
196
  else
50bcca6ac   Masahiro Yamada   kbuild: rename ar...
197
  cmd-check = $(if $(strip $(cmd_$@)),,1)
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
198
  endif
164f0d2ef   Michal Marek   kbuild: Fix handl...
199
200
  # Replace >$< with >$$< to preserve $ when reloading the .cmd file
  # (needed for make)
9564a8cf4   Rasmus Villemoes   Kbuild: fix # esc...
201
  # Replace >#< with >$(pound)< to avoid starting a comment in the .cmd file
164f0d2ef   Michal Marek   kbuild: Fix handl...
202
203
204
  # (needed for make)
  # Replace >'< with >'\''< to be able to enclose the whole string in '...'
  # (needed for the shell)
9564a8cf4   Rasmus Villemoes   Kbuild: fix # esc...
205
  make-cmd = $(call escsq,$(subst $(pound),$$(pound),$(subst $$,$$$$,$(cmd_$(1)))))
6176aa9ae   Jan Beulich   kbuild: consolida...
206

48f1f0589   Sam Ravnborg   kbuild: consisten...
207
208
  # Find any prerequisites that is newer than target or that does not exist.
  # PHONY targets skipped in both cases.
93f31bbda   Masahiro Yamada   kbuild: save $(st...
209
  any-prereq = $(filter-out $(PHONY),$?)$(filter-out $(PHONY) $(wildcard $^),$^)
48f1f0589   Sam Ravnborg   kbuild: consisten...
210

5de043f4b   Oleg Verych   [PATCH] kbuild: i...
211
  # Execute command if command has changed or prerequisite(s) are updated.
c2341e2a4   Masahiro Yamada   kbuild: save $(st...
212
  if_changed = $(if $(any-prereq)$(cmd-check),                                 \
67126965e   Masahiro Yamada   kbuild: refactor ...
213
  	$(cmd);                                                              \
2aedcd098   Masahiro Yamada   kbuild: suppress ...
214
215
  	printf '%s
  ' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:)
8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
216

5de043f4b   Oleg Verych   [PATCH] kbuild: i...
217
  # Execute the command and also postprocess generated .d dependencies file.
c2341e2a4   Masahiro Yamada   kbuild: save $(st...
218
  if_changed_dep = $(if $(any-prereq)$(cmd-check),$(cmd_and_fixdep),@:)
c1a95fda2   Nicolas Pitre   kbuild: add fine ...
219

e4aca4595   Nicolas Pitre   kbuild: de-duplic...
220
  cmd_and_fixdep =                                                             \
3a2429e1f   Masahiro Yamada   kbuild: change if...
221
  	$(cmd);                                                              \
392885ee8   Masahiro Yamada   kbuild: let fixde...
222
  	scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(dot-target).cmd;\
e5d289100   Masahiro Yamada   kbuild: remove tr...
223
  	rm -f $(depfile)
c1a95fda2   Nicolas Pitre   kbuild: add fine ...
224

8ec4b4ff1   Sam Ravnborg   kbuild: introduce...
225
  # Usage: $(call if_changed_rule,foo)
beda9f3a1   Roman Zippel   [PATCH] kbuild: m...
226
227
  # Will check if $(cmd_foo) or any of the prerequisites changed,
  # and if so will execute $(rule_foo).
c2341e2a4   Masahiro Yamada   kbuild: save $(st...
228
  if_changed_rule = $(if $(any-prereq)$(cmd-check),$(rule_$(1)),@:)
48f1f0589   Sam Ravnborg   kbuild: consisten...
229

45d506bd6   Sam Ravnborg   kbuild: make V=2 ...
230
  ###
312a3d091   Cao jin   kbuild: trivial c...
231
  # why - tell why a target got built
45d506bd6   Sam Ravnborg   kbuild: make V=2 ...
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
  #       enabled by make V=2
  #       Output (listed in the order they are checked):
  #          (1) - due to target is PHONY
  #          (2) - due to target missing
  #          (3) - due to: file1.h file2.h
  #          (4) - due to command line change
  #          (5) - due to missing .cmd file
  #          (6) - due to target not in $(targets)
  # (1) PHONY targets are always build
  # (2) No target, so we better build it
  # (3) Prerequisite is newer than target
  # (4) The command line stored in the file named dir/.target.cmd
  #     differed from actual command line. This happens when compiler
  #     options changes
  # (5) No dir/.target.cmd file (used to store command line)
  # (6) No dir/.target.cmd file and target not listed in $(targets)
  #     This is a good hint that there is a bug in the kbuild file
  ifeq ($(KBUILD_VERBOSE),2)
  why =                                                                        \
      $(if $(filter $@, $(PHONY)),- due to target is PHONY,                    \
          $(if $(wildcard $@),                                                 \
93f31bbda   Masahiro Yamada   kbuild: save $(st...
253
              $(if $(any-prereq),- due to: $(any-prereq),                      \
50bcca6ac   Masahiro Yamada   kbuild: rename ar...
254
                  $(if $(cmd-check),                                           \
45d506bd6   Sam Ravnborg   kbuild: make V=2 ...
255
256
257
258
259
260
261
262
263
264
265
266
267
268
                      $(if $(cmd_$@),- due to command line change,             \
                          $(if $(filter $@, $(targets)),                       \
                              - due to missing .cmd file,                      \
                              - due to $(notdir $@) not in $$(targets)         \
                           )                                                   \
                       )                                                       \
                   )                                                           \
               ),                                                              \
               - due to target missing                                         \
           )                                                                   \
       )
  
  echo-why = $(call escsq, $(strip $(why)))
  endif
3ee550f12   David Woodhouse   modsign: Handle s...
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
  
  ###############################################################################
  #
  # When a Kconfig string contains a filename, it is suitable for
  # passing to shell commands. It is surrounded by double-quotes, and
  # any double-quotes or backslashes within it are escaped by
  # backslashes.
  #
  # This is no use for dependencies or $(wildcard). We need to strip the
  # surrounding quotes and the escaping from quotes and backslashes, and
  # we *do* need to escape any spaces in the string. So, for example:
  #
  # Usage: $(eval $(call config_filename,FOO))
  #
  # Defines FOO_FILENAME based on the contents of the CONFIG_FOO option,
  # transformed as described above to be suitable for use within the
  # makefile.
  #
  # Also, if the filename is a relative filename and exists in the source
  # tree but not the build tree, define FOO_SRCPREFIX as $(srctree)/ to
  # be prefixed to *both* command invocation and dependencies.
  #
  # Note: We also print the filenames in the quiet_cmd_foo text, and
  # perhaps ought to have a version specially escaped for that purpose.
  # But it's only cosmetic, and $(patsubst "%",%,$(CONFIG_FOO)) is good
  # enough.  It'll strip the quotes in the common case where there's no
  # space and it's a simple filename, and it'll retain the quotes when
  # there's a space. There are some esoteric cases in which it'll print
  # the wrong thing, but we don't really care. The actual dependencies
  # and commands *do* get it right, with various combinations of single
  # and double quotes, backslashes and spaces in the filenames.
  #
  ###############################################################################
  #
3ee550f12   David Woodhouse   modsign: Handle s...
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
  define config_filename
  ifneq ($$(CONFIG_$(1)),"")
  $(1)_FILENAME := $$(subst \\,\,$$(subst \$$(quote),$$(quote),$$(subst $$(space_escape),\$$(space),$$(patsubst "%",%,$$(subst $$(space),$$(space_escape),$$(CONFIG_$(1)))))))
  ifneq ($$(patsubst /%,%,$$(firstword $$($(1)_FILENAME))),$$(firstword $$($(1)_FILENAME)))
  else
  ifeq ($$(wildcard $$($(1)_FILENAME)),)
  ifneq ($$(wildcard $$(srctree)/$$($(1)_FILENAME)),)
  $(1)_SRCPREFIX := $(srctree)/
  endif
  endif
  endif
  endif
  endef
  #
  ###############################################################################
9c2af1c73   Masahiro Yamada   kbuild: add .DELE...
318
319
320
  
  # delete partially updated (i.e. corrupted) files on error
  .DELETE_ON_ERROR:
8e9b61b29   Masahiro Yamada   kbuild: move .SEC...
321
322
323
  
  # do not delete intermediate files automatically
  .SECONDARY: