Implement conditional AC_CONFIG_FILES: AM_COND_IF.
[automake/ericb.git] / tests / version7.test
blob0fec21045874af72586ca6940c99678190a6948f
1 #! /bin/sh
2 # Copyright (C) 2002 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 # Test for a special setup where the package's version isn't defined
18 # in configure.in. We want GNU Make for this test (part of the test
19 # is to make sure Makefile.ins get rebuilt when a m4_included file
20 # changes -- we don't support this feature on non-GNU Makes).
22 required='makeinfo tex GNUmake'
23 . ./defs || exit 1
25 set -e
27 cat >configure.in <<'END'
28 m4_include([version.m4])
29 AC_INIT([version7], [THE_VERSION])
30 AM_INIT_AUTOMAKE
31 AC_CONFIG_FILES([Makefile])
32 AC_OUTPUT
33 END
35 echo 'm4_define([THE_VERSION], [2.718])' > version.m4
37 cat > Makefile.am << 'END'
38 info_TEXINFOS = zardoz.texi
40 check:
41 test -f $(srcdir)/version.m4
42 END
44 cat > zardoz.texi << 'END'
45 \input texinfo
46 @setfilename zardoz.info
47 @settitle Zardoz
48 @node Top
49 Hello walls.
50 @include version.texi
51 @bye
52 END
54 $ACLOCAL
55 $AUTOCONF
56 $AUTOMAKE --add-missing
57 ./configure --version | grep '2\.718'
58 ./configure
59 $MAKE
60 grep '2\.718' version.texi
63 $sleep
64 echo 'm4_define([THE_VERSION], [3.141])' > version.m4
65 $MAKE distcheck
66 ./configure --version | grep '3\.141'
67 grep '3\.141' version.texi