summaryrefslogtreecommitdiffstats
path: root/bin/Makefile
blob: e59851b5ecd2adf749e165c929d1a271af022068 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
SH_FILES=

all: check fmt
.PHONY: all

check:
	shellcheck -x ${SH_FILES}
.PHONY: check

fmt:
	shfmt -w -i 4 -s ${SH_FILES}
.PHONY: fmt