summaryrefslogtreecommitdiff
path: root/tools/hv
diff options
context:
space:
mode:
authorzhang jiao <zhangjiao2@cmss.chinamobile.com>2024-09-02 07:21:03 +0300
committerWei Liu <wei.liu@kernel.org>2024-09-05 10:23:08 +0300
commit5e5cc1eb65256e6017e3deec04f9806f2f317853 (patch)
tree336948e7925c5448cda8a4156aa0b3cf1b15098b /tools/hv
parentb9af6418279c4cf73ca073f8ea024992b38be8ab (diff)
downloadlinux-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/Makefile2
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); \