Hash :
7a0defee
Author :
Date :
2001-02-21T08:35:51
* dist-vars.am: Remove, merge into... * distdir.am: this. * automake.in (dirname, basename, backname): Move at the top of the file so that prototypes are checked, Use them without `&'. (&handle_dist): Adjust.
#! /bin/sh
# Test for PR 34.
. $srcdir/defs || exit 1
cat > configure.in << 'END'
AM_INIT_AUTOMAKE(nonesuch, nonesuch)
AC_ARG_PROGRAM
AC_PROG_INSTALL
AM_CONFIG_HEADER(include/config.h)
AC_PROG_MAKE_SET
AC_PROG_CC
AC_OUTPUT(Makefile include/Makefile)
END
cat > Makefile.am << 'END'
bin_PROGRAMS = foo
foo_SOURCES = foo.c
END
: > foo.c
: > acconfig.h
mkdir include
: > include/Makefile.am
: > include/config.h.in
$AUTOMAKE || exit 1
egrep '^DEFS =.* -I(\.|\$\(top_builddir\))/include' Makefile.in