Blame view
scripts/Makefile.clean
2.96 KB
b24413180 License cleanup: ... |
1 |
# SPDX-License-Identifier: GPL-2.0 |
1da177e4c Linux-2.6.12-rc2 |
2 3 4 5 6 |
# ========================================================================== # Cleaning up # ========================================================================== src := $(obj) |
4f1933620 kbuild: change kb... |
7 |
PHONY := __clean |
1da177e4c Linux-2.6.12-rc2 |
8 |
__clean: |
371fdc77a kbuild: collect s... |
9 |
include scripts/Kbuild.include |
2315c6e42 kbuild: define cl... |
10 |
|
2a6914703 kbuild: fix make ... |
11 |
# The filename Kbuild has precedence over Makefile |
db8c1a7b2 kbuild: fix build... |
12 13 |
kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src)) include $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, $(kbuild-dir)/Makefile) |
1da177e4c Linux-2.6.12-rc2 |
14 15 16 17 18 19 20 21 |
# Figure out what we need to build from the various variables # ========================================================================== __subdir-y := $(patsubst %/,%,$(filter %/, $(obj-y))) subdir-y += $(__subdir-y) __subdir-m := $(patsubst %/,%,$(filter %/, $(obj-m))) subdir-m += $(__subdir-m) |
1da177e4c Linux-2.6.12-rc2 |
22 23 24 25 26 27 |
__subdir- := $(patsubst %/,%,$(filter %/, $(obj-))) subdir- += $(__subdir-) # Subdirectories we need to descend into subdir-ym := $(sort $(subdir-y) $(subdir-m)) |
a4954fd77 kbuild: remove ob... |
28 |
subdir-ymn := $(sort $(subdir-ym) $(subdir-)) |
1da177e4c Linux-2.6.12-rc2 |
29 30 31 32 |
# Add subdir path subdir-ymn := $(addprefix $(obj)/,$(subdir-ymn)) |
3156fd052 kbuild: fix some ... |
33 |
# build a list of files to remove, usually relative to the current |
1da177e4c Linux-2.6.12-rc2 |
34 |
# directory |
9d5db8949 scripts/Makefile.... |
35 36 |
__clean-files := $(extra-y) $(extra-m) $(extra-) \ $(always) $(targets) $(clean-files) \ |
1da177e4c Linux-2.6.12-rc2 |
37 |
$(host-progs) \ |
244038743 Shared library su... |
38 39 40 |
$(hostprogs-y) $(hostprogs-m) $(hostprogs-) \ $(hostlibs-y) $(hostlibs-m) $(hostlibs-) \ $(hostcxxlibs-y) $(hostcxxlibs-m) |
1da177e4c Linux-2.6.12-rc2 |
41 |
|
ef8ff89b5 kbuild: Really do... |
42 |
__clean-files := $(filter-out $(no-clean-files), $(__clean-files)) |
a16c5f99a kbuild: Fix remov... |
43 44 45 |
# clean-files is given relative to the current directory, unless it # starts with $(objtree)/ (which means "./", so do not add "./" unless # you want to delete a file from the toplevel object directory). |
1da177e4c Linux-2.6.12-rc2 |
46 47 |
__clean-files := $(wildcard \ |
a16c5f99a kbuild: Fix remov... |
48 49 |
$(addprefix $(obj)/, $(filter-out $(objtree)/%, $(__clean-files))) \ $(filter $(objtree)/%, $(__clean-files))) |
1da177e4c Linux-2.6.12-rc2 |
50 |
|
a16c5f99a kbuild: Fix remov... |
51 |
# same as clean-files |
1da177e4c Linux-2.6.12-rc2 |
52 53 |
__clean-dirs := $(wildcard \ |
a16c5f99a kbuild: Fix remov... |
54 55 |
$(addprefix $(obj)/, $(filter-out $(objtree)/%, $(clean-dirs))) \ $(filter $(objtree)/%, $(clean-dirs))) |
1da177e4c Linux-2.6.12-rc2 |
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# ========================================================================== quiet_cmd_clean = CLEAN $(obj) cmd_clean = rm -f $(__clean-files) quiet_cmd_cleandir = CLEAN $(__clean-dirs) cmd_cleandir = rm -rf $(__clean-dirs) __clean: $(subdir-ymn) ifneq ($(strip $(__clean-files)),) +$(call cmd,clean) endif ifneq ($(strip $(__clean-dirs)),) +$(call cmd,cleandir) endif |
1da177e4c Linux-2.6.12-rc2 |
72 73 74 75 76 77 78 79 80 |
@: # =========================================================================== # Generic stuff # =========================================================================== # Descending # --------------------------------------------------------------------------- |
4f1933620 kbuild: change kb... |
81 |
PHONY += $(subdir-ymn) |
1da177e4c Linux-2.6.12-rc2 |
82 83 |
$(subdir-ymn): $(Q)$(MAKE) $(clean)=$@ |
4f1933620 kbuild: change kb... |
84 85 86 87 |
# Declare the contents of the .PHONY variable as phony. We keep that # information in a variable se we can use it in if_changed and friends. .PHONY: $(PHONY) |