summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/Makefile12
1 files changed, 12 insertions, 0 deletions
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