summaryrefslogtreecommitdiffstats
path: root/Kbuild
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2019-08-10 11:53:02 -0400
committerMasahiro Yamada <yamada.masahiro@socionext.com>2019-08-21 08:03:58 -0400
commit125d059b624180b2c441181c797e41354bfe0649 (patch)
treeaa0345e5d6a3ab724bfb8a8b7a3cb7667754c512 /Kbuild
parentd082402e2174314e87131771d048925b2245b74c (diff)
kbuild: do not descend to ./Kbuild when cleaning
'make clean' descends into ./Kbuild, but does not clean anything since everything is added to no-clean-files. There is no need to descend to ./Kbuild in the first place. We can drop the no-clean-files assignment. With this, there is no more user of no-clean-files. I will keep it for a while to see whether a new user will appear. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Kbuild')
-rw-r--r--Kbuild3
1 files changed, 0 insertions, 3 deletions
diff --git a/Kbuild b/Kbuild
index d40366e967d7..3109ac786e76 100644
--- a/Kbuild
+++ b/Kbuild
@@ -57,6 +57,3 @@ quiet_cmd_atomics = CALL $<
57 57
58old-atomics: scripts/atomic/check-atomics.sh FORCE 58old-atomics: scripts/atomic/check-atomics.sh FORCE
59 $(call cmd,atomics) 59 $(call cmd,atomics)
60
61# Keep these three files during make clean
62no-clean-files := $(bounds-file) $(offsets-file) $(timeconst-file)