Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / output8.test
blob3e340709c6ef342f631313e3db1f05d501dff9ce
1 #! /bin/sh
2 # Copyright (C) 2003 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 AC_CONFIG_FILES support for files starting with `../'.
18 # Report from Bruno Haible.
20 . ./defs || Exit 1
22 set -e
24 mkdir testdir
25 cd testdir
27 mv ../configure.in .
28 cat >> configure.in << END
29 AC_CONFIG_FILES([a/foo.sh:../testdir/a/foo.sh.in])
30 AC_CONFIG_FILES([a/Makefile])
31 AC_OUTPUT
32 END
34 mkdir a
36 echo SUBDIRS = a >Makefile.am
37 : >a/Makefile.am
39 echo foo >a/foo.sh.in
41 $ACLOCAL
42 $AUTOCONF
43 $AUTOMAKE --add-missing
45 ./configure
46 $MAKE
47 test "`cat a/foo.sh`" = foo
49 $sleep
50 echo 'bar' >a/foo.sh.in
52 cd a
53 $MAKE foo.sh
54 test "`cat foo.sh`" = bar