mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-09 13:51:38 +02:00
35 lines
758 B
Makefile
35 lines
758 B
Makefile
## Process this file with automake to produce Makefile.in.
|
|
|
|
AUTOMAKE_OPTIONS = 1.1c
|
|
|
|
x = cut
|
|
t = t1 t2 t3 t4 t5 t6 t7 t8 t9 tA tB tC tD ta tb tc td te tf tg th \
|
|
ti tj tk tl tm tn to tp tq tr ts tt tu tv tw tx ty tz
|
|
|
|
in = $(t:=.in)
|
|
exp = $(t:=.exp)
|
|
out = $(t:=.out)
|
|
err = $(t:=.err)
|
|
|
|
EXTRA_DIST = build-script.pl Test.pm $x-tests $(in) $(exp)
|
|
noinst_SCRIPTS = $x-tests build-script
|
|
|
|
PERL = @PERL@
|
|
editpl = sed -e 's,@''PERL''@,$(PERL),g' -e 's,@''srcdir''@,@srcdir@,g'
|
|
|
|
TESTS = $x-tests
|
|
|
|
$x-tests: @MAINT@build-script Test.pm
|
|
./build-script ../../src/$x > $@.n
|
|
mv $@.n $@
|
|
chmod 755 $@
|
|
|
|
SUFFIXES = .pl
|
|
|
|
.pl:
|
|
rm -f $@ $@.tmp
|
|
$(editpl) $< > $@.tmp && chmod +x $@.tmp && mv $@.tmp $@
|
|
|
|
MAINTAINERCLEANFILES = $x-tests $(in) $(exp)
|
|
CLEANFILES = $(out) $(err)
|