Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / acloca13.test
blob09c3de173d491de6f4b96707a7132581bb884d8a
1 #! /bin/sh
2 # Copyright (C) 2003, 2005 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 # Make sure changes to m4_included files also cause aclocal.m4 to change.
19 . ./defs || Exit 1
21 set -e
23 cat >> configure.in << 'END'
24 m4_include([somefile.m4])
25 AC_OUTPUT
26 END
28 cat >Makefile.am <<'EOF'
29 check-local:
30 test -f "$(srcdir)/somefile.m4"
31 test -f "$(srcdir)/m4/version1.m4"
32 test -f "$(srcdir)/m4/otherfile.m4"
33 EOF
35 mkdir m4
37 echo MACRO1 >somefile.m4
38 echo 'AC_PREREQ([2.58])' >m4/otherfile.m4
40 cat >m4/version1.m4 <<EOF
41 AC_DEFUN([MACRO1])
42 AC_DEFUN([MACRO2])
43 m4_sinclude(m4/otherfile.m4)
44 EOF
46 cat >m4/version2.m4 <<EOF
47 AC_DEFUN([MACRO1])
48 EOF
50 $ACLOCAL -I m4
51 grep version2 aclocal.m4
52 grep version1 aclocal.m4 && Exit 1
54 $sleep
55 echo MACRO2 >somefile.m4
57 $ACLOCAL -I m4
58 grep version2 aclocal.m4 && Exit 1
59 grep version1 aclocal.m4
61 $sleep
62 # aclocal.m4 should change if we touch otherfile.m4
63 touch m4/otherfile.m4
64 $sleep
65 $ACLOCAL -I m4
66 test `ls -1t aclocal.m4 m4/otherfile.m4 | sed 1q` = aclocal.m4
68 $AUTOCONF
69 $AUTOMAKE
70 ./configure
71 $MAKE distcheck