diff options
Diffstat (limited to 'bin/Makefile')
-rw-r--r-- | bin/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/Makefile b/bin/Makefile new file mode 100644 index 0000000..49e36a1 --- /dev/null +++ b/bin/Makefile @@ -0,0 +1,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 |