diff mbox series

[4/4] spi: spidev_test: Remove the whole "include" directory when make clean

Message ID 1581567368-8055-4-git-send-email-yangtiezhu@loongson.cn (mailing list archive)
State Accepted
Commit aea7afd9079f2e43b05790241d748ff0537ec917
Headers show
Series [1/4] spi: spidev_test: Remove break after exit statement | expand

Commit Message

Tiezhu Yang Feb. 13, 2020, 4:16 a.m. UTC
In the current code, it only removes "include/linux/spi/spidev.h" file
when make clean and there still exists useless "include/linux/spi/"
directory, just remove it.

Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
---
 tools/spi/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tools/spi/Makefile b/tools/spi/Makefile
index 5c342e6..2249a15 100644
--- a/tools/spi/Makefile
+++ b/tools/spi/Makefile
@@ -51,7 +51,7 @@  $(OUTPUT)spidev_fdx: $(SPIDEV_FDX_IN)
 
 clean:
 	rm -f $(ALL_PROGRAMS)
-	rm -f $(OUTPUT)include/linux/spi/spidev.h
+	rm -rf $(OUTPUT)include/
 	find $(if $(OUTPUT),$(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete
 
 install: $(ALL_PROGRAMS)