From 760e9f69934f6933646fbcf4b2b7d3903dc96180 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Mon, 26 Mar 2018 05:50:21 +0200 Subject: [PATCH] Add cppcheck checking as part of check-source --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7b8138a38..1979ab8ba 100644 --- a/Makefile +++ b/Makefile @@ -265,7 +265,7 @@ check-includes: check-cppcheck: .cppcheck-suppress @trap 'rm -f .cppcheck-suppress' 0; git ls-files -- "*.c" "*.h" | grep -vE '^ccan/' | xargs cppcheck -q --language=c --std=c11 --error-exitcode=1 --suppressions-list=.cppcheck-suppress -check-source: check-makefile check-source-bolt check-whitespace check-markdown check-spelling check-python check-includes +check-source: check-makefile check-source-bolt check-whitespace check-markdown check-spelling check-python check-includes check-cppcheck full-check: check check-source