diff options
author | zhangjiao <zhangjiao2@cmss.chinamobile.com> | 2024-08-29 07:33:09 +0200 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2024-09-05 20:27:13 +0200 |
commit | dfc58f467f7163b28d8aaadafd86d93dd08ea01c (patch) | |
tree | f6cb14e3ec244246be22fe0d473c9d3d49432ab2 /tools/iio | |
parent | iio: adc: standardize on formatting for id match tables (diff) | |
download | linux-dfc58f467f7163b28d8aaadafd86d93dd08ea01c.tar.xz linux-dfc58f467f7163b28d8aaadafd86d93dd08ea01c.zip |
tools: iio: rm .*.cmd when make clean
rm .*.cmd when make clean
Signed-off-by: zhangjiao <zhangjiao2@cmss.chinamobile.com>
Link: https://patch.msgid.link/20240829053309.10563-1-zhangjiao2@cmss.chinamobile.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'tools/iio')
-rw-r--r-- | tools/iio/Makefile | 2 |
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); \ |