From c10aab24894083ac7ed2c5e349a2767457314982 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 20 Oct 2009 14:35:25 +1030 Subject: [PATCH] Don't print full fail results on normal check --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a9b13ff3..ec3df825 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ default: libccan.a include Makefile-ccan -check: $(ALL_TESTS:%=check-%) +check: $(ALL_TESTS:%=summary-check-%) distclean: clean rm -f $(ALL_DEPENDS) @@ -34,6 +34,10 @@ $(ALL_DEPENDS): %/.depends: %/_info tools/ccan_depends # Actual dependencies are created in inter-depends check-%: tools/ccanlint/ccanlint + @tools/ccanlint/ccanlint -d ccan/$* + +# Doesn't test dependencies, doesn't print verbose fail results. +summary-check-%: tools/ccanlint/ccanlint $(OBJFILES) @tools/ccanlint/ccanlint -s -d ccan/$* ccan/%/info: ccan/%/_info -- 2.39.2