laforge submitted this change.
Makefile: add 'clean-logs' target
When running tests manually I oftentimes end up with hundreds of
*.log files in testsuite directories. The present patch adds a
convenience target for removing them.
Change-Id: Id0597f9eeea9e128ce38a2b19f2126c729e71ffd
---
M Makefile
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
index 7a9ddb8..75e79ff 100644
--- a/Makefile
+++ b/Makefile
@@ -151,3 +151,6 @@
# trivial to clean up the builddir manually.
clean:
rm -rf _build
+
+clean-logs:
+ find $(SUBDIRS) -name "*.log" -print -delete
To view, visit change 40862. To unsubscribe, or for help writing mail filters, visit settings.