blob: d9e0ceace6a64f35cdfe2819a591b6149edd3d38 [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 Yamada371fdc72014-11-26 19:31:13 +090011include 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
37# deprecated
38__clean-files += $(always) $(hostprogs-y) $(hostprogs-m) $(hostprogs-)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Michal Marekef8ff892010-03-09 16:00:20 +010040__clean-files := $(filter-out $(no-clean-files), $(__clean-files))
41
Michal Mareka16c5f92014-12-31 16:29:35 +010042# clean-files is given relative to the current directory, unless it
43# starts with $(objtree)/ (which means "./", so do not add "./" unless
44# you want to delete a file from the toplevel object directory).
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46__clean-files := $(wildcard \
Michal Mareka16c5f92014-12-31 16:29:35 +010047 $(addprefix $(obj)/, $(filter-out $(objtree)/%, $(__clean-files))) \
48 $(filter $(objtree)/%, $(__clean-files)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050# ==========================================================================
51
Masahiro Yamada1634f2b2019-08-25 10:31:27 +090052quiet_cmd_clean = CLEAN $(obj)
53 cmd_clean = rm -rf $(__clean-files)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55__clean: $(subdir-ymn)
56ifneq ($(strip $(__clean-files)),)
Masahiro Yamada687ac1f2019-08-25 10:31:28 +090057 $(call cmd,clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 @:
60
61
62# ===========================================================================
63# Generic stuff
64# ===========================================================================
65
66# Descending
67# ---------------------------------------------------------------------------
68
Paul Smith4f193362006-03-05 17:14:10 -050069PHONY += $(subdir-ymn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070$(subdir-ymn):
71 $(Q)$(MAKE) $(clean)=$@
72
Paul Smith4f193362006-03-05 17:14:10 -050073.PHONY: $(PHONY)