Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / txinfo22.test
blobf90a02ba710414b7160195182ed347fc82f3fabc
1 #! /bin/sh
2 # Copyright (C) 2003, 2004, 2007, 2008 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 3, 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 <http://www.gnu.org/licenses/>.
17 # Make sure the user can override TEXINFO_TEX.
18 # Report from Tom Tromey.
19 # Also make sure Automake ignores in-line comments when using variables,
20 # but preserve them in the output.
21 # Also make sure TEXINFO_TEX is not distributed.
23 required='makeinfo tex texi2dvi'
24 . ./defs || Exit 1
26 set -e
28 cat > configure.in << 'END'
29 AC_INIT([txinfo22], [1.0])
30 AC_CONFIG_AUX_DIR([aux1])
31 AM_INIT_AUTOMAKE
32 AC_CONFIG_FILES([Makefile])
33 AC_OUTPUT
34 END
36 # Use a slash in the comment, because automake takes the dirname
37 # of TEXINFO_TEX to compute $(am__TEXINFO_TEX_DIR)...
38 cat > Makefile.am << 'END'
39 TEXINFO_TEX = $(srcdir)/tex/texinfo.tex # some comment w/ a slash
40 info_TEXINFOS = main.texi
41 sure_it_exists:
42 test -f $(TEXINFO_TEX)
43 test -d "$(am__TEXINFO_TEX_DIR)"
44 sure_it_is_not_distributed: distdir
45 test ! -f $(distdir)/tex/texinfo.tex
46 END
48 cat > main.texi << 'END'
49 \input texinfo
50 @setfilename main.info
51 @settitle main
52 @node Top
53 Hello walls.
54 @bye
55 END
57 mkdir aux1
58 mkdir tex
59 cp "$testsrcdir/../lib/texinfo.tex" tex
61 $ACLOCAL
62 $AUTOMAKE --add-missing
63 $AUTOCONF
65 test ! -f texinfo.tex
66 test ! -f aux1/texinfo.tex
67 test -f tex/texinfo.tex
69 ./configure
70 $MAKE sure_it_exists
71 $MAKE distcheck
72 grep 'TEXINFO_TEX = .* # some comment w/ a slash' Makefile
73 $MAKE sure_it_is_not_distributed