Browse Source

Nahrať súbory do ''

makefile
juraj 9 months ago
parent
commit
542205fef8
1 changed files with 17 additions and 0 deletions
  1. 17 0
      Makefile

+ 17 - 0
Makefile

@@ -0,0 +1,17 @@
+doxy:
+	doxygen Doxyfile
+
+check:
+	cppcheck .
+
+cs:
+	clang-format -style=file:./.clang-format -n ./src/* ./include/*
+
+csf:
+	clang-format -style=file:./.clang-format -i ./src/* ./include/*
+
+cs-v14:
+	docker run --rm -v ${PWD}:/src xianpengshen/clang-tools:14 clang-format -style=file:./.clang-format -n ./src/* ./include/*
+
+csf-v14:
+	docker run --rm -v ${PWD}:/src xianpengshen/clang-tools:14 clang-format -style=file:./.clang-format -i ./src/* ./include/*