diff options
Diffstat (limited to 'tests/tr')
-rw-r--r-- | tests/tr/Makefile | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/tests/tr/Makefile b/tests/tr/Makefile index e3dd9be08..c252f5786 100644 --- a/tests/tr/Makefile +++ b/tests/tr/Makefile @@ -1,16 +1,19 @@ +.PHONY: all all: tr-tests ./tr-tests -.PHONY: all tr-tests: main build-script test.data.pl - ./main test.data.pl > .tmp-$@ - mv .tmp-$@ $@ + ./main test.data.pl > $@.n + mv $@.n $@ chmod 755 $@ -clean: +.PHONY: distclean +distclean: rm -f t[0-9]*.out + .PHONY: clean +clean: distclean -realclean: - rm -f tr-tests t[0-9]*.in t[0-9]*.expected .PHONY: realclean +realclean: clean + rm -f tr-tests t[0-9]*.in t[0-9]*.expected |