mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-03-13 02:26:49 -04:00

Adds: - SYSCALL_RESET - SYSCALL_SET_LED Co-authored-by: Michael Cardell Widerkrantz <mc@tillitis.se>
11 lines
239 B
Makefile
11 lines
239 B
Makefile
# Uses ../.clang-format
|
|
FMTFILES=*.[ch]
|
|
|
|
.PHONY: fmt
|
|
fmt:
|
|
clang-format --dry-run --ferror-limit=0 $(FMTFILES)
|
|
clang-format --verbose -i $(FMTFILES)
|
|
.PHONY: checkfmt
|
|
checkfmt:
|
|
clang-format --dry-run --ferror-limit=0 --Werror $(FMTFILES)
|