diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -5,11 +5,9 @@ all: $(TARGET) # TARGET is defined in lazy.mk (build/main) doxygen: Doxyfile FORCE doxygen -FMT += $(shell git ls-files '*.h' '*.c' '*.cpp') +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) -include lazy.mk - |