* automake.texi (Macros): Document AM_PROG_AS.
[automake.git] / tests / confincl.test
blob4f155224cc3dade822b610cd109888a2deb70f45
1 #! /bin/sh
3 # This tests for a bug reported by Gord Matzigkeit.
4 # If config.h is not used, @CONFIG_INCLUDE_SPEC@ should not appear
5 # in Makefile.in.
7 . $srcdir/defs || exit 1
9 cat >> configure.in << 'END'
10 AC_PROG_CC
11 END
13 cat > Makefile.am << 'EOF'
14 bin_PROGRAMS = fred
15 EOF
17 $ACLOCAL || exit 1
18 $AUTOMAKE || exit 1
20 if grep '@CONFIG_INCLUDE_SPEC@' Makefile.in; then
21 exit 1
23 exit 0