Merge tag 'nfsd-5.9' of git://git.linux-nfs.org/projects/cel/cel-2.6
[linux/fpc-iii.git] / scripts / Makefile.clean
blobe2c76122319d75d37a7980fda543455249cc4db3
1 # SPDX-License-Identifier: GPL-2.0
2 # ==========================================================================
3 # Cleaning up
4 # ==========================================================================
6 src := $(obj)
8 PHONY := __clean
9 __clean:
11 include scripts/Kbuild.include
13 # The filename Kbuild has precedence over Makefile
14 kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
15 include $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, $(kbuild-dir)/Makefile)
17 # Figure out what we need to build from the various variables
18 # ==========================================================================
20 subdir-ymn := $(sort $(subdir-y) $(subdir-m) $(subdir-) \
21 $(patsubst %/,%, $(filter %/, $(obj-y) $(obj-m) $(obj-))))
23 # Add subdir path
25 subdir-ymn := $(addprefix $(obj)/,$(subdir-ymn))
27 # build a list of files to remove, usually relative to the current
28 # directory
30 __clean-files := $(extra-y) $(extra-m) $(extra-) \
31 $(always) $(always-y) $(always-m) $(always-) $(targets) $(clean-files) \
32 $(hostprogs) $(hostprogs-y) $(hostprogs-m) $(hostprogs-) $(userprogs) \
33 $(hostcxxlibs-y) $(hostcxxlibs-m)
35 __clean-files := $(filter-out $(no-clean-files), $(__clean-files))
37 # clean-files is given relative to the current directory, unless it
38 # starts with $(objtree)/ (which means "./", so do not add "./" unless
39 # you want to delete a file from the toplevel object directory).
41 __clean-files := $(wildcard \
42 $(addprefix $(obj)/, $(filter-out $(objtree)/%, $(__clean-files))) \
43 $(filter $(objtree)/%, $(__clean-files)))
45 # ==========================================================================
47 quiet_cmd_clean = CLEAN $(obj)
48 cmd_clean = rm -rf $(__clean-files)
50 __clean: $(subdir-ymn)
51 ifneq ($(strip $(__clean-files)),)
52 $(call cmd,clean)
53 endif
57 # ===========================================================================
58 # Generic stuff
59 # ===========================================================================
61 # Descending
62 # ---------------------------------------------------------------------------
64 PHONY += $(subdir-ymn)
65 $(subdir-ymn):
66 $(Q)$(MAKE) $(clean)=$@
68 .PHONY: $(PHONY)