diff options
author | zhang jiao <[email protected]> | 2024-09-02 12:21:03 +0800 |
---|---|---|
committer | Wei Liu <[email protected]> | 2024-09-05 07:23:08 +0000 |
commit | 5e5cc1eb65256e6017e3deec04f9806f2f317853 (patch) | |
tree | 336948e7925c5448cda8a4156aa0b3cf1b15098b | |
parent | b9af6418279c4cf73ca073f8ea024992b38be8ab (diff) |
tools: hv: rm .*.cmd when make clean
rm .*.cmd when make clean
Signed-off-by: zhang jiao <[email protected]>
Reviewed-by: Saurabh Sengar <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Wei Liu <[email protected]>
Message-ID: <[email protected]>
-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); \ |