We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b15370 commit b77e901Copy full SHA for b77e901
Makefile.am
@@ -36,4 +36,11 @@ test: check
36
test-regression:
37
(cd tests && $(MAKE) test-regression)
38
39
+cppcheck:
40
+ (cppcheck . --enable=all --force)
41
+
42
+check-coding-style:
43
+ (vera++ -rule L004 -param max-line-length=80 `(find . -iname "*.c" ; find . -iname "*.h") | xargs`)
44
+ (vera++ -rule L001 `(find . -iname "*.c" ; find . -iname "*.h") | xargs`)
45
46
.PHONY: test
0 commit comments