Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / acloca15.test
blob3cfcd1af57dcaf7b4992b0457bda8090e72af72d
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 # Make sure aclocal scans configure.in for macro definitions.
18 # PR/319.
20 . ./defs || Exit 1
22 set -e
24 # Start macros with AM_ because that causes aclocal to complain if it
25 # cannot find them.
27 cat >> configure.in << 'END'
28 m4_include([somedef.m4])
29 AC_DEFUN([AM_SOME_MACRO])
30 AC_DEFUN([AM_SOME_OTHER_MACRO])
31 AM_SOME_MACRO
32 AM_SOME_OTHER_MACRO
33 AM_MORE_MACRO
34 END
36 mkdir m4
37 echo 'AC_DEFUN([AM_SOME_MACRO])' > m4/some.m4
38 echo 'AC_DEFUN([AM_SOME_DEF])' > somedef.m4
39 echo 'AC_DEFUN([AM_MORE_MACRO], [AC_REQUIRE([AM_SOME_DEF])])' > m4/more.m4
41 $ACLOCAL -I m4
42 $FGREP AM_SOME_MACRO aclocal.m4 && Exit 1
43 $FGREP AM_MORE_MACRO aclocal.m4 && Exit 1
44 $FGREP 'm4_include([m4/more.m4])' aclocal.m4
45 test 1 = `grep m4_include aclocal.m4 | wc -l`