xref: /linux/scripts/Kbuild.include (revision 2d3b1b8f0da7b1b09f42231580d88f93b803ae7f)
196ac6d43SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0
28ec4b4ffSSam Ravnborg####
38ec4b4ffSSam Ravnborg# kbuild: Generic definitions
48ec4b4ffSSam Ravnborg
5beda9f3aSRoman Zippel# Convenient variables
68ec4b4ffSSam Ravnborgcomma   := ,
713338935SMasahiro Yamadaquote   := "
8d51bfb78SSam Ravnborgsquote  := '
98ec4b4ffSSam Ravnborgempty   :=
108ec4b4ffSSam Ravnborgspace   := $(empty) $(empty)
119c8fa9bcSMasahiro Yamadaspace_escape := _-_SPACE_-_
129564a8cfSRasmus Villemoespound := \#
138ec4b4ffSSam Ravnborg
148ec4b4ffSSam Ravnborg###
1548f1f058SSam Ravnborg# Name of target with a '.' as filename prefix. foo/bar.o => foo/.bar.o
1648f1f058SSam Ravnborgdot-target = $(dir $@).$(notdir $@)
1748f1f058SSam Ravnborg
1848f1f058SSam Ravnborg###
198ec4b4ffSSam Ravnborg# The temporary file to save gcc -MD generated dependencies must not
208ec4b4ffSSam Ravnborg# contain a comma
2148f1f058SSam Ravnborgdepfile = $(subst $(comma),_,$(dot-target).d)
228ec4b4ffSSam Ravnborg
238ec4b4ffSSam Ravnborg###
245e8d780dSSam Ravnborg# filename of target with directory and extension stripped
255e8d780dSSam Ravnborgbasetarget = $(basename $(notdir $@))
265e8d780dSSam Ravnborg
275e8d780dSSam Ravnborg###
28afa974b7SMasahiro Yamada# real prerequisites without phony targets
29afa974b7SMasahiro Yamadareal-prereqs = $(filter-out $(PHONY), $^)
30afa974b7SMasahiro Yamada
31afa974b7SMasahiro Yamada###
32d51bfb78SSam Ravnborg# Escape single quote for use in echo statements
33d51bfb78SSam Ravnborgescsq = $(subst $(squote),'\$(squote)',$1)
34d51bfb78SSam Ravnborg
35d51bfb78SSam Ravnborg###
365410ecc0SMike Frysinger# Easy method for doing a status message
375410ecc0SMike Frysinger       kecho := :
385410ecc0SMike Frysinger quiet_kecho := echo
395410ecc0SMike Frysingersilent_kecho := :
405410ecc0SMike Frysingerkecho := $($(quiet)kecho)
415410ecc0SMike Frysinger
425410ecc0SMike Frysinger###
438ec4b4ffSSam Ravnborg# filechk is used to check if the content of a generated file is updated.
448ec4b4ffSSam Ravnborg# Sample usage:
45ba97df45SMasahiro Yamada#
46ba97df45SMasahiro Yamada# filechk_sample = echo $(KERNELRELEASE)
47ba97df45SMasahiro Yamada# version.h: FORCE
488ec4b4ffSSam Ravnborg#	$(call filechk,sample)
49ba97df45SMasahiro Yamada#
508ec4b4ffSSam Ravnborg# The rule defined shall write to stdout the content of the new file.
518ec4b4ffSSam Ravnborg# The existing file will be compared with the new one.
528ec4b4ffSSam Ravnborg# - If no file exist it is created
538ec4b4ffSSam Ravnborg# - If the content differ the new file is used
548ec4b4ffSSam Ravnborg# - If they are equal no change, and no timestamp update
558ec4b4ffSSam Ravnborg# - stdin is piped in from the first prerequisite ($<) so one has
568ec4b4ffSSam Ravnborg#   to specify a valid file as first prerequisite (often the kbuild file)
578ec4b4ffSSam Ravnborgdefine filechk
588ec4b4ffSSam Ravnborg	$(Q)set -e;				\
598ec4b4ffSSam Ravnborg	mkdir -p $(dir $@);			\
60ad774086SMasahiro Yamada	{ $(filechk_$(1)); } > $@.tmp;		\
618ec4b4ffSSam Ravnborg	if [ -r $@ ] && cmp -s $@ $@.tmp; then	\
628ec4b4ffSSam Ravnborg		rm -f $@.tmp;			\
638ec4b4ffSSam Ravnborg	else					\
64fd54f502SMike Frysinger		$(kecho) '  UPD     $@';	\
658ec4b4ffSSam Ravnborg		mv -f $@.tmp $@;		\
668ec4b4ffSSam Ravnborg	fi
678ec4b4ffSSam Ravnborgendef
688ec4b4ffSSam Ravnborg
6920a468b5SSam Ravnborg######
709d6e7a70SSam Ravnborg# gcc support functions
71cd238effSMauro Carvalho Chehab# See documentation in Documentation/kbuild/makefiles.rst
7220a468b5SSam Ravnborg
73910b4046SSam Ravnborg# cc-cross-prefix
74910b4046SSam Ravnborg# Usage: CROSS_COMPILE := $(call cc-cross-prefix, m68k-linux-gnu- m68k-linux-)
75bd55f96fSMasahiro Yamada# Return first <prefix> where a <prefix>gcc is found in PATH.
76bd55f96fSMasahiro Yamada# If no gcc found in PATH with listed prefixes return nothing
77913ab978SMasahiro Yamada#
78913ab978SMasahiro Yamada# Note: '2>/dev/null' is here to force Make to invoke a shell. Otherwise, it
79913ab978SMasahiro Yamada# would try to directly execute the shell builtin 'command'. This workaround
80913ab978SMasahiro Yamada# should be kept for a long time since this issue was fixed only after the
81913ab978SMasahiro Yamada# GNU Make 4.2.1 release.
82d4a74bbfSMasahiro Yamadacc-cross-prefix = $(firstword $(foreach c, $(1), \
83d4a74bbfSMasahiro Yamada			$(if $(shell command -v -- $(c)gcc 2>/dev/null), $(c))))
84910b4046SSam Ravnborg
85beda9f3aSRoman Zippel# output directory for tests below
86beda9f3aSRoman ZippelTMPOUT := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/)
87beda9f3aSRoman Zippel
88beda9f3aSRoman Zippel# try-run
89beda9f3aSRoman Zippel# Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
90312a3d09SCao jin# Exit code chooses option. "$$TMP" serves as a temporary file and is
91312a3d09SCao jin# automatically cleaned up.
92e08d6de4SMasahiro Yamadatry-run = $(shell set -e;		\
93beda9f3aSRoman Zippel	TMP="$(TMPOUT).$$$$.tmp";	\
94691ef3e7SSam Ravnborg	TMPO="$(TMPOUT).$$$$.o";	\
95beda9f3aSRoman Zippel	if ($(1)) >/dev/null 2>&1;	\
965de043f4SOleg Verych	then echo "$(2)";		\
975de043f4SOleg Verych	else echo "$(3)";		\
985de043f4SOleg Verych	fi;				\
99e08d6de4SMasahiro Yamada	rm -f "$$TMP" "$$TMPO")
100347a00fbSRoman Zippel
10120a468b5SSam Ravnborg# as-option
10220a468b5SSam Ravnborg# Usage: cflags-y += $(call as-option,-Wa$(comma)-isa=foo,)
103beda9f3aSRoman Zippel
104e08d6de4SMasahiro Yamadaas-option = $(call try-run,\
105a0f97e06SSam Ravnborg	$(CC) $(KBUILD_CFLAGS) $(1) -c -x assembler /dev/null -o "$$TMP",$(1),$(2))
10620a468b5SSam Ravnborg
107e2414910SAndi Kleen# as-instr
108e2414910SAndi Kleen# Usage: cflags-y += $(call as-instr,instr,option1,option2)
109beda9f3aSRoman Zippel
110e08d6de4SMasahiro Yamadaas-instr = $(call try-run,\
111875de986SBernhard Walle	printf "%b\n" "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -x assembler -o "$$TMP" -,$(2),$(3))
112e2414910SAndi Kleen
1139f3f1fd2SMatthias Kaehlcke# __cc-option
1149f3f1fd2SMatthias Kaehlcke# Usage: MY_CFLAGS += $(call __cc-option,$(CC),$(MY_CFLAGS),-march=winchip-c6,-march=i586)
115e08d6de4SMasahiro Yamada__cc-option = $(call try-run,\
1169f3f1fd2SMatthias Kaehlcke	$(1) -Werror $(2) $(3) -c -x c /dev/null -o "$$TMP",$(3),$(4))
1179f3f1fd2SMatthias Kaehlcke
118d26e9414SEmese Revfy# Do not attempt to build with gcc plugins during cc-option tests.
119d26e9414SEmese Revfy# (And this uses delayed resolution so the flags will be up to date.)
1206ac38934SIngo MolnarCC_OPTION_CFLAGS = $(filter-out $(GCC_PLUGINS_CFLAGS),$(KBUILD_CFLAGS))
121d26e9414SEmese Revfy
12220a468b5SSam Ravnborg# cc-option
12320a468b5SSam Ravnborg# Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586)
124beda9f3aSRoman Zippel
1259f3f1fd2SMatthias Kaehlckecc-option = $(call __cc-option, $(CC),\
1269f3f1fd2SMatthias Kaehlcke	$(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS),$(1),$(2))
1279f3f1fd2SMatthias Kaehlcke
12820a468b5SSam Ravnborg# cc-option-yn
12920a468b5SSam Ravnborg# Usage: flag := $(call cc-option-yn,-march=winchip-c6)
130e08d6de4SMasahiro Yamadacc-option-yn = $(call try-run,\
131c3f0d0bcSMark Charlebois	$(CC) -Werror $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",y,n)
13220a468b5SSam Ravnborg
1338417da6fSMichal Marek# cc-disable-warning
1348417da6fSMichal Marek# Usage: cflags-y += $(call cc-disable-warning,unused-but-set-variable)
135e08d6de4SMasahiro Yamadacc-disable-warning = $(call try-run,\
136c3f0d0bcSMark Charlebois	$(CC) -Werror $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) -W$(strip $(1)) -c -x c /dev/null -o "$$TMP",-Wno-$(strip $(1)))
1378417da6fSMichal Marek
13820a468b5SSam Ravnborg# cc-ifversion
13920a468b5SSam Ravnborg# Usage:  EXTRA_CFLAGS += $(call cc-ifversion, -lt, 0402, -O1)
140d3a918c6SMasahiro Yamadacc-ifversion = $(shell [ $(CONFIG_GCC_VERSION)0 $(1) $(2)000 ] && echo $(3) || echo $(4))
14120a468b5SSam Ravnborg
142691ef3e7SSam Ravnborg# ld-option
143d503ac53SMasahiro Yamada# Usage: KBUILD_LDFLAGS += $(call ld-option, -X, -Y)
144d503ac53SMasahiro Yamadald-option = $(call try-run, $(LD) $(KBUILD_LDFLAGS) $(1) -v,$(1),$(2),$(3))
145691ef3e7SSam Ravnborg
146ccbef167SAndi Kleen# ld-version
147ccbef167SAndi Kleen# Note this is mainly for HJ Lu's 3 number binutil versions
148e08d6de4SMasahiro Yamadald-version = $(shell $(LD) --version | $(srctree)/scripts/ld-version.sh)
149ccbef167SAndi Kleen
150ccbef167SAndi Kleen# ld-ifversion
151ccbef167SAndi Kleen# Usage:  $(call ld-ifversion, -ge, 22252, y)
1526dcb4e5eSMasahiro Yamadald-ifversion = $(shell [ $(ld-version) $(1) $(2) ] && echo $(3) || echo $(4))
153ccbef167SAndi Kleen
1545de043f4SOleg Verych######
1555de043f4SOleg Verych
156beda9f3aSRoman Zippel###
1578ec4b4ffSSam Ravnborg# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj=
1588ec4b4ffSSam Ravnborg# Usage:
1598ec4b4ffSSam Ravnborg# $(Q)$(MAKE) $(build)=dir
1605b2389b4SMasahiro Yamadabuild := -f $(srctree)/scripts/Makefile.build obj
1618ec4b4ffSSam Ravnborg
162bc081dd6SMichal Marek###
163bc081dd6SMichal Marek# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.modbuiltin obj=
164bc081dd6SMichal Marek# Usage:
165bc081dd6SMichal Marek# $(Q)$(MAKE) $(modbuiltin)=dir
1665b2389b4SMasahiro Yamadamodbuiltin := -f $(srctree)/scripts/Makefile.modbuiltin obj
167bc081dd6SMichal Marek
1689fb5e537SRobert Richter###
1699fb5e537SRobert Richter# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.dtbinst obj=
1709fb5e537SRobert Richter# Usage:
1719fb5e537SRobert Richter# $(Q)$(MAKE) $(dtbinst)=dir
172487c7c77SMasahiro Yamadadtbinst := -f $(srctree)/scripts/Makefile.dtbinst obj
1739fb5e537SRobert Richter
174d08372caSLinus Torvalds###
175371fdc77SMasahiro Yamada# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=
176371fdc77SMasahiro Yamada# Usage:
177371fdc77SMasahiro Yamada# $(Q)$(MAKE) $(clean)=dir
178371fdc77SMasahiro Yamadaclean := -f $(srctree)/scripts/Makefile.clean obj
179371fdc77SMasahiro Yamada
1805de043f4SOleg Verych# echo command.
1815de043f4SOleg Verych# Short version is used, if $(quiet) equals `quiet_', otherwise full one.
1825de043f4SOleg Verychecho-cmd = $(if $($(quiet)cmd_$(1)),\
1835de043f4SOleg Verych	echo '  $(call escsq,$($(quiet)cmd_$(1)))$(echo-why)';)
1845de043f4SOleg Verych
1855de043f4SOleg Verych# printing commands
1863a2429e1SMasahiro Yamadacmd = @set -e; $(echo-cmd) $(cmd_$(1))
1878ec4b4ffSSam Ravnborg
1888ec4b4ffSSam Ravnborg###
1898ec4b4ffSSam Ravnborg# if_changed      - execute command if any prerequisite is newer than
1908ec4b4ffSSam Ravnborg#                   target, or command line has changed
1918ec4b4ffSSam Ravnborg# if_changed_dep  - as if_changed, but uses fixdep to reveal dependencies
1928ec4b4ffSSam Ravnborg#                   including used config symbols
1938ec4b4ffSSam Ravnborg# if_changed_rule - as if_changed but execute rule instead
194cd238effSMauro Carvalho Chehab# See Documentation/kbuild/makefiles.rst for more info
1958ec4b4ffSSam Ravnborg
1968ec4b4ffSSam Ravnborgifneq ($(KBUILD_NOCMDDEP),1)
19750bcca6aSMasahiro Yamada# Check if both commands are the same including their order. Result is empty
1989c8fa9bcSMasahiro Yamada# string if equal. User may override this check using make KBUILD_NOCMDDEP=1
19950bcca6aSMasahiro Yamadacmd-check = $(filter-out $(subst $(space),$(space_escape),$(strip $(cmd_$@))), \
2009c8fa9bcSMasahiro Yamada                         $(subst $(space),$(space_escape),$(strip $(cmd_$1))))
201c4d5ee13SMichal Marekelse
20250bcca6aSMasahiro Yamadacmd-check = $(if $(strip $(cmd_$@)),,1)
2038ec4b4ffSSam Ravnborgendif
2048ec4b4ffSSam Ravnborg
205164f0d2eSMichal Marek# Replace >$< with >$$< to preserve $ when reloading the .cmd file
206164f0d2eSMichal Marek# (needed for make)
2079564a8cfSRasmus Villemoes# Replace >#< with >$(pound)< to avoid starting a comment in the .cmd file
208164f0d2eSMichal Marek# (needed for make)
209164f0d2eSMichal Marek# Replace >'< with >'\''< to be able to enclose the whole string in '...'
210164f0d2eSMichal Marek# (needed for the shell)
2119564a8cfSRasmus Villemoesmake-cmd = $(call escsq,$(subst $(pound),$$(pound),$(subst $$,$$$$,$(cmd_$(1)))))
2126176aa9aSJan Beulich
213*2d3b1b8fSMasahiro Yamada# Find any prerequisites that are newer than target or that do not exist.
214*2d3b1b8fSMasahiro Yamada# (This is not true for now; $? should contain any non-existent prerequisites,
215*2d3b1b8fSMasahiro Yamada# but it does not work as expected when .SECONDARY is present. This seems a bug
216*2d3b1b8fSMasahiro Yamada# of GNU Make.)
21748f1f058SSam Ravnborg# PHONY targets skipped in both cases.
218*2d3b1b8fSMasahiro Yamadaany-prereq = $(filter-out $(PHONY),$?)
21948f1f058SSam Ravnborg
2205de043f4SOleg Verych# Execute command if command has changed or prerequisite(s) are updated.
221c2341e2aSMasahiro Yamadaif_changed = $(if $(any-prereq)$(cmd-check),                                 \
22267126965SMasahiro Yamada	$(cmd);                                                              \
2232aedcd09SMasahiro Yamada	printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:)
2248ec4b4ffSSam Ravnborg
2255de043f4SOleg Verych# Execute the command and also postprocess generated .d dependencies file.
226c2341e2aSMasahiro Yamadaif_changed_dep = $(if $(any-prereq)$(cmd-check),$(cmd_and_fixdep),@:)
227c1a95fdaSNicolas Pitre
228e4aca459SNicolas Pitrecmd_and_fixdep =                                                             \
2293a2429e1SMasahiro Yamada	$(cmd);                                                              \
230392885eeSMasahiro Yamada	scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(dot-target).cmd;\
231e5d28910SMasahiro Yamada	rm -f $(depfile)
232c1a95fdaSNicolas Pitre
2338ec4b4ffSSam Ravnborg# Usage: $(call if_changed_rule,foo)
234beda9f3aSRoman Zippel# Will check if $(cmd_foo) or any of the prerequisites changed,
235beda9f3aSRoman Zippel# and if so will execute $(rule_foo).
236c2341e2aSMasahiro Yamadaif_changed_rule = $(if $(any-prereq)$(cmd-check),$(rule_$(1)),@:)
23748f1f058SSam Ravnborg
23845d506bdSSam Ravnborg###
239312a3d09SCao jin# why - tell why a target got built
24045d506bdSSam Ravnborg#       enabled by make V=2
24145d506bdSSam Ravnborg#       Output (listed in the order they are checked):
24245d506bdSSam Ravnborg#          (1) - due to target is PHONY
24345d506bdSSam Ravnborg#          (2) - due to target missing
24445d506bdSSam Ravnborg#          (3) - due to: file1.h file2.h
24545d506bdSSam Ravnborg#          (4) - due to command line change
24645d506bdSSam Ravnborg#          (5) - due to missing .cmd file
24745d506bdSSam Ravnborg#          (6) - due to target not in $(targets)
24845d506bdSSam Ravnborg# (1) PHONY targets are always build
24945d506bdSSam Ravnborg# (2) No target, so we better build it
25045d506bdSSam Ravnborg# (3) Prerequisite is newer than target
25145d506bdSSam Ravnborg# (4) The command line stored in the file named dir/.target.cmd
25245d506bdSSam Ravnborg#     differed from actual command line. This happens when compiler
25345d506bdSSam Ravnborg#     options changes
25445d506bdSSam Ravnborg# (5) No dir/.target.cmd file (used to store command line)
25545d506bdSSam Ravnborg# (6) No dir/.target.cmd file and target not listed in $(targets)
25645d506bdSSam Ravnborg#     This is a good hint that there is a bug in the kbuild file
25745d506bdSSam Ravnborgifeq ($(KBUILD_VERBOSE),2)
25845d506bdSSam Ravnborgwhy =                                                                        \
25945d506bdSSam Ravnborg    $(if $(filter $@, $(PHONY)),- due to target is PHONY,                    \
26045d506bdSSam Ravnborg        $(if $(wildcard $@),                                                 \
26193f31bbdSMasahiro Yamada            $(if $(any-prereq),- due to: $(any-prereq),                      \
26250bcca6aSMasahiro Yamada                $(if $(cmd-check),                                           \
26345d506bdSSam Ravnborg                    $(if $(cmd_$@),- due to command line change,             \
26445d506bdSSam Ravnborg                        $(if $(filter $@, $(targets)),                       \
26545d506bdSSam Ravnborg                            - due to missing .cmd file,                      \
26645d506bdSSam Ravnborg                            - due to $(notdir $@) not in $$(targets)         \
26745d506bdSSam Ravnborg                         )                                                   \
26845d506bdSSam Ravnborg                     )                                                       \
26945d506bdSSam Ravnborg                 )                                                           \
27045d506bdSSam Ravnborg             ),                                                              \
27145d506bdSSam Ravnborg             - due to target missing                                         \
27245d506bdSSam Ravnborg         )                                                                   \
27345d506bdSSam Ravnborg     )
27445d506bdSSam Ravnborg
27545d506bdSSam Ravnborgecho-why = $(call escsq, $(strip $(why)))
27645d506bdSSam Ravnborgendif
2773ee550f1SDavid Woodhouse
2783ee550f1SDavid Woodhouse###############################################################################
2793ee550f1SDavid Woodhouse#
2803ee550f1SDavid Woodhouse# When a Kconfig string contains a filename, it is suitable for
2813ee550f1SDavid Woodhouse# passing to shell commands. It is surrounded by double-quotes, and
2823ee550f1SDavid Woodhouse# any double-quotes or backslashes within it are escaped by
2833ee550f1SDavid Woodhouse# backslashes.
2843ee550f1SDavid Woodhouse#
2853ee550f1SDavid Woodhouse# This is no use for dependencies or $(wildcard). We need to strip the
2863ee550f1SDavid Woodhouse# surrounding quotes and the escaping from quotes and backslashes, and
2873ee550f1SDavid Woodhouse# we *do* need to escape any spaces in the string. So, for example:
2883ee550f1SDavid Woodhouse#
2893ee550f1SDavid Woodhouse# Usage: $(eval $(call config_filename,FOO))
2903ee550f1SDavid Woodhouse#
2913ee550f1SDavid Woodhouse# Defines FOO_FILENAME based on the contents of the CONFIG_FOO option,
2923ee550f1SDavid Woodhouse# transformed as described above to be suitable for use within the
2933ee550f1SDavid Woodhouse# makefile.
2943ee550f1SDavid Woodhouse#
2953ee550f1SDavid Woodhouse# Also, if the filename is a relative filename and exists in the source
2963ee550f1SDavid Woodhouse# tree but not the build tree, define FOO_SRCPREFIX as $(srctree)/ to
2973ee550f1SDavid Woodhouse# be prefixed to *both* command invocation and dependencies.
2983ee550f1SDavid Woodhouse#
2993ee550f1SDavid Woodhouse# Note: We also print the filenames in the quiet_cmd_foo text, and
3003ee550f1SDavid Woodhouse# perhaps ought to have a version specially escaped for that purpose.
3013ee550f1SDavid Woodhouse# But it's only cosmetic, and $(patsubst "%",%,$(CONFIG_FOO)) is good
3023ee550f1SDavid Woodhouse# enough.  It'll strip the quotes in the common case where there's no
3033ee550f1SDavid Woodhouse# space and it's a simple filename, and it'll retain the quotes when
3043ee550f1SDavid Woodhouse# there's a space. There are some esoteric cases in which it'll print
3053ee550f1SDavid Woodhouse# the wrong thing, but we don't really care. The actual dependencies
3063ee550f1SDavid Woodhouse# and commands *do* get it right, with various combinations of single
3073ee550f1SDavid Woodhouse# and double quotes, backslashes and spaces in the filenames.
3083ee550f1SDavid Woodhouse#
3093ee550f1SDavid Woodhouse###############################################################################
3103ee550f1SDavid Woodhouse#
3113ee550f1SDavid Woodhousedefine config_filename
3123ee550f1SDavid Woodhouseifneq ($$(CONFIG_$(1)),"")
3133ee550f1SDavid Woodhouse$(1)_FILENAME := $$(subst \\,\,$$(subst \$$(quote),$$(quote),$$(subst $$(space_escape),\$$(space),$$(patsubst "%",%,$$(subst $$(space),$$(space_escape),$$(CONFIG_$(1)))))))
3143ee550f1SDavid Woodhouseifneq ($$(patsubst /%,%,$$(firstword $$($(1)_FILENAME))),$$(firstword $$($(1)_FILENAME)))
3153ee550f1SDavid Woodhouseelse
3163ee550f1SDavid Woodhouseifeq ($$(wildcard $$($(1)_FILENAME)),)
3173ee550f1SDavid Woodhouseifneq ($$(wildcard $$(srctree)/$$($(1)_FILENAME)),)
3183ee550f1SDavid Woodhouse$(1)_SRCPREFIX := $(srctree)/
3193ee550f1SDavid Woodhouseendif
3203ee550f1SDavid Woodhouseendif
3213ee550f1SDavid Woodhouseendif
3223ee550f1SDavid Woodhouseendif
3233ee550f1SDavid Woodhouseendef
3243ee550f1SDavid Woodhouse#
3253ee550f1SDavid Woodhouse###############################################################################
3269c2af1c7SMasahiro Yamada
3279c2af1c7SMasahiro Yamada# delete partially updated (i.e. corrupted) files on error
3289c2af1c7SMasahiro Yamada.DELETE_ON_ERROR:
3298e9b61b2SMasahiro Yamada
3308e9b61b2SMasahiro Yamada# do not delete intermediate files automatically
3318e9b61b2SMasahiro Yamada.SECONDARY:
332