* configure.in: Updated to 1.4d and released.
[automake.git] / tests / remake3.test
blobfe1ce80343a14de0a583d28aeba4a19ab60fef63
1 #! /bin/sh
3 # Make sure remaking rules work when there is no subdir Makefile.
5 . $srcdir/defs || exit 1
7 cat > configure.in << 'END'
8 AM_INIT_AUTOMAKE(nonesuch, nonesuch)
9 PACKAGE=nonesuch
10 VERSION=nonesuch
11 AC_ARG_PROGRAM
12 AC_PROG_MAKE_SET
13 AC_PROG_INSTALL
14 AC_OUTPUT(Makefile sub/foo)
15 END
17 : > Makefile.am
19 mkdir sub
20 : > sub/foo.in
22 $AUTOMAKE || exit 1
24 grep '^sub/foo' Makefile.in