1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00
This commit is contained in:
Jim Meyering
1993-03-02 14:13:10 +00:00
parent d71cb4d9c7
commit 978afa51c0

View 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
realclean:
rm -f tr-tests t[0-9]*.in t[0-9]*.expected
.PHONY: clean
clean: distclean
.PHONY: realclean
realclean: clean
rm -f tr-tests t[0-9]*.in t[0-9]*.expected