Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / txinfo16.test
bloba82cb2714f1559d08d485871b4d3aef14aa431e8
1 #! /bin/sh
2 # Copyright (C) 2002, 2003, 2008 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 # Check that info files are not built in $(srcdir).
19 required='makeinfo tex texi2dvi'
20 . ./defs || Exit 1
22 set -e
24 echo AC_OUTPUT >> configure.in
26 cat > Makefile.am << 'END'
27 info_TEXINFOS = main.texi
28 END
30 cat > main.texi << 'END'
31 \input texinfo
32 @setfilename main.info
33 @settitle main
34 @node Top
35 Hello walls.
36 @include version.texi
37 @bye
38 END
40 $ACLOCAL
41 $AUTOMAKE --add-missing
42 $AUTOCONF
44 mkdir build
45 cd build
46 ../configure
47 $MAKE
48 test -f ../main.info
49 test ! -f main.info
50 test -f ../stamp-vti
51 test ! -f stamp-vti
52 test -f ../version.texi
53 test ! -f version.texi
55 cd ..
56 rm -rf build make.info* stamp-vti version.texi
57 ./configure
58 $MAKE
59 test -f main.info
61 # Make sure stamp-vti is older that version.texi.
62 # (A common situation in a real tree.)
63 # This is needed to test the "subtle" issue described below.
64 test -f stamp-vti
65 test -f version.texi
66 $sleep
67 touch stamp-vti
69 $MAKE distclean
70 test -f stamp-vti
71 test -f version.texi
73 mkdir build
74 cd build
75 ../configure
76 $MAKE
77 # main.info should not be rebuilt in the current directory, since
78 # it's up-to-date in $(srcdir).
79 # This can be caused by a subtle issue related to VPATH handling
80 # of version.texi (see also the comment in texi-vers.am): because
81 # stamp-vti is newer than version.texi, the `version.texi: stamp-vti'
82 # rule is always triggered. Still that's not a reason for `make'
83 # to think `version.texi' has been created...
84 test ! -f main.info
85 $MAKE dvi
86 test -f main.dvi
88 $MAKE distcheck