blob: fc38a34128d4c1e82ec24445d942cbb00799a26f [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
20__subdir-y := $(patsubst %/,%,$(filter %/, $(obj-y)))
21subdir-y += $(__subdir-y)
22__subdir-m := $(patsubst %/,%,$(filter %/, $(obj-m)))
23subdir-m += $(__subdir-m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024__subdir- := $(patsubst %/,%,$(filter %/, $(obj-)))
25subdir- += $(__subdir-)
26
27# Subdirectories we need to descend into
28
29subdir-ym := $(sort $(subdir-y) $(subdir-m))
Masahiro Yamadaa4954fd2014-09-09 19:26:21 +090030subdir-ymn := $(sort $(subdir-ym) $(subdir-))
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32# Add subdir path
33
34subdir-ymn := $(addprefix $(obj)/,$(subdir-ymn))
35
Robert P. J. Day3156fd02008-02-18 04:48:20 -050036# build a list of files to remove, usually relative to the current
Linus Torvalds1da177e2005-04-16 15:20:36 -070037# directory
38
Masahiro Yamada9d5db892014-06-06 10:43:55 +090039__clean-files := $(extra-y) $(extra-m) $(extra-) \
40 $(always) $(targets) $(clean-files) \
Emese Revfy24403872016-05-24 00:08:25 +020041 $(hostprogs-y) $(hostprogs-m) $(hostprogs-) \
42 $(hostlibs-y) $(hostlibs-m) $(hostlibs-) \
43 $(hostcxxlibs-y) $(hostcxxlibs-m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Michal Marekef8ff892010-03-09 16:00:20 +010045__clean-files := $(filter-out $(no-clean-files), $(__clean-files))
46
Michal Mareka16c5f92014-12-31 16:29:35 +010047# clean-files is given relative to the current directory, unless it
48# starts with $(objtree)/ (which means "./", so do not add "./" unless
49# you want to delete a file from the toplevel object directory).
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51__clean-files := $(wildcard \
Michal Mareka16c5f92014-12-31 16:29:35 +010052 $(addprefix $(obj)/, $(filter-out $(objtree)/%, $(__clean-files))) \
53 $(filter $(objtree)/%, $(__clean-files)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055# ==========================================================================
56
Masahiro Yamada1634f2b2019-08-25 10:31:27 +090057quiet_cmd_clean = CLEAN $(obj)
58 cmd_clean = rm -rf $(__clean-files)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60__clean: $(subdir-ymn)
61ifneq ($(strip $(__clean-files)),)
Masahiro Yamada687ac1f2019-08-25 10:31:28 +090062 $(call cmd,clean)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 @:
65
66
67# ===========================================================================
68# Generic stuff
69# ===========================================================================
70
71# Descending
72# ---------------------------------------------------------------------------
73
Paul Smith4f193362006-03-05 17:14:10 -050074PHONY += $(subdir-ymn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075$(subdir-ymn):
76 $(Q)$(MAKE) $(clean)=$@
77
Paul Smith4f193362006-03-05 17:14:10 -050078.PHONY: $(PHONY)