* aclocal.in (check_acinclude): Output `warning:' in front
[automake.git] / tests / txinfo21.test
blob44e7177af4214f0c1465810861d3d13771657ed6
1 #! /bin/sh
2 # Copyright (C) 2003 Free Software Foundation, Inc.
4 # This file is part of GNU Automake.
6 # GNU Automake is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
11 # GNU Automake is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Automake; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
21 # Test support for building HTML documentation.
23 required='makeinfo-html tex'
24 . ./defs || exit 1
26 set -e
28 cat >>configure.in <<EOF
29 AC_CONFIG_FILES([rec/Makefile])
30 AC_OUTPUT
31 EOF
33 cat > Makefile.am << 'END'
34 SUBDIRS = rec
35 info_TEXINFOS = main.texi sub/main.texi
36 END
38 cat > main.texi << 'END'
39 \input texinfo
40 @setfilename main.info
41 @settitle main
42 @node Top
43 Hello walls.
44 @bye
45 END
47 mkdir sub
48 mkdir rec
49 cp main.texi sub/main.texi
50 cp main.texi rec/main.texi
52 cat > rec/Makefile.am << 'END'
53 info_TEXINFOS = main.texi
54 END
56 $ACLOCAL
57 $AUTOMAKE --add-missing
58 $AUTOCONF
60 ./configure
62 $MAKE
64 # Test production of split-per-node HTML.
65 $MAKE html
66 test -d main.html
67 test -d sub/main.html
68 test -d rec/main.html
69 $MAKE clean
70 test ! -d main.html
71 test ! -d sub/main.html
72 test ! -d rec/main.html
74 # Test production of a single HTML file.
75 MAKEINFOFLAGS=--no-split $MAKE -e html
76 test -f main.html
77 test -f sub/main.html
78 test -f rec/main.html
79 $MAKE clean
80 test ! -f main.html
81 test ! -f sub/main.html
82 test ! -f rec/main.html
84 # Make sure AM_MAKEINFOHTMLFLAGS is supported, and override AM_MAKEINFO.
85 cat >>Makefile.am <<\EOF
86 AM_MAKEINFOHTMLFLAGS=--no-split
87 AM_MAKEINFOFLAGS=--unsupported-option
88 EOF
89 $AUTOMAKE
90 ./configure
91 $MAKE html
92 test -f main.html
93 test -f sub/main.html
94 test -d rec/main.html
95 $MAKE clean
96 test ! -f main.html
97 test ! -f sub/main.html
98 test ! -d rec/main.html