Tag
Hash :
9c3af685
Author :
Date :
2001-04-11T04:17:21
2001-04-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> * m4/make.m4 (AM_MAKE_INCLUDE): Pass `-s' to make. * tests/Makefile.am (TESTS): Added make.test. * tests/make.test: New file.
#! /bin/sh
# Test to make sure `make' check works.
# From Ralf Corsepius.
. $srcdir/defs || exit 1
cat > configure.in << 'END'
AC_INIT(Makefile.am)
AM_INIT_AUTOMAKE(foo,0,no)
AM_MAKE_INCLUDE
AC_OUTPUT(Makefile)
END
: > Makefile.am
$needs_autoconf
set -e
$ACLOCAL
$AUTOCONF
$AUTOMAKE
export ACLOCAL
export AUTOCONF
export AUTOMAKE
./configure
touch configure.in
$MAKE
fgrep '_am_include = #' Makefile && exit 1
exit 0