Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / aclocal4.test
blobd46edc4c24e777e1f283deba9e05925ac8f00c2d
1 #! /bin/sh
2 # Copyright (C) 2003 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 dependencies on aclocal.m4 are set correctly.
18 # Report from Jim Meyering.
20 # We need GNU make for the `rebuild rules' to be triggered.
21 required=GNUmake
22 . ./defs || Exit 1
24 set -e
26 cat >>configure.in <<EOF
27 AC_PROG_RANLIB
28 AC_PROG_CC
29 MY_MACRO
30 AC_CONFIG_FILES([lib/Makefile])
31 AC_OUTPUT
32 EOF
34 mkdir m4
35 cat >m4/mymacro.m4 <<EOF
36 AC_DEFUN([MY_MACRO], [])
37 EOF
39 mkdir lib
40 : > lib/foo.c
41 : > lib/bar.c
42 cat >lib/Makefile.am <<'EOF'
43 noinst_LIBRARIES = liberi.a
44 liberi_a_SOURCES = bar.c
45 liberi_a_LIBADD = $(LIBOBJS)
46 EOF
48 cat >Makefile.am <<'EOF'
49 SUBDIRS = lib
50 EXTRA_DIST = m4/mymacro.m4
51 ACLOCAL_AMFLAGS = -I m4
52 check-foo: distdir
53 test -f $(distdir)/lib/foo.c
54 test -f $(distdir)/lib/bar.c
56 check-not-foo: distdir
57 test ! -f $(distdir)/lib/foo.c
58 test -f $(distdir)/lib/bar.c
59 EOF
61 $ACLOCAL -I m4
62 $AUTOCONF
63 $AUTOMAKE
64 ./configure
65 $MAKE check-not-foo
67 # Update one of the macros. This should cause ./configure, Makefile.in,
68 # Makefile, lib/Makefile.in, and lib/Makfile to be updated. This assumes
69 # GNU make.
71 cat >m4/mymacro.m4 <<'EOF'
72 AC_DEFUN([MY_MACRO], [AC_LIBOBJ([foo])])
73 EOF
75 $MAKE check-foo