mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2024-10-01 01:45:38 -04:00
7 lines
186 B
Makefile
7 lines
186 B
Makefile
FMTFILES=main.c lib.h lib.c proto.h proto.c types.h
|
|
.PHONY: fmt
|
|
fmt:
|
|
# Uses ../.clang-format
|
|
clang-format --dry-run --ferror-limit=0 $(FMTFILES)
|
|
clang-format --verbose -i $(FMTFILES)
|