]> Git Repo - linux.git/commitdiff
tools: hv: rm .*.cmd when make clean
authorzhang jiao <[email protected]>
Mon, 2 Sep 2024 04:21:03 +0000 (12:21 +0800)
committerWei Liu <[email protected]>
Thu, 5 Sep 2024 07:23:08 +0000 (07:23 +0000)
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: <20240902042103[email protected]>

tools/hv/Makefile

index 2e60e2c212cd9eaaf2404946dc6184e11f9e7b5e..34ffcec264ab0fdf7075d25456ef012cb866796b 100644 (file)
@@ -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); \
This page took 0.055635 seconds and 4 git commands to generate.