diff options
author | zhang jiao <zhangjiao2@cmss.chinamobile.com> | 2024-09-02 07:21:03 +0300 |
---|---|---|
committer | Wei Liu <wei.liu@kernel.org> | 2024-09-05 10:23:08 +0300 |
commit | 5e5cc1eb65256e6017e3deec04f9806f2f317853 (patch) | |
tree | 336948e7925c5448cda8a4156aa0b3cf1b15098b /tools/hv | |
parent | b9af6418279c4cf73ca073f8ea024992b38be8ab (diff) | |
download | linux-5e5cc1eb65256e6017e3deec04f9806f2f317853.tar.xz |
tools: hv: rm .*.cmd when make clean
rm .*.cmd when make clean
Signed-off-by: zhang jiao <zhangjiao2@cmss.chinamobile.com>
Reviewed-by: Saurabh Sengar <ssengar@linux.microsoft.com>
Link: https://lore.kernel.org/r/20240902042103.5867-1-zhangjiao2@cmss.chinamobile.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <20240902042103.5867-1-zhangjiao2@cmss.chinamobile.com>
Diffstat (limited to 'tools/hv')
-rw-r--r-- | tools/hv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hv/Makefile b/tools/hv/Makefile index 2e60e2c212cd..34ffcec264ab 100644 --- a/tools/hv/Makefile +++ b/tools/hv/Makefile @@ -52,7 +52,7 @@ $(OUTPUT)hv_fcopy_uio_daemon: $(HV_FCOPY_UIO_DAEMON_IN) clean: rm -f $(ALL_PROGRAMS) - find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete + find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete -o -name '\.*.cmd' -delete install: $(ALL_PROGRAMS) install -d -m 755 $(DESTDIR)$(sbindir); \ |