Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / pr224.test
blob5609c824fac64cfe5db45bbe33aa5dde65cf0d78
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 # Test for $(top_srcdir) with dependencies.
19 required=gcc
20 . ./defs || Exit 1
22 mkdir foo
24 cat >foo/main.c <<'EOF'
25 int main() { return 0; }
26 EOF
28 cat >Makefile.am <<'EOF'
29 AUTOMAKE_OPTIONS = subdir-objects
30 bin_PROGRAMS = bar
31 bar_SOURCES = foo/main.c
32 EOF
34 cat >configure.in <<'EOF'
35 AC_INIT(foo/main.c)
36 AC_CONFIG_AUX_DIR(.)
37 AM_INIT_AUTOMAKE(test_am, 1.0)
38 AC_PROG_CC
39 AM_PROG_CC_C_O
40 AC_OUTPUT(Makefile)
41 EOF
43 touch README NEWS AUTHORS ChangeLog
45 mkdir build
47 set -e
49 $ACLOCAL
50 $AUTOCONF
51 $AUTOMAKE -a
53 cd build
54 CC='gcc' ../configure
55 $MAKE
57 test -d foo/.deps
58 $MAKE distclean
59 test -d foo/.deps && Exit 1