# generate tests from test generator python2 programs

S = $(wildcard *.py)
T = $(patsubst %.py,%.test,$(S))

default: $(T)

%.test: %.py
	python2 $< >$@

