diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2022-06-05 22:58:04 -0400 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2022-06-05 22:58:04 -0400 |
commit | a324956d93190cf7c49be741facede8bc8a9f70d (patch) | |
tree | 0b8723ffa681a39d25bb130f1a114f58567950e1 /bin | |
parent | c49ba0490840ba3f27fb6874df32c4559c904923 (diff) |
bin: add Makefile
Diffstat (limited to 'bin')
-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..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 |