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

all: check fmt
.PHONY: all

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

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