blob: 808d09f27ad4063424211a8264297a0b3945d3c5 [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) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 $(host-progs) \
Emese Revfy24403872016-05-24 00:08:25 +020042 $(hostprogs-y) $(hostprogs-m) $(hostprogs-) \
43 $(hostlibs-y) $(hostlibs-m) $(hostlibs-) \
44 $(hostcxxlibs-y) $(hostcxxlibs-m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Michal Marekef8ff892010-03-09 16:00:20 +010046__clean-files := $(filter-out $(no-clean-files), $(__clean-files))
47
Michal Mareka16c5f92014-12-31 16:29:35 +010048# clean-files is given relative to the current directory, unless it
49# starts with $(objtree)/ (which means "./", so do not add "./" unless
50# you want to delete a file from the toplevel object directory).
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52__clean-files := $(wildcard \
Michal Mareka16c5f92014-12-31 16:29:35 +010053 $(addprefix $(obj)/, $(filter-out $(objtree)/%, $(__clean-files))) \
54 $(filter $(objtree)/%, $(__clean-files)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Michal Mareka16c5f92014-12-31 16:29:35 +010056# same as clean-files
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58__clean-dirs := $(wildcard \
Michal Mareka16c5f92014-12-31 16:29:35 +010059 $(addprefix $(obj)/, $(filter-out $(objtree)/%, $(clean-dirs))) \
60 $(filter $(objtree)/%, $(clean-dirs)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62# ==========================================================================
63
64quiet_cmd_clean = CLEAN $(obj)
65 cmd_clean = rm -f $(__clean-files)
66quiet_cmd_cleandir = CLEAN $(__clean-dirs)
67 cmd_cleandir = rm -rf $(__clean-dirs)
68
69
70__clean: $(subdir-ymn)
71ifneq ($(strip $(__clean-files)),)
72 +$(call cmd,clean)
73endif
74ifneq ($(strip $(__clean-dirs)),)
75 +$(call cmd,cleandir)
76endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 @:
78
79
80# ===========================================================================
81# Generic stuff
82# ===========================================================================
83
84# Descending
85# ---------------------------------------------------------------------------
86
Paul Smith4f193362006-03-05 17:14:10 -050087PHONY += $(subdir-ymn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088$(subdir-ymn):
89 $(Q)$(MAKE) $(clean)=$@
90
Paul Smith4f193362006-03-05 17:14:10 -050091# Declare the contents of the .PHONY variable as phony. We keep that
92# information in a variable se we can use it in if_changed and friends.
93
94.PHONY: $(PHONY)