#! /bin/sh # Make sure that config* files are properly regenerated. . $srcdir/defs || exit 1 echo "FOO = foo" > Makefile.am set -e echo "$me: Not generated by aclocal..." echo "Hello, universe!" > aclocal.m4 $AUTOMAKE grep '^\$(ACLOCAL_M4):' Makefile.in && exit 1 echo "$me: Generated by aclocal..." $ACLOCAL $AUTOMAKE grep '^\$(ACLOCAL_M4):' Makefile.in exit 0