Explorar o código

Nahrať súbory do ''

makefile
juraj hai 9 meses
pai
achega
542205fef8
Modificáronse 1 ficheiros con 17 adicións e 0 borrados
  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/*