Merge branch 'msvc' into maint
[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 AM_PROG_AR
29 AC_PROG_CC
30 MY_MACRO
31 AC_CONFIG_FILES([lib/Makefile])
32 AC_OUTPUT
33 EOF
34
35 mkdir m4
36 cat >m4/mymacro.m4 <<EOF
37 AC_DEFUN([MY_MACRO], [])
38 EOF
39
40 mkdir lib
41 : > lib/foo.c
42 : > lib/bar.c
43 cat >lib/Makefile.am <<'EOF'
44 noinst_LIBRARIES = liberi.a
45 liberi_a_SOURCES = bar.c
46 liberi_a_LIBADD = $(LIBOBJS)
47 EOF
48
49 cat >Makefile.am <<'EOF'
50 SUBDIRS = lib
51 EXTRA_DIST = m4/mymacro.m4
52 ACLOCAL_AMFLAGS = -I m4
53 check-foo: distdir
54         test -f $(distdir)/lib/foo.c
55         test -f $(distdir)/lib/bar.c
56
57 check-not-foo: distdir
58         test ! -f $(distdir)/lib/foo.c
59         test -f $(distdir)/lib/bar.c
60 EOF
61
62 $ACLOCAL -I m4
63 $AUTOCONF
64 $AUTOMAKE --add-missing
65 ./configure
66 $MAKE check-not-foo
67
68 # Update one of the macros.  This should cause ./configure, Makefile.in,
69 # Makefile, lib/Makefile.in, and lib/Makfile to be updated.  This assumes
70 # GNU make.
71
72 cat >m4/mymacro.m4 <<'EOF'
73 AC_DEFUN([MY_MACRO], [AC_LIBOBJ([foo])])
74 EOF
75
76 $MAKE check-foo