diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-22 14:32:19 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-22 14:32:19 +0200 |
commit | 33d17dbab86c1277a1327273fb9753b2c98b7b03 (patch) | |
tree | e868c781953faeb5227787d130d208b93ff49147 /makefile | |
parent | 5113ffd3b0b3c761681456fae5ed554c2b35cc8d (diff) |
more documentation
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,12 @@ all: doxygen -doxygen: Doxyfile +.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) + |