doc: update Vala documentation
[automake.git] / t / txinfo-info-in-srcdir.sh
blob5273874a091e1de9096c245b3f1c156a95e3eced
1 #! /bin/sh
2 # Copyright (C) 2002-2024 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 2, 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 <https://www.gnu.org/licenses/>.
17 # Check that info files are normally built in $(srcdir),
18 # not in $(builddir).
20 required='makeinfo tex texi2dvi'
21 . test-init.sh
23 cat >> configure.ac << 'END'
24 AC_OUTPUT
25 END
27 cat > Makefile.am << 'END'
28 info_TEXINFOS = main.texi
29 END
31 cat > main.texi << 'END'
32 \input texinfo
33 @setfilename main.info
34 @settitle main
35 @node Top
36 Hello walls.
37 @include version.texi
38 @bye
39 END
41 $ACLOCAL
42 $AUTOMAKE --add-missing
43 $AUTOCONF
45 mkdir build
46 cd build
47 ../configure
48 $MAKE
49 test -f ../main.info
50 test ! -e main.info
51 test -f ../stamp-vti
52 test ! -e stamp-vti
53 test -f ../version.texi
54 test ! -e version.texi
56 cd ..
57 rm -rf build make.info* stamp-vti version.texi
58 ./configure
59 $MAKE
60 test -f main.info
62 # Make sure stamp-vti is older that version.texi.
63 # (A common situation in a real tree.)
64 # This is needed to test the "subtle" issue described below.
65 test -f stamp-vti
66 test -f version.texi
67 $sleep
68 touch stamp-vti
70 $MAKE distclean
71 test -f stamp-vti
72 test -f version.texi
74 mkdir build
75 cd build
76 ../configure
77 $MAKE
78 # main.info should not be rebuilt in the current directory, since
79 # it's up-to-date in $(srcdir).
80 # This can be caused by a subtle issue related to VPATH handling
81 # of version.texi (see also the comment in texi-vers.am): because
82 # stamp-vti is newer than version.texi, the 'version.texi: stamp-vti'
83 # rule is always triggered. Still that's not a reason for 'make'
84 # to think 'version.texi' has been created...
85 test ! -e main.info
86 $MAKE dvi
87 test -f main.dvi
89 $MAKE distcheck