diff options
author | Jim Meyering <jim@meyering.net> | 1993-03-02 14:13:10 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1993-03-02 14:13:10 +0000 |
commit | 978afa51c0763673e68706847fedfcf77c434843 (patch) | |
tree | 92c6ccf134adbf82bc1ccc094f8e33a4df1ac836 /tests/tr | |
parent | d71cb4d9c702ff4bf106504f5737660123e08f33 (diff) | |
download | coreutils-978afa51c0763673e68706847fedfcf77c434843.tar.xz |
.
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 |