aboutsummaryrefslogtreecommitdiff
path: root/src/makefile
blob: a0e8f02ffb22b7284830b36579c90eaeaa4be66d (plain)
1
2
3
4
5
6
7
8
9
.PHONY: FORCE

format: FORCE
	$(MAKE) -C .. $@

LINT := $(shell git ls-files '*.c' '*.cpp' '*.h' '*.hpp')
lint: FORCE
	clang-tidy -p build/compile_commands.json --fix-errors $(LINT)