]> git.ipfire.org Git - thirdparty/linux.git/blame - scripts/Makefile.clean
Merge tag 'imx-fixes-5.7' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo...
[thirdparty/linux.git] / scripts / Makefile.clean
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2# ==========================================================================
3# Cleaning up
4# ==========================================================================
5
6src := $(obj)
7
4f193362 8PHONY := __clean
1da177e4
LT
9__clean:
10
371fdc77 11include scripts/Kbuild.include
2315c6e4 12
2a691470 13# The filename Kbuild has precedence over Makefile
db8c1a7b
SR
14kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
15include $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, $(kbuild-dir)/Makefile)
1da177e4
LT
16
17# Figure out what we need to build from the various variables
18# ==========================================================================
19
4ca76945
MY
20subdir-ymn := $(sort $(subdir-y) $(subdir-m) $(subdir-) \
21 $(patsubst %/,%, $(filter %/, $(obj-y) $(obj-m) $(obj-))))
1da177e4
LT
22
23# Add subdir path
24
25subdir-ymn := $(addprefix $(obj)/,$(subdir-ymn))
26
3156fd05 27# build a list of files to remove, usually relative to the current
1da177e4
LT
28# directory
29
9d5db894 30__clean-files := $(extra-y) $(extra-m) $(extra-) \
5f2fb52f
MY
31 $(always) $(always-y) $(always-m) $(always-) $(targets) $(clean-files) \
32 $(hostprogs) $(hostprogs-y) $(hostprogs-m) $(hostprogs-) \
24403874 33 $(hostcxxlibs-y) $(hostcxxlibs-m)
1da177e4 34
ef8ff89b
MM
35__clean-files := $(filter-out $(no-clean-files), $(__clean-files))
36
a16c5f99
MM
37# clean-files is given relative to the current directory, unless it
38# starts with $(objtree)/ (which means "./", so do not add "./" unless
39# you want to delete a file from the toplevel object directory).
1da177e4
LT
40
41__clean-files := $(wildcard \
a16c5f99
MM
42 $(addprefix $(obj)/, $(filter-out $(objtree)/%, $(__clean-files))) \
43 $(filter $(objtree)/%, $(__clean-files)))
1da177e4 44
1da177e4
LT
45# ==========================================================================
46
1634f2bf
MY
47quiet_cmd_clean = CLEAN $(obj)
48 cmd_clean = rm -rf $(__clean-files)
1da177e4
LT
49
50__clean: $(subdir-ymn)
51ifneq ($(strip $(__clean-files)),)
687ac1fa 52 $(call cmd,clean)
1da177e4
LT
53endif
54 @:
55
56
57# ===========================================================================
58# Generic stuff
59# ===========================================================================
60
61# Descending
62# ---------------------------------------------------------------------------
63
4f193362 64PHONY += $(subdir-ymn)
1da177e4
LT
65$(subdir-ymn):
66 $(Q)$(MAKE) $(clean)=$@
67
4f193362 68.PHONY: $(PHONY)