#!/bin/sh

# Test for bug reported by Jerome Santini.
# If I put this line in my configure.in:
# AC_OUTPUT(Makefile src/Makefile tests/Makefile, echo timestamp > stamp-h)dnl
# automake is not happy:
# [ ... ]

. $srcdir/defs || exit 1

cat > configure.in << 'END'
AC_INIT
AM_INIT_AUTOMAKE(nonesuch, nonesuch)
AC_OUTPUT(Makefile, [true])
END

: > Makefile.am

$ACLOCAL || exit 1
$AUTOMAKE
