aboutsummaryrefslogtreecommitdiffstats
path: root/sandbox/t/Makefile
blob: 84b989dcd19ad7e5a343a40b42c82656bdab07c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
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