https://github.com/stan-dev/stan
Raw File
Tip revision: c13ebc71e464d9906e9a475e4a9a4f50c56a1a3d authored by Daniel Lee on 17 October 2016, 16:06:57 UTC
Adding a make target for testing the manual programs
Tip revision: c13ebc7
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