doc: update Vala documentation
[automake.git] / t / txinfo-no-clutter.sh
blob62bb725b0ac18f0a145930b8ce0fbab2cec83656
1 #! /bin/sh
2 # Copyright (C) 2012-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 # The info, html, pdf, ps and dvi targets shouldn't let clutter in the
18 # build directory. Related to automake bug#11146.
20 required='makeinfo tex texi2dvi dvips'
21 . test-init.sh
23 cat >> configure.ac <<'END'
24 AC_CONFIG_FILES([sub/Makefile])
25 AC_OUTPUT
26 END
28 cat > Makefile.am << 'END'
29 all-local: ps pdf dvi html # For "make distcheck".
30 info_TEXINFOS = foo.texi doc/bar.texi baz.texi
31 SUBDIRS = sub
33 # Tell GNU make not to parallelize these, because they
34 # have overlap between explicit and intermediate .dvi files.
35 .NOTPARALLEL:
36 END
38 mkdir sub doc
40 cat > sub/Makefile.am << 'END'
41 all-local: ps pdf dvi html # For "make distcheck".
42 info_TEXINFOS = baz.texi
43 END
45 cat > foo.texi << 'END'
46 \input texinfo
47 @setfilename foo.info
48 @settitle foo
49 @node Top
50 Hello walls.
51 @include version.texi
52 @bye
53 END
55 cat > doc/bar.texi << 'END'
56 \input texinfo
57 @setfilename bar.info
58 @settitle bar
59 @node Top
60 Hello walls.
61 @include version2.texi
62 @bye
63 END
65 cat > baz.texi << 'END'
66 \input texinfo
67 @setfilename baz.info
68 @settitle baz
69 @defindex au
70 @defindex sa
71 @defindex sb
72 @node Top
73 Hello walls.
74 @cindex foo
75 foo
76 @pindex bar
77 bar
78 @auindex baz
79 baz
80 @saindex sa
82 @sbindex sb
84 @bye
85 END
87 cp baz.texi sub
89 $ACLOCAL
90 $AUTOMAKE --add-missing
91 $AUTOCONF
93 ./configure
95 # Try one by one, to ensure later targets don't involuntarily
96 # clean up potential cruft left by earlier ones.
97 for fmt in info pdf ps dvi html all; do
98 $MAKE $fmt
99 # For debugging.
100 ls -l . doc sub
101 # Sanity check.
102 case $fmt in
103 html)
104 test -e foo.html
105 test -e doc/bar.html
106 test -e baz.html
107 test -e sub/baz.html
109 all)
110 for x in info pdf ps dvi; do
111 test -f foo.$x
112 test -f doc/bar.$x
113 test -f baz.$x
114 test -f sub/baz.$x
115 done
116 test -e foo.html
117 test -e doc/bar.html
118 test -e baz.html
119 test -e sub/baz.html
122 test -f foo.$fmt
123 test -f doc/bar.$fmt
124 test -f baz.$fmt
125 test -f sub/baz.$fmt
127 esac
128 # Real test.
129 ls -d foo* baz* sub/baz* doc/bar* > lst
130 basename_rx='(foo|doc/bar|baz|sub/baz)'
131 case $fmt in
132 pdf) extension_rx="(texi|pdf|t2p)";;
133 dvi) extension_rx="(texi|dvi|t2d)";;
134 ps) extension_rx="(texi|ps|dvi|t2d)";;
135 info) extension_rx="(texi|info)";;
136 html) extension_rx="(texi|html)";;
137 all) extension_rx="(texi|html|info|pdf|ps|dvi|t2[pd])";;
138 *) fatal_ "unreachable code reached";;
139 esac
140 $EGREP -v "^$basename_rx\.$extension_rx$" lst && exit 1
141 # Cleanup for checks on the next format.
142 case $fmt in
143 info) rm -f *.info doc/*.info sub/*.info;;
144 *) $MAKE clean;;
145 esac
146 done
148 $MAKE distcheck