b-parasite-esp32/code/alternative/parasite/Makefile

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