https://github.com/stan-dev/stan
Raw File
Tip revision: d33b9b9067f48eb40d3f221bf6ff5a196dee252e authored by Sean Talts on 19 June 2017, 17:03:07 UTC
Merge branch 'develop' of github.com:stan-dev/stan into release/v2.16.0
Tip revision: d33b9b9
cpplint
PYTHON2 ?= python

.PHONY: cpplint
cpplint:
	@$(PYTHON2) $(CPPLINT)/cpplint.py --output=vs7 --counting=detailed --root=src --extension=hpp,cpp --filter=-runtime/indentation_namespace,-readability/namespace,-legal/copyright,-whitespace/indent,-runtime/reference $(shell find src/stan -name '*.hpp' -o -name '*.cpp')
back to top