mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2024-12-11 17:04:28 -05: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)
|