summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsiddharth ravikumar <s@ricketyspace.net>2022-06-05 22:58:04 -0400
committersiddharth ravikumar <s@ricketyspace.net>2022-06-05 22:58:04 -0400
commita324956d93190cf7c49be741facede8bc8a9f70d (patch)
tree0b8723ffa681a39d25bb130f1a114f58567950e1
parentc49ba0490840ba3f27fb6874df32c4559c904923 (diff)
bin: add Makefile
-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