diff options
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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) |