diff options
author | Elwin Hammer <elwinhammer@gmail.com> | 2024-06-22 22:32:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-22 22:32:30 +0200 |
commit | a9eb2013e6b7297cfce4116179f4ab2d58d1c8d6 (patch) | |
tree | 0f16b75795d9926c5ea4a8ef52a695365837a8e4 /makefile | |
parent | f121de7c7e3ca8f0dc526973a5ee2586485aad22 (diff) | |
parent | d6440954806d381dae5b3df65b43192f897018c6 (diff) |
Merge pull request #21 from lonkaars/master
Updating branch
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..2ea1c3d --- /dev/null +++ b/makefile @@ -0,0 +1,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) + |