source: trunk/essentials/sys-devel/automake-1.9/tests/txinfo28.test

Last change on this file was 3086, checked in by bird, 18 years ago

automake 1.9.6

File size: 2.0 KB
Line 
1#! /bin/sh
2# Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
3#
4# This file is part of GNU Automake.
5#
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.
10#
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.
15#
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., 51 Franklin Street, Fifth Floor,
19# Boston, MA 02110-1301, USA.
20
21# Check that info files are built in builddir when needed.
22# Similar to txinfo24.test, but obfuscating filenames with variable references.
23# Report from Ralf Corsepius.
24
25required='makeinfo tex texi2dvi-o'
26. ./defs || exit 1
27
28set -e
29
30# This setting, when honored by GNU ls, used to cause an infinite loop
31# in mdate-sh.
32TIME_STYLE="+%Y-%m-%d %H:%M:%S"
33export TIME_STYLE
34
35echo AC_OUTPUT >> configure.in
36
37cat > Makefile.am << 'END'
38MA = ma
39IN = in
40PROJ = $(MA)$(IN)
41include fragment.mk
42info_TEXINFOS = ma$(IN).texi
43END
44
45echo 'CLEANFILES = $(PROJ).info' > fragment.mk
46
47cat > main.texi << 'END'
48\input texinfo
49@setfilename main.info
50@settitle main
51@node Top
52Hello walls.
53@include version.texi
54@bye
55END
56
57$ACLOCAL
58$AUTOMAKE --add-missing
59$AUTOCONF
60
61mkdir build
62cd build
63../configure
64$MAKE
65test -f main.info
66
67cd ..
68rm -rf build
69./configure
70$MAKE
71test -f main.info
72
73# Make sure stamp-vti is older that version.texi.
74# (A common situation in a real tree.)
75test -f stamp-vti
76test -f version.texi
77$sleep
78touch stamp-vti
79
80$MAKE distclean
81test -f stamp-vti
82test -f version.texi
83
84mkdir build
85cd build
86../configure
87$MAKE
88# main.info should be rebuilt in the current directory
89test -f main.info
90test ! -f ../main.info
91$MAKE dvi
92test -f main.dvi
93
94$MAKE distcheck
Note: See TracBrowser for help on using the repository browser.