Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / txinfo23.test
1 #! /bin/sh
2 # Copyright (C) 2002, 2003, 2007, 2011 Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
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/>.
16
17 # Check that info files are built in builddir when needed.
18 # Test with subdir Texinfo.
19 # (Similar to txinfo13.test, plus DISTCLEANFILES.)
20 # (See also txinfo24.test and txinfo25.test)
21
22 required='makeinfo tex texi2dvi-o'
23 . ./defs || Exit 1
24
25 set -e
26
27 cat >> configure.in << 'END'
28 AC_OUTPUT
29 END
30
31 cat > Makefile.am << 'END'
32 DISTCLEANFILES = subdir/*.info*
33 info_TEXINFOS = subdir/main.texi
34 subdir_main_TEXINFOS = subdir/inc.texi
35
36 installcheck-local:
37         test -f "$(infodir)/main.info"
38 END
39
40 mkdir subdir
41
42 cat > subdir/main.texi << 'END'
43 \input texinfo
44 @setfilename main.info
45 @settitle main
46 @node Top
47 Hello walls.
48 @include version.texi
49 @include inc.texi
50 @bye
51 END
52
53 cat > subdir/inc.texi << 'END'
54 I'm included.
55 END
56
57 $ACLOCAL
58 $AUTOMAKE --add-missing
59 $AUTOCONF
60
61 mkdir build
62 cd build
63 ../configure
64 $MAKE distcheck
65 test -f subdir/main.info
66 test ! -f ../subdir/main.info
67
68 :