Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / extra6.test
blob5629f4a330e3555a232e46d33080b9f0cd30c14d
1 #! /bin/sh
2 # Copyright (C) 2002 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 # Check to make sure EXTRA_DIST can contain a directory or
18 # a subdirectory, in $(builddir) or $(srcdir).
20 . ./defs || Exit 1
22 set -e
24 echo AC_OUTPUT >> configure.in
26 cat > Makefile.am << 'END'
27 EXTRA_DIST=foo/bar baz foo2/bar2 baz2
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
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
43 $ACLOCAL
44 $AUTOMAKE
45 $AUTOCONF
46 mkdir build
47 cd build
48 ../configure
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
57 $MAKE check