summaryrefslogtreecommitdiff
path: root/tests/tr/Makefile
blob: e3dd9be0804752db7f4df2ffc16d5290e644fe37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: tr-tests
	./tr-tests
.PHONY: all

tr-tests: main build-script test.data.pl
	./main test.data.pl > .tmp-$@
	mv .tmp-$@ $@
	chmod 755 $@

clean:
	rm -f t[0-9]*.out
.PHONY: clean

realclean:
	rm -f tr-tests t[0-9]*.in t[0-9]*.expected
.PHONY: realclean