mirror of
https://github.com/martijnvanbrummelen/nwipe.git
synced 2026-02-20 13:42:14 +00:00
10 lines
224 B
Makefile
10 lines
224 B
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
SUBDIRS = src man
|
|
nwipe_SOURCES = src/*.c src/*.h
|
|
|
|
format:
|
|
clang-format -i -style=file $(nwipe_SOURCES)
|
|
|
|
check-format:
|
|
clang-format -i -style=file $(nwipe_SOURCES) && git diff-index --quiet HEAD
|