news: describe recently-fixed bug in vala support
[platform/upstream/automake.git] / tests / aclocal4.test
1 #! /bin/sh
2 # Copyright (C) 2003  Free Software Foundation, Inc.
3 #
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 2, or (at your option)
7 # any later version.
8 #
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.
13 #
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/>.
16
17 # Make sure dependencies on aclocal.m4 are set correctly.
18 # Report from Jim Meyering.
19
20 # We need GNU make for the `rebuild rules' to be triggered.
21 required=GNUmake
22 . ./defs || Exit 1
23
24 set -e
25
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
33
34 mkdir m4
35 cat >m4/mymacro.m4 <<EOF
36 AC_DEFUN([MY_MACRO], [])
37 EOF
38
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
47
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
55
56 check-not-foo: distdir
57         test ! -f $(distdir)/lib/foo.c
58         test -f $(distdir)/lib/bar.c
59 EOF
60
61 $ACLOCAL -I m4
62 $AUTOCONF
63 $AUTOMAKE
64 ./configure
65 $MAKE check-not-foo
66
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.
70
71 cat >m4/mymacro.m4 <<'EOF'
72 AC_DEFUN([MY_MACRO], [AC_LIBOBJ([foo])])
73 EOF
74
75 $MAKE check-foo