Merge branch 'maint'
[platform/upstream/automake.git] / t / silent8.sh
1 #!/bin/sh
2 # Copyright (C) 2009-2012 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 texinfo rules in silent-rules mode.
18
19 required='makeinfo tex texi2dvi dvips'
20 . ./defs || exit 1
21
22 echo AC_OUTPUT >> configure.ac
23
24 cat > Makefile.am <<'EOF'
25 info_TEXINFOS = foo.texi
26 EOF
27
28 cat > foo.texi <<'EOF'
29 \input texinfo
30 @c %**start of header
31 @setfilename foo.info
32 @settitle foo manual
33 @c %**end of header
34 @bye
35 EOF
36
37 $ACLOCAL
38 $AUTOMAKE --add-missing
39 $AUTOCONF
40
41 ./configure --disable-silent-rules
42
43 # Make sure that all labels work in silent-mode.
44 $MAKE V=0 dvi html info ps pdf >stdout || { cat stdout; exit 1; }
45 cat stdout
46 grep 'DVIPS    foo.ps' stdout || exit 1
47 grep 'MAKEINFO foo.html' stdout || exit 1
48 # NetBSD make will print './foo.info' instead of 'foo.info'.
49 grep 'MAKEINFO.*foo.info' stdout || exit 1
50 grep 'TEXI2DVI foo.dvi' stdout || exit 1
51 grep 'TEXI2PDF foo.pdf' stdout || exit 1
52
53 # Now make sure the labels don't appear in verbose mode.
54 $MAKE clean || exit 1
55 $MAKE V=1 dvi html info ps pdf >stdout || { cat stdout; exit 1; }
56 cat stdout
57 grep 'DVIPS    foo.ps' stdout && exit 1
58 grep 'MAKEINFO foo.html' stdout && exit 1
59 grep 'MAKEINFO.*foo.info' stdout && exit 1
60 grep 'TEXI2DVI foo.dvi' stdout && exit 1
61 grep 'TEXI2PDF foo.pdf' stdout && exit 1
62
63 :