aboutsummaryrefslogtreecommitdiff
path: root/nrf528xx/makefile
blob: ab7d6248c997fb7b332b696f954c1380f904d536 (plain)
1
2
3
4
5
6
7
8
9
10
.PHONY: format

SRCS :=

SRCS += $(wildcard *.c)
SRCS += $(wildcard *.h)

format:
	clang-format -i $(SRCS)
	clang-tidy --fix-errors $(SRCS)