8 lines
No EOL
197 B
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
|