diff options
| -rw-r--r-- | makefile | 3 | ||||
| -rw-r--r-- | src/makefile | 7 | 
2 files changed, 7 insertions, 3 deletions
| @@ -6,5 +6,6 @@ doxygen: Doxyfile FORCE  FMT += $(shell git ls-files '*.c' '*.cpp' '*.h' '*.hpp')  format: FORCE  	clang-format -i $(FMT) -	$(MAKE) -C src $@ +lint: FORCE +	$(MAKE) -C src $@ diff --git a/src/makefile b/src/makefile index 5f80204..a0e8f02 100644 --- a/src/makefile +++ b/src/makefile @@ -1,6 +1,9 @@  .PHONY: FORCE -FMT := $(shell git ls-files '*.c' '*.cpp' '*.h' '*.hpp')  format: FORCE -	clang-tidy -p build/compile_commands.json --fix-errors $(FMT) +	$(MAKE) -C .. $@ + +LINT := $(shell git ls-files '*.c' '*.cpp' '*.h' '*.hpp') +lint: FORCE +	clang-tidy -p build/compile_commands.json --fix-errors $(LINT) |