Adds verbose quality check

Vera++ and ccpcheck are not outputing to the stderr instead stdout
allowing the buildbot to extract some numbers about it.
This commit is contained in:
Felipe Zimmerle 2013-12-04 06:19:11 -08:00
parent b77e90152d
commit 388943440c

View File

@ -37,10 +37,10 @@ test-regression:
(cd tests && $(MAKE) test-regression)
cppcheck:
(cppcheck . --enable=all --force)
cppcheck . --enable=all --force
check-coding-style:
(vera++ -rule L004 -param max-line-length=80 `(find . -iname "*.c" ; find . -iname "*.h") | xargs`)
(vera++ -rule L001 `(find . -iname "*.c" ; find . -iname "*.h") | xargs`)
vera++ -rule L004 -param max-line-length=80 `(find . -iname "*.c" ; find . -iname "*.h") | xargs`
vera++ -rule L001 `(find . -iname "*.c" ; find . -iname "*.h") | xargs`
.PHONY: test