diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2022-08-20 18:15:29 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2022-09-29 04:40:14 +0900 |
commit | b10fdeea8cf42c0d97b337e9e501c92da4389a03 (patch) | |
tree | ac5eac64779cc1e180e99e0e67eda63681dd3d3c /Makefile | |
parent | a3c4d4abaaf0b3fb3335a432fa9b75d414d1f987 (diff) | |
download | linux-b10fdeea8cf42c0d97b337e9e501c92da4389a03.tar.bz2 |
kbuild: check sha1sum just once for each atomic header
It is unneeded to check the sha1sum every time.
Create the timestamp files to manage it.
Add '.' to clean-dirs because 'make clean' must visit ./Kbuild to
clean up the timestamp files.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1110,7 +1110,7 @@ vmlinux-dirs := $(patsubst %/,%,$(filter %/, \ $(libs-y) $(libs-m))) build-dirs := $(vmlinux-dirs) -clean-dirs := $(sort $(vmlinux-dirs) Documentation \ +clean-dirs := $(sort $(vmlinux-dirs) Documentation . \ $(patsubst %/,%,$(filter %/, $(core-) \ $(drivers-) $(libs-)))) |