blob: fd6175322470a707c372b9d6ffdabc1b12221057 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002# ==========================================================================
3# Cleaning up
4# ==========================================================================
5
6src := $(obj)
7
Paul Smith4f193362006-03-05 17:14:10 -05008PHONY := __clean
Linus Torvalds1da177e2005-04-16 15:20:36 -07009__clean:
10
Masahiro Yamada3204a7f2021-02-28 15:10:26 +090011include $(srctree)/scripts/Kbuild.include
Sam Ravnborg2315c6e2005-07-25 22:41:12 +000012
Sam Ravnborg2a691472005-07-25 20:26:04 +000013# The filename Kbuild has precedence over Makefile
Sam Ravnborgdb8c1a72005-07-27 22:11:01 +020014kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
15include $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, $(kbuild-dir)/Makefile)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17# Figure out what we need to build from the various variables
18# ==========================================================================
19
Masahiro Yamada4ca76942019-08-25 10:31:39 +090020subdir-ymn := $(sort $(subdir-y) $(subdir-m) $(subdir-) \
21 $(patsubst %/,%, $(filter %/, $(obj-y) $(obj-m) $(obj-))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23# Add subdir path
24
25subdir-ymn := $(addprefix $(obj)/,$(subdir-ymn))
26
Robert P. J. Day3156fd02008-02-18 04:48:20 -050027# build a list of files to remove, usually relative to the current
Linus Torvalds1da177e2005-04-16 15:20:36 -070028# directory
29
Masahiro Yamadafaabed22020-08-01 21:27:18 +090030__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
Michal Marekef8ff892010-03-09 16:00:20 +010037__clean-files := $(filter-out $(no-clean-files), $(__clean-files))
38
Michal Mareka16c5f92014-12-31 16:29:35 +010039# clean-files is given relative to the current directory, unless it
40# starts with $(objtree)/ (which means "./", so do not add "./" unless
41# you want to delete a file from the toplevel object directory).
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43__clean-files := $(wildcard \
Michal Mareka16c5f92014-12-31 16:29:35 +010044 $(addprefix $(obj)/, $(filter-out $(objtree)/%, $(__clean-files))) \
45 $(filter $(objtree)/%, $(__clean-files)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047# ==========================================================================
48
Masahiro Yamada1634f2b2019-08-25 10:31:27 +090049quiet_cmd_clean = CLEAN $(obj)
50 cmd_clean = rm -rf $(__clean-files)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52__clean: $(subdir-ymn)
53ifneq ($(strip $(__clean-files)),)
Masahiro Yamada687ac1f2019-08-25 10:31:28 +090054 $(call cmd,clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 @:
57
58
59# ===========================================================================
60# Generic stuff
61# ===========================================================================
62
63# Descending
64# ---------------------------------------------------------------------------
65
Paul Smith4f193362006-03-05 17:14:10 -050066PHONY += $(subdir-ymn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067$(subdir-ymn):
68 $(Q)$(MAKE) $(clean)=$@
69
Paul Smith4f193362006-03-05 17:14:10 -050070.PHONY: $(PHONY)