summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f755784..0f6d7c2 100644
--- a/Makefile
+++ b/Makefile
@@ -44,6 +44,9 @@ man/%: man/%.txt Makefile
check: $(BINPROGS)
@for f in $(BINPROGS); do bash -O extglob -n $$f; done
+lint: $(BINPROGS)
+ @for f in $(BINPROGS); do shellcheck $$f; done
+
clean:
$(RM) $(BINPROGS) $(MANPAGES)