Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / subobj3.test
blobac8a47041d84d03733618c9d589a2e4c3c79eb36
1 #! /bin/sh
2 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2006 Free Software
3 # Foundation, Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3, or (at your option)
8 # any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # Test of subdir objects with C++.
20 required=gcc
21 . ./defs || Exit 1
23 set -e
25 cat > configure.in << 'END'
26 AC_INIT(sub/hello.c)
27 dnl Prevent automake from looking in .. and ../..
28 AC_CONFIG_AUX_DIR(.)
29 AM_INIT_AUTOMAKE(hello,0.23)
30 AC_PROG_CC
31 AC_PROG_CC_STDC
32 AM_PROG_CC_C_O
33 AM_C_PROTOTYPES
34 AC_OUTPUT(Makefile)
35 END
37 cat > Makefile.am << 'END'
38 AUTOMAKE_OPTIONS = subdir-objects
39 bin_PROGRAMS = hello
40 hello_SOURCES = sub/hello.c
41 END
43 mkdir sub
44 cat > sub/hello.c << 'END'
45 #include <stdio.h>
46 int
47 main (int argc, char *argv[])
49 printf ("yeah, yeah\n");
50 return 0;
52 END
54 # Ignore user CFLAGS.
55 CFLAGS=
56 export CFLAGS
58 # We use gcc and not gcc -traditional as the latter fails on some
59 # Linux boxes (Red Hat 5.1 in particular).
60 $ACLOCAL
61 $AUTOCONF
62 $AUTOMAKE -a
63 ./configure
64 ANSI2KNR=./ansi2knr U=_ $MAKE -e
65 ./hello