File: Makefile.am

package info (click to toggle)
nwipe 0.30-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,784 kB
  • sloc: ansic: 5,828; makefile: 27; sh: 4
file content (9 lines) | stat: -rw-r--r-- 226 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
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