summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-08-17 18:50:54 +0000
committerJim Meyering <jim@meyering.net>1996-08-17 18:50:54 +0000
commitb32398d02c47f78682ccf747639d1be5e70a9ff9 (patch)
tree0745a4755732800b318c0c78bb702bcdc06efd9a /tests
parentea15a1e0e5610f2b42da6db710539bc34c30de90 (diff)
downloadcoreutils-b32398d02c47f78682ccf747639d1be5e70a9ff9.tar.xz
(EXTRA_DIST): Distribute tests: inputs and expected outputs.
Diffstat (limited to 'tests')
-rw-r--r--tests/tr/Makefile.am17
1 files changed, 14 insertions, 3 deletions
diff --git a/tests/tr/Makefile.am b/tests/tr/Makefile.am
index e86e79a9e..953ca7348 100644
--- a/tests/tr/Makefile.am
+++ b/tests/tr/Makefile.am
@@ -2,7 +2,18 @@
AUTOMAKE_OPTIONS = 1.0
-EXTRA_DIST = build-script.pl Trtest.pm
+in = \
+ t1.in t2.in t3.in t4.in t5.in t6.in t7.in t8.in t9.in tA.in tB.in \
+ tC.in tD.in tE.in tF.in tG.in tH.in tI.in tR0.0.in tR0.1.in tR1.0.in \
+ tR1.1.in tR2.in tR3.in tR4.in tR5.in tR6.in ta.in tb.in tc.in td.in \
+ te.in tf.in tg.in th.in ti.in tj.in tk.in tl.in tm.in tn.in to.in \
+ tp.in tq.in tr.in ts.in tt.in tu.in tv.in tw.in tx.in ty.in tz.in
+
+exp = $(in:.in=.exp)
+out = $(in:.in=.out)
+err = $(in:.in=.err)
+
+EXTRA_DIST = build-script.pl Trtest.pm $(in) $(exp)
noinst_SCRIPTS = tr-tests
PERL = @PERL@
@@ -21,5 +32,5 @@ SUFFIXES = .pl
rm -f $@ $@.tmp
$(editpl) $< > $@.tmp && chmod +x $@.tmp && mv $@.tmp $@
-MAINTAINERCLEANFILES = tr-tests t*.in t*.exp
-CLEANFILES = t*.out t*.err
+MAINTAINERCLEANFILES = tr-tests $(in) $(exp)
+CLEANFILES = $(out) $(err)