mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-11-26 10:26:29 -05:00
This was announced on the Tillitis Blog the 2nd of October 2024, for more info visit https://tillitis.se
13 lines
337 B
Makefile
13 lines
337 B
Makefile
# SPDX-FileCopyrightText: 2022 Tillitis AB <tillitis.se>
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
|
# 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)
|