fixeria has uploaded this change for review. ( 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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/62/40862/1
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