Files
nwipe/Makefile.am
2020-02-08 12:07:19 -05:00

10 lines
226 B
Makefile

SUBDIRS = src man
# The set of files to be formatted.
FORMATSOURCES = src/*.c src/*.h
format:
clang-format -i -style=file $(FORMATSOURCES)
check-format:
clang-format -i -style=file $(FORMATSOURCES) && git diff --exit-code