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