Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / extra6.test
1 #! /bin/sh
2 # Copyright (C) 2002  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 to make sure EXTRA_DIST can contain a directory or
18 # a subdirectory, in $(builddir) or $(srcdir).
19
20 . ./defs || Exit 1
21
22 set -e
23
24 echo AC_OUTPUT >> configure.in
25
26 cat > Makefile.am << 'END'
27 EXTRA_DIST=foo/bar baz foo2/bar2 baz2
28
29 check: distdir
30         test -f $(distdir)/foo/bar/baz
31         test -f $(distdir)/baz/foo
32         test -f $(distdir)/foo2/bar2/baz2
33         test -f $(distdir)/baz2/foo2
34 END
35
36 # Create some files in $(srcdir)
37 mkdir foo
38 mkdir foo/bar
39 touch foo/bar/baz
40 mkdir baz
41 touch baz/foo
42
43 $ACLOCAL
44 $AUTOMAKE
45 $AUTOCONF
46 mkdir build
47 cd build
48 ../configure
49
50 # Create some files in $(builddir)
51 mkdir foo2
52 mkdir foo2/bar2
53 touch foo2/bar2/baz2
54 mkdir baz2
55 touch baz2/foo2
56
57 $MAKE check