diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-12 15:08:37 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-12 15:08:37 +0100 |
commit | 80e4e1eb78898879eed11648808ca6b65eecb304 (patch) | |
tree | 78d5d51ce36c32b235a4c061b5f51772fabdd8ea /src/makefile | |
parent | 48fb3f48831b1db187942592343eb4a2dc6662fc (diff) |
removed auto from code
Diffstat (limited to 'src/makefile')
-rw-r--r-- | src/makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/makefile b/src/makefile index 03a2c0e..f6907f6 100644 --- a/src/makefile +++ b/src/makefile @@ -103,10 +103,9 @@ WOUTER += crepe/api/IKeyListener.cpp WOUTER += crepe/api/IKeyListener.h WOUTER += crepe/api/IMouseListener.cpp WOUTER += crepe/api/IMouseListener.h -FMT := $(WOUTER) #<<< CHANGE THIS TO YOUR NAME FOR STEP 2 +FMT := $(shell git ls-files '*.c' '*.cpp' '*.h' '*.hpp') format: FORCE clang-tidy -p build/compile_commands.json --fix-errors $(FMT) -# FMT += $(shell git ls-files '*.c' '*.cpp' '*.h' '*.hpp') # TODO: re-enable linter after all corrections |