]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | # SPDX-License-Identifier: GPL-2.0 |
1da177e4 LT |
2 | # ========================================================================== |
3 | # Cleaning up | |
4 | # ========================================================================== | |
5 | ||
6 | src := $(obj) | |
7 | ||
4f193362 | 8 | PHONY := __clean |
1da177e4 LT |
9 | __clean: |
10 | ||
371fdc77 | 11 | include scripts/Kbuild.include |
2315c6e4 | 12 | |
2a691470 | 13 | # The filename Kbuild has precedence over Makefile |
db8c1a7b SR |
14 | kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src)) |
15 | include $(if $(wildcard $(kbuild-dir)/Kbuild), $(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 |
20 | subdir-ymn := $(sort $(subdir-y) $(subdir-m) $(subdir-) \ |
21 | $(patsubst %/,%, $(filter %/, $(obj-y) $(obj-m) $(obj-)))) | |
1da177e4 LT |
22 | |
23 | # Add subdir path | |
24 | ||
25 | subdir-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 | ||
37 | # deprecated | |
38 | __clean-files += $(always) $(hostprogs-y) $(hostprogs-m) $(hostprogs-) | |
1da177e4 | 39 | |
ef8ff89b MM |
40 | __clean-files := $(filter-out $(no-clean-files), $(__clean-files)) |
41 | ||
a16c5f99 MM |
42 | # 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). | |
1da177e4 LT |
45 | |
46 | __clean-files := $(wildcard \ | |
a16c5f99 MM |
47 | $(addprefix $(obj)/, $(filter-out $(objtree)/%, $(__clean-files))) \ |
48 | $(filter $(objtree)/%, $(__clean-files))) | |
1da177e4 | 49 | |
1da177e4 LT |
50 | # ========================================================================== |
51 | ||
1634f2bf MY |
52 | quiet_cmd_clean = CLEAN $(obj) |
53 | cmd_clean = rm -rf $(__clean-files) | |
1da177e4 LT |
54 | |
55 | __clean: $(subdir-ymn) | |
56 | ifneq ($(strip $(__clean-files)),) | |
687ac1fa | 57 | $(call cmd,clean) |
1da177e4 LT |
58 | endif |
59 | @: | |
60 | ||
61 | ||
62 | # =========================================================================== | |
63 | # Generic stuff | |
64 | # =========================================================================== | |
65 | ||
66 | # Descending | |
67 | # --------------------------------------------------------------------------- | |
68 | ||
4f193362 | 69 | PHONY += $(subdir-ymn) |
1da177e4 LT |
70 | $(subdir-ymn): |
71 | $(Q)$(MAKE) $(clean)=$@ | |
72 | ||
4f193362 | 73 | .PHONY: $(PHONY) |