diff options
Diffstat (limited to 'tests/tr/Makefile')
-rw-r--r-- | tests/tr/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/tr/Makefile b/tests/tr/Makefile new file mode 100644 index 000000000..e3dd9be08 --- /dev/null +++ b/tests/tr/Makefile @@ -0,0 +1,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 |