]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
.
authorJim Meyering <jim@meyering.net>
Tue, 2 Mar 1993 14:13:10 +0000 (14:13 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 2 Mar 1993 14:13:10 +0000 (14:13 +0000)
tests/tr/Makefile

index e3dd9be0804752db7f4df2ffc16d5290e644fe37..c252f57862b629528fa903ff9b05fbd46facd6b7 100644 (file)
@@ -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