diff options
Diffstat (limited to 'nrf528xx/makefile')
-rw-r--r-- | nrf528xx/makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nrf528xx/makefile b/nrf528xx/makefile new file mode 100644 index 0000000..ab7d624 --- /dev/null +++ b/nrf528xx/makefile @@ -0,0 +1,10 @@ +.PHONY: format + +SRCS := + +SRCS += $(wildcard *.c) +SRCS += $(wildcard *.h) + +format: + clang-format -i $(SRCS) + clang-tidy --fix-errors $(SRCS) |