blob: 2ea1c3d9723ccadc51b8a0338942eadfaeb16b78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
all: doxygen
.PHONY: FORCE
doxygen: Doxyfile FORCE
doxygen
FMT += $(shell git ls-files '*.h' '*.c' '*.cpp')
format: FORCE
clang-format -i $(FMT)
# clang tidy doesn't work that well :/
# clang-tidy --fix-errors $(FMT)
|