diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-06-05 21:43:55 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2014-07-03 16:54:57 -0400 |
commit | 9d5db8949f1ecf4019785b04d8986835d3c0e99e (patch) | |
tree | bd788de59abe792dface2ee737a710b961816400 /scripts | |
parent | 7171511eaec5bf23fb06078f59784a3a0626b38f (diff) |
scripts/Makefile.clean: clean also $(extra-m) and $(extra-)
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.clean | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Makefile.clean b/scripts/Makefile.clean index 686cb0d31c7c..a651cee84f2a 100644 --- a/scripts/Makefile.clean +++ b/scripts/Makefile.clean | |||
@@ -40,8 +40,8 @@ subdir-ymn := $(addprefix $(obj)/,$(subdir-ymn)) | |||
40 | # build a list of files to remove, usually relative to the current | 40 | # build a list of files to remove, usually relative to the current |
41 | # directory | 41 | # directory |
42 | 42 | ||
43 | __clean-files := $(extra-y) $(always) \ | 43 | __clean-files := $(extra-y) $(extra-m) $(extra-) \ |
44 | $(targets) $(clean-files) \ | 44 | $(always) $(targets) $(clean-files) \ |
45 | $(host-progs) \ | 45 | $(host-progs) \ |
46 | $(hostprogs-y) $(hostprogs-m) $(hostprogs-) | 46 | $(hostprogs-y) $(hostprogs-m) $(hostprogs-) |
47 | 47 | ||