doxy:
	doxygen Doxyfile

check:
	cppcheck .

cs:
	clang-format -style=file:./.clang-format -n ./Core/Src/*.cpp 

csf:
	clang-format -style=file:./.clang-format -i ./Core/Src/*.cpp 

cs-v14:
	docker run --rm -v ${PWD}:/src xianpengshen/clang-tools:14 clang-format -style=file:./.clang-format -n ./Core/Src/* ./Core/include/*

csf-v14:
	docker run --rm -v ${PWD}:/src xianpengshen/clang-tools:14 clang-format -style=file:./.clang-format -i ./src/* ./include/*