Merge tag 'perf-tools-fixes-for-v6.0-2022-08-19' of git://git.kernel.org/pub/scm...
[linux-block.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
3204a7fb 11include $(srctree)/scripts/Kbuild.include
2315c6e4 12
2a691470 13# The filename Kbuild has precedence over Makefile
db8c1a7b 14kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
5c816641 15include $(or $(wildcard $(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
faabed29
MY
30__clean-files := \
31 $(clean-files) $(targets) $(hostprogs) $(userprogs) \
32 $(extra-y) $(extra-m) $(extra-) \
33 $(always-y) $(always-m) $(always-) \
34 $(hostprogs-always-y) $(hostprogs-always-m) $(hostprogs-always-) \
35 $(userprogs-always-y) $(userprogs-always-m) $(userprogs-always-)
36
ef8ff89b
MM
37__clean-files := $(filter-out $(no-clean-files), $(__clean-files))
38
8d613a1d 39__clean-files := $(wildcard $(addprefix $(obj)/, $(__clean-files)))
1da177e4 40
1da177e4
LT
41# ==========================================================================
42
1634f2bf
MY
43quiet_cmd_clean = CLEAN $(obj)
44 cmd_clean = rm -rf $(__clean-files)
1da177e4
LT
45
46__clean: $(subdir-ymn)
47ifneq ($(strip $(__clean-files)),)
687ac1fa 48 $(call cmd,clean)
1da177e4
LT
49endif
50 @:
51
52
53# ===========================================================================
54# Generic stuff
55# ===========================================================================
56
57# Descending
58# ---------------------------------------------------------------------------
59
4f193362 60PHONY += $(subdir-ymn)
1da177e4
LT
61$(subdir-ymn):
62 $(Q)$(MAKE) $(clean)=$@
63
4f193362 64.PHONY: $(PHONY)