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