aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzhangjiao <[email protected]>2024-08-29 13:33:09 +0800
committerJonathan Cameron <[email protected]>2024-09-05 19:27:13 +0100
commitdfc58f467f7163b28d8aaadafd86d93dd08ea01c (patch)
treef6cb14e3ec244246be22fe0d473c9d3d49432ab2
parent09e3bdfe499d5b0ed24c123f7c5a12459db217db (diff)
tools: iio: rm .*.cmd when make clean
rm .*.cmd when make clean Signed-off-by: zhangjiao <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Jonathan Cameron <[email protected]>
-rw-r--r--tools/iio/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/iio/Makefile b/tools/iio/Makefile
index fa720f062229..3bcce0b7d10f 100644
--- a/tools/iio/Makefile
+++ b/tools/iio/Makefile
@@ -58,7 +58,7 @@ $(OUTPUT)iio_generic_buffer: $(IIO_GENERIC_BUFFER_IN)
clean:
rm -f $(ALL_PROGRAMS)
rm -rf $(OUTPUT)include/linux/iio
- 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)$(bindir); \