Blame view

scripts/Makefile.clean 3 KB
22433fc54   Masahiro Yamada   kbuild: import mo...
1
2
3
  # ==========================================================================
  # Cleaning up
  # ==========================================================================
f32c86493   Tom Rini   scripts/Makefile*...
4
5
6
  #
  # SPDX-License-Identifier:	GPL-2.0
  #
22433fc54   Masahiro Yamada   kbuild: import mo...
7
8
9
10
11
  
  src := $(obj)
  
  PHONY := __clean
  __clean:
98bd0e0d9   Masahiro Yamada   kbuild: sync with...
12
  include scripts/Kbuild.include
22433fc54   Masahiro Yamada   kbuild: import mo...
13
14
15
16
17
18
19
20
21
22
23
24
  
  # The filename Kbuild has precedence over Makefile
  kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
  include $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, $(kbuild-dir)/Makefile)
  
  # 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)
22433fc54   Masahiro Yamada   kbuild: import mo...
25
26
27
28
29
30
  __subdir-	:= $(patsubst %/,%,$(filter %/, $(obj-)))
  subdir-		+= $(__subdir-)
  
  # Subdirectories we need to descend into
  
  subdir-ym	:= $(sort $(subdir-y) $(subdir-m))
176d09827   Masahiro Yamada   kbuild: sync misc...
31
  subdir-ymn      := $(sort $(subdir-ym) $(subdir-))
22433fc54   Masahiro Yamada   kbuild: import mo...
32
33
34
35
  
  # Add subdir path
  
  subdir-ymn	:= $(addprefix $(obj)/,$(subdir-ymn))
efcf86193   Masahiro Yamada   kbuild: use scrip...
36
37
  
  # Temporal work-around for U-Boot
6bd04bb48   Masahiro Yamada   kbuild: fix bugs ...
38
39
  subdir-ymn	:= $(foreach f, $(subdir-ymn), \
  				$(if $(wildcard $(srctree)/$f/Makefile),$f))
22433fc54   Masahiro Yamada   kbuild: import mo...
40
41
42
  
  # build a list of files to remove, usually relative to the current
  # directory
021f04959   Masahiro Yamada   scripts/Makefile....
43
44
  __clean-files	:= $(extra-y) $(extra-m) $(extra-)       \
  		   $(always) $(targets) $(clean-files)   \
22433fc54   Masahiro Yamada   kbuild: import mo...
45
46
47
48
  		   $(host-progs)                         \
  		   $(hostprogs-y) $(hostprogs-m) $(hostprogs-)
  
  __clean-files   := $(filter-out $(no-clean-files), $(__clean-files))
98bd0e0d9   Masahiro Yamada   kbuild: sync with...
49
50
51
  # 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).
22433fc54   Masahiro Yamada   kbuild: import mo...
52
53
  
  __clean-files   := $(wildcard                                               \
98bd0e0d9   Masahiro Yamada   kbuild: sync with...
54
55
  		   $(addprefix $(obj)/, $(filter-out $(objtree)/%, $(__clean-files))) \
  		   $(filter $(objtree)/%, $(__clean-files)))
22433fc54   Masahiro Yamada   kbuild: import mo...
56

98bd0e0d9   Masahiro Yamada   kbuild: sync with...
57
  # same as clean-files
22433fc54   Masahiro Yamada   kbuild: import mo...
58
59
  
  __clean-dirs    := $(wildcard                                               \
98bd0e0d9   Masahiro Yamada   kbuild: sync with...
60
61
  		   $(addprefix $(obj)/, $(filter-out $(objtree)/%, $(clean-dirs)))    \
  		   $(filter $(objtree)/%, $(clean-dirs)))
22433fc54   Masahiro Yamada   kbuild: import mo...
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
  
  # ==========================================================================
  
  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
22433fc54   Masahiro Yamada   kbuild: import mo...
78
79
80
81
82
83
84
85
86
87
88
89
90
  	@:
  
  
  # ===========================================================================
  # Generic stuff
  # ===========================================================================
  
  # Descending
  # ---------------------------------------------------------------------------
  
  PHONY += $(subdir-ymn)
  $(subdir-ymn):
  	$(Q)$(MAKE) $(clean)=$@
22433fc54   Masahiro Yamada   kbuild: import mo...
91
92
93
94
  # 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)