aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Rinn <rinni@inventati.org>2018-03-03 23:06:01 +0100
committerTad Fisher <tadfisher@gmail.com>2018-03-03 14:06:01 -0800
commitfc8a147156ceedf862d92987e2f795ea4e22513f (patch)
treedf528053226eb1e01bfbbe8b01d9c42345e1e439
parentc6da46e99c679eaad18772ce2693811e918ae57b (diff)
Add target 'test' to Makefile (#53)
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 537a699..a9c1c55 100644
--- a/Makefile
+++ b/Makefile
@@ -29,4 +29,7 @@ uninstall:
lint:
shellcheck -s bash $(PROG).bash
-.PHONY: install uninstall lint
+test:
+ $(MAKE) -C test
+
+.PHONY: install uninstall lint test