Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / make.test
blob06a18132937ebf3c85058e140d35dba137d1db6f
1 #! /bin/sh
2 # Copyright (C) 2001, 2002 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # Test to make sure `make' check works.
18 # From Ralf Corsepius.
20 required=GNUmake
21 . ./defs || Exit 1
23 cat > configure.in << 'END'
24 AC_INIT(Makefile.am)
25 AM_INIT_AUTOMAKE(foo,0,no)
26 AM_MAKE_INCLUDE
27 AC_OUTPUT(Makefile)
28 END
30 : > Makefile.am
32 set -e
34 $ACLOCAL
35 $AUTOCONF
36 $AUTOMAKE
38 export ACLOCAL
39 export AUTOCONF
40 export AUTOMAKE
42 # Do the test twice -- once with make and once with make -w.
43 # This tests for a bug reported by Rainer Orth (see PR 175).
45 save="$MAKE"
46 for flag in '' -w; do
47 MAKE="$save $flag" ./configure
49 $FGREP 'am__include = include' Makefile
51 touch configure.in
52 $MAKE $flag
54 $FGREP 'am__include = include' Makefile
56 rm -f config.cache
57 done
59 Exit 0