Tag
dnl Process this file with autoconf to produce a configure script.
AC_INIT(automake.in)
PACKAGE=automake
AC_SUBST(PACKAGE)
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
VERSION=1.1a
AC_SUBST(VERSION)
AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
AC_PROG_MAKE_SET
AC_ARG_PROGRAM
fp_PROG_INSTALL
AC_PATH_PROG(PERL, perl)
if test -z "$PERL"; then
echo "fatal error: perl not found" 1>&2
exit 1
fi
AC_OUTPUT([Makefile automake aclocal m4/Makefile tests/Makefile],
[chmod +x automake aclocal])