From a324956d93190cf7c49be741facede8bc8a9f70d Mon Sep 17 00:00:00 2001 From: siddharth ravikumar Date: Sun, 5 Jun 2022 22:58:04 -0400 Subject: bin: add Makefile --- bin/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bin/Makefile diff --git a/bin/Makefile b/bin/Makefile new file mode 100644 index 0000000..e59851b --- /dev/null +++ b/bin/Makefile @@ -0,0 +1,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 -- cgit v1.2.3