This commit is contained in:
Imbus 2024-12-14 14:04:38 +01:00
parent b93903166a
commit b542c22bc2
2 changed files with 276 additions and 2 deletions

View file

@ -27,10 +27,10 @@ clang-tidy:
cppcheck:
cppcheck --enable=all --language=c++ --std=c++17 --suppress=missingIncludeSystem -I/usr/include $(SRC) $(HDR)
clang-format:
format:
clang-format -i $(SRC) $(HDR)
clean:
rm -f *.o *.elf words.txt
.PHONY: clean all lint clang-tidy cppcheck clang-format
.PHONY: clean all lint clang-tidy cppcheck format