~ubuntu-branches/ubuntu/precise/automake1.11/precise-proposed

« back to all changes in this revision

Viewing changes to tests/maken2.test

  • Committer: Bazaar Package Importer
  • Author(s): Eric Dorland
  • Date: 2009-08-12 02:36:44 UTC
  • Revision ID: james.westby@ubuntu.com-20090812023644-f40we9eqbmx1dpbj
Tags: upstream-1.11
ImportĀ upstreamĀ versionĀ 1.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
# Copyright (C) 2009  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
# Ensure that `make -n dist' and `make -n distcheck' show what would happen.
 
18
# This currently works for GNU make only.
 
19
 
 
20
# Please keep this test in sync with sister test maken.test.
 
21
 
 
22
required=GNUmake
 
23
. ./defs || Exit 1
 
24
 
 
25
set -e
 
26
 
 
27
mkdir sub
 
28
 
 
29
cat >> configure.in << 'END'
 
30
AC_CONFIG_FILES([sub/Makefile])
 
31
AC_OUTPUT
 
32
END
 
33
 
 
34
cat > Makefile.am <<'END'
 
35
SUBDIRS = sub
 
36
distcheck-hook:
 
37
        @: > stamp-distcheck-hook
 
38
test-no-distdir:
 
39
        test ! -d $(distdir)
 
40
        test ! -f stamp-distcheck-hook
 
41
        test ! -f sub/stamp-sub-dist-hook
 
42
END
 
43
cat >sub/Makefile.am <<'END'
 
44
dist-hook:
 
45
        @: > stamp-sub-dist-hook
 
46
END
 
47
 
 
48
$ACLOCAL
 
49
$AUTOCONF
 
50
$AUTOMAKE
 
51
./configure
 
52
 
 
53
$sleep
 
54
echo stamp > stampfile
 
55
$sleep
 
56
for target in dist distcheck; do
 
57
  $MAKE -n $target
 
58
  $MAKE test-no-distdir
 
59
  $MAKE -n $target | grep stamp-sub-dist-hook
 
60
  test `ls -1t | sed 1q` = stampfile
 
61
done
 
62
 
 
63
Exit 0