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

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

automake 1.9.6

File size: 1.9 KB
Line 
1#! /bin/sh
2# Copyright (C) 2001, 2002, 2003 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# Make sure stamp-h* files are created where we expect
22. ./defs || exit 1
23
24set -e
25
26cat >> configure.in << END
27AM_CONFIG_HEADER(1.h
28 2.h:config.hin
29 3.h:sdir1/config1.hin)
30# AM_CONFIG_HEADER and AC_CONFIG_HEADERS should be synonyms.
31AC_CONFIG_HEADERS(sdir1/4.h
32 sdir1/5.h:config.hin
33 sdir1/6.h:sdir1/config1.hin
34 sdir1/7.h:sdir2/config2.hin)
35AC_OUTPUT
36END
37
38: > Makefile.am
39mkdir sdir1
40mkdir sdir2
41: > config.hin
42: > 1.h.in
43: > sdir1/4.h.in
44: > sdir1/config1.hin
45: > sdir2/config2.hin
46
47$ACLOCAL
48$AUTOCONF
49$AUTOMAKE
50./configure
51
52test -f stamp-h1
53test -f stamp-h2
54test -f stamp-h3
55test -f sdir1/stamp-h4
56test -f sdir1/stamp-h5
57test -f sdir1/stamp-h6
58test -f sdir1/stamp-h7
59
60# Make sure `./config.status foo' creates the right stamp file.
61# Report from Sander Niemeijer.
62
63rm -f stamp-h*
64rm -f sdir1/stamp-h*
65
66./config.status sdir1/7.h 2.h sdir1/4.h
67test ! -f stamp-h1
68test -f stamp-h2
69test ! -f stamp-h3
70test -f sdir1/stamp-h4
71test ! -f sdir1/stamp-h5
72test ! -f sdir1/stamp-h6
73test -f sdir1/stamp-h7
74
75exit 0
Note: See TracBrowser for help on using the repository browser.