Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / include2.test
blobea70b1605fba377406aec670abe0a6ade8419696
1 #! /bin/sh
2 # Copyright (C) 2002, 2007 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 # Make sure included files in parent directory are distributed.
19 . ./defs || Exit 1
21 set -e
23 cat >> configure.in << 'END'
24 AC_CONFIG_FILES([sub/Makefile])
25 AC_OUTPUT
26 END
28 cat > Makefile.am << 'END'
29 SUBDIRS = sub
30 test: distdir
31 test -f $(distdir)/foo
32 test -f $(distdir)/bar
33 test 2 -gt `find $(distdir)/sub -type d | wc -l`
34 END
36 : > foo
37 : > bar
39 mkdir sub
40 cat > sub/Makefile.am << 'END'
41 include $(top_srcdir)/foo
42 include ../bar
43 END
45 $ACLOCAL
46 $AUTOCONF
47 $AUTOMAKE
48 # Use --srcdir with an absolute path because it's harder
49 # to support in `distdir'.
50 ./configure --srcdir "`pwd`"
51 $MAKE test