b-parasite-esp32/code/parasite/Makefile
2021-02-10 22:25:06 +01:00

8 lines
No EOL
197 B
Makefile

.PHONY: lint
lint:
find ./ -type f \( -iname \*.h -o -iname \*.cpp \) | xargs clang-format -n -Werror
.PHONY: fix
fix:
find ./ -type f \( -iname \*.h -o -iname \*.cpp \) | xargs clang-format -i