Better aclocal/AM_ support
[platform/upstream/automake.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(automake.in)
3
4 AM_INIT_AUTOMAKE(automake, 1.1b)
5
6 AC_PROG_MAKE_SET
7 AC_ARG_PROGRAM
8 AM_PROG_INSTALL
9
10 AC_PATH_PROG(PERL, perl)
11 if test -z "$PERL"; then
12    echo "fatal error: perl not found" 1>&2
13    exit 1
14 fi
15
16 AC_OUTPUT([Makefile automake aclocal m4/Makefile tests/Makefile],
17 [chmod +x automake aclocal])