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

all: check fmt
.PHONY: all

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

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