aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--test/Makefile5
2 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a9c1c55..402dc39 100644
--- a/Makefile
+++ b/Makefile
@@ -28,6 +28,7 @@ uninstall:
lint:
shellcheck -s bash $(PROG).bash
+ $(MAKE) -C test lint
test:
$(MAKE) -C test
diff --git a/test/Makefile b/test/Makefile
index deb6033..027feca 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -61,5 +61,8 @@ aggregate-results:
echo "$$f"; \
done | '$(SHELL_PATH_SQ)' '$(AGGREGATE_SCRIPT)'
-.PHONY: all test prove $(T) pre-clean clean
+lint:
+ shellcheck -s bash setup.sh
+
+.PHONY: all test prove $(T) pre-clean clean lint
.PHONY: aggregate-results-and-cleanup aggregate-results