aboutsummaryrefslogtreecommitdiffstats
path: root/sandbox/t/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/t/Makefile')
-rw-r--r--sandbox/t/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/sandbox/t/Makefile b/sandbox/t/Makefile
new file mode 100644
index 0000000..84b989d
--- /dev/null
+++ b/sandbox/t/Makefile
@@ -0,0 +1,12 @@
+PROVE ?= prove
+POE_TEST_OPTS ?=
+
+T := t0000-basic.sh
+HELPERS := helpers/malloc
+
+all: test
+
+test: $(HELPERS)
+ $(PROVE) $(T) :: $(POE_TEST_OPTS)
+
+.PHONY: all test