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