Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / hosts.test
bloba4d16196b3f0ca6bae15efb8f44118f3ef66bbcf
1 #! /bin/sh
2 # Copyright (C) 2004 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 automake correctly recognizes presence of
18 # AC_CANONICAL_(BUILD|HOST|SYSTEM|TARGET), and creates config.* in all
19 # those cases.
20 # From Norman Gray.
22 . ./defs || Exit 1
24 set -e
26 : >Makefile.am
28 $ACLOCAL
29 $AUTOMAKE --add-missing
30 test ! -f config.guess
31 test ! -f config.sub
33 # Test all four of the AC_CANONICAL_* targets, including _SYSTEM, which is
34 # supported but deprecated by autoconf.
35 for macro in AC_CANONICAL_BUILD AC_CANONICAL_HOST \
36 AC_CANONICAL_SYSTEM AC_CANONICAL_TARGET
38 rm -rf autom4te.cache config.sub config.guess
40 cat >configure.in<<EOF
41 AC_INIT([hosts], [1.0])
42 $macro
43 AM_INIT_AUTOMAKE
44 AC_CONFIG_FILES([Makefile])
45 EOF
47 $ACLOCAL
48 $AUTOMAKE --add-missing
50 # Show the files which were installed
53 test -f config.guess
54 test -f config.sub
55 done