1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-05-16 07:21:21 +02:00
This commit is contained in:
Jim Meyering
1995-11-30 20:08:07 +00:00
parent f0f6a9c44e
commit cfbca54a71
2 changed files with 8 additions and 8 deletions

View File

@@ -1,8 +1,8 @@
.PHONY: all
all: sort-tests
./sort-tests
all: run-tests
./run-tests
sort-tests: main build-script test.data.pl
run-tests: main build-script test.data.pl
./main test.data.pl > $@.n
mv $@.n $@
chmod 755 $@
@@ -16,4 +16,4 @@ clean: distclean
.PHONY: realclean
realclean: clean
rm -f sort-tests t*.in t*.exp t*.err
rm -f run-tests t*.in t*.exp t*.err

View File

@@ -1,8 +1,8 @@
.PHONY: all
all: tr-tests
./tr-tests
all: run-tests
./run-tests
tr-tests: main build-script test.data.pl
run-tests: main build-script test.data.pl
./main test.data.pl > $@.n
mv $@.n $@
chmod 755 $@
@@ -16,4 +16,4 @@ clean: distclean
.PHONY: realclean
realclean: clean
rm -f tr-tests t*.in t*.exp t*.err
rm -f run-tests t*.in t*.exp t*.err