tillitis-key/hw/application_fpga/fw/testfw/Makefile

10 lines
238 B
Makefile
Raw Normal View History

# Uses ../.clang-format
FMTFILES=main.c
2022-09-19 06:51:11 +00:00
.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)