laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40862?usp=email )
Change subject: Makefile: add 'clean-logs' target ......................................................................
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(-)
Approvals: laforge: Looks good to me, but someone else must approve Jenkins Builder: Verified daniel: Looks good to me, approved
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