File: Makefile.am

package info (click to toggle)
nwipe 0.39-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,216 kB
  • sloc: ansic: 16,861; makefile: 26; sh: 4
file content (9 lines) | stat: -rw-r--r-- 226 bytes parent folder | download | duplicates (4)
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