doc: update Vala documentation
[automake.git] / t / txinfo-many-output-formats-vpath.sh
blob7ad492cf88da0d9168bfae1dd2a77cdc93b05b2e
1 #! /bin/sh
2 # Copyright (C) 2003-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 # Test support for building HTML documentation, and the many
18 # install-DOC flavors, in VPATH builds.
19 # Keep in sync with sister test 'txinfo-many-output-formats.sh'.
20 # FIXME: in the long term, the best thing to do is probably to convert
21 # FIXME: this test and that sister test to TAP, and merge them.
23 required='makeinfo tex texi2dvi'
24 . test-init.sh
26 cat >>configure.ac <<\EOF
27 AC_CONFIG_FILES([rec/Makefile])
29 # At the time of writing, Autoconf does not supplies any of these
30 # definitions (and those below are purposely not those of the standard).
31 AC_SUBST([dvidir], ['${datadir}/${PACKAGE}/dvi'])
32 AC_SUBST([htmldir], ['${datadir}/${PACKAGE}/html'])
33 AC_SUBST([pdfdir], ['${datadir}/${PACKAGE}/pdf'])
34 AC_SUBST([psdir], ['${datadir}/${PACKAGE}/ps'])
36 AC_OUTPUT
37 EOF
39 cat > Makefile.am << 'END'
40 SUBDIRS = rec
41 info_TEXINFOS = main.texi sub/main2.texi
42 END
44 cat > main.texi << 'END'
45 \input texinfo
46 @setfilename main.info
47 @settitle main
48 @node Top
49 Hello walls.
50 @bye
51 END
53 mkdir sub
54 cat > sub/main2.texi << 'END'
55 \input texinfo
56 @setfilename main2.info
57 @settitle main2
58 @node Top
59 Hello walls.
60 @bye
61 END
63 mkdir rec
64 cat > rec/main3.texi << 'END'
65 \input texinfo
66 @setfilename main3.info
67 @settitle main3
68 @node Top
69 Hello walls.
70 @bye
71 END
73 cat > rec/Makefile.am << 'END'
74 info_TEXINFOS = main3.texi
76 install-pdf-local:
77 @$(MKDIR_P) "$(pdfdir)"
78 : > "$(pdfdir)/hello"
79 uninstall-local:
80 rm -f "$(pdfdir)/hello"
82 check-local: ps pdf dvi html # For "make distcheck".
83 END
85 $ACLOCAL
86 $AUTOMAKE --add-missing
87 $AUTOCONF
89 # To simplify syncing with sister test 'txinfo-many-output-formats.sh'
90 srcdir=..
92 if test $srcdir = ..; then
93 mkdir build
94 cd build
97 $srcdir/configure --prefix="$(pwd)"
99 $MAKE
101 $sleep
102 # Test production of split-per-node HTML.
103 $MAKE html
104 test -d main.html
105 test -d sub/main2.html
106 test -d rec/main3.html
108 # Rebuilding main.html should cause its timestamp to be updated.
109 is_newest main.html $srcdir/main.texi
110 $sleep
111 touch $srcdir/main.texi
112 $MAKE html
113 is_newest main.html $srcdir/main.texi
115 $MAKE clean
116 test ! -e main.html
117 test ! -e sub/main2.html
118 test ! -e rec/main3.html
120 # Test production of a single HTML file.
121 run_make MAKEINFOFLAGS=--no-split html
122 test -f main.html
123 test -f sub/main2.html
124 test -f rec/main3.html
125 $MAKE clean
126 test ! -e main.html
127 test ! -e sub/main2.html
128 test ! -e rec/main3.html
130 # Make sure AM_MAKEINFOHTMLFLAGS is supported, and override AM_MAKEINFO.
132 cp $srcdir/Makefile.am $srcdir/Makefile.sav
133 cat >> $srcdir/Makefile.am <<'EOF'
134 AM_MAKEINFOHTMLFLAGS = --no-headers --no-split
135 AM_MAKEINFOFLAGS = --unsupported-option
137 (cd $srcdir && $AUTOMAKE)
138 ./config.status Makefile
140 $MAKE html
141 test -f main.html
142 test -f sub/main2.html
143 test -d rec/main3.html
144 $MAKE clean
145 test ! -e main.html
146 test ! -e sub/main2.html
147 test ! -e rec/main3.html
149 $MAKE install-html
150 test -f share/$me/html/main.html
151 test -f share/$me/html/main2.html
152 test -d share/$me/html/main3.html
153 $MAKE uninstall
154 test ! -e share/$me/html/main.html
155 test ! -e share/$me/html/main2.html
156 test ! -e share/$me/html/main3.html
158 # Restore the makefile without a broken AM_MAKEINFOFLAGS definition.
159 # This must happen before processing any non-html targets. See
160 # https://bugs.gnu.org/30172
161 cp -f $srcdir/Makefile.sav $srcdir/Makefile.am
162 (cd $srcdir && $AUTOMAKE)
163 ./config.status Makefile
165 $MAKE dvi
166 test -f main.dvi
167 test -f sub/main2.dvi
168 test -f rec/main3.dvi
169 $MAKE clean
170 test ! -e main.dvi
171 test ! -e sub/main2.dvi
172 test ! -e rec/main3.dvi
174 $MAKE install-dvi
175 test -f share/$me/dvi/main.dvi
176 test -f share/$me/dvi/main2.dvi
177 test -f share/$me/dvi/main3.dvi
178 $MAKE uninstall
179 test ! -e share/$me/dvi/main.dvi
180 test ! -e share/$me/dvi/main2.dvi
181 test ! -e share/$me/dvi/main3.dvi
183 dvips --help || skip_ "dvips is missing"
185 $MAKE install-ps
186 test -f share/$me/ps/main.ps
187 test -f share/$me/ps/main2.ps
188 test -f share/$me/ps/main3.ps
189 $MAKE uninstall
190 test ! -e share/$me/ps/main.ps
191 test ! -e share/$me/ps/main2.ps
192 test ! -e share/$me/ps/main3.ps
194 pdfetex --help || pdftex --help \
195 || skip_ "pdftex and pdfetex are both missing"
197 $MAKE install-pdf
198 test -f share/$me/pdf/main.pdf
199 test -f share/$me/pdf/main2.pdf
200 test -f share/$me/pdf/main3.pdf
201 test -f share/$me/pdf/hello
202 $MAKE uninstall
203 test ! -e share/$me/pdf/main.pdf
204 test ! -e share/$me/pdf/main2.pdf
205 test ! -e share/$me/pdf/main3.pdf
206 test ! -e share/$me/pdf/hello
208 using_gmake || $MAKE Makefile
209 $MAKE distcheck