Skip to content

Commit b77e901

Browse files
author
Felipe Zimmerle
committed
Adds support for coding style and quality check
Initial effort to get the code on shape. This will be executed by the buildbots as soon as they get ready for it.
1 parent 7b15370 commit b77e901

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Makefile.am

+7
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,11 @@ test: check
3636
test-regression:
3737
(cd tests && $(MAKE) test-regression)
3838

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+
3946
.PHONY: test

0 commit comments

Comments
 (0)