Explorar el Código

Nahrať súbory do ''

makefile
juraj hace 9 meses
padre
commit
542205fef8
Se han modificado 1 ficheros con 17 adiciones y 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/*