branch: master
commit 01f08e3e741e2cb610bfc8e78159eefe9ffac2b7
Author: rocky <[email protected]>
Commit: rocky <[email protected]>
Document targets "check-short" and "install-short"
---
Makefile.am | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index abf9c32..4343b3a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -34,14 +34,15 @@ endif
#: Run all tests
test: check
+#: Run all tests with reduced versbosity
check-short:
$(MAKE) -C test check 2>&1 | ruby make-check-filter.rb
-#: Run all tests without and show just the failure lines
+#: Run tests showing only the failure lines; See also check-short
check-terse:
$(MAKE) check 2>&1 | $(RUBY) make-check-filter.rb | grep failure
-#: Run "make install"
+#: Run "make install" with reduced verbosity
install-short:
$(MAKE) install 2>&1 | $(RUBY) make-check-filter.rb