https://github.com/stan-dev/stan
Raw File
Tip revision: b672017bc2748b2962126859662b658aa9f9bba6 authored by Sean Talts on 11 December 2017, 18:08:57 UTC
release/v2.17.1: updating version numbers.
Tip revision: b672017
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