Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / subobj3.test
1 #! /bin/sh
2 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2010 Free
3 # Software Foundation, Inc.
4 #
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 2, or (at your option)
8 # any later version.
9 #
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.
14 #
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/>.
17
18 # Test of subdir objects with C++.
19
20 required=gcc
21 . ./defs || Exit 1
22
23 set -e
24
25 cat > configure.in << END
26 AC_INIT([$me], [1.0])
27 dnl Prevent automake from looking in .. and ../..
28 AC_CONFIG_AUX_DIR([.])
29 AM_INIT_AUTOMAKE
30 AC_PROG_CC
31 AC_PROG_CC_STDC
32 AM_PROG_CC_C_O
33 AM_C_PROTOTYPES
34 AC_CONFIG_FILES([Makefile])
35 AC_OUTPUT
36 END
37
38 cat > Makefile.am << 'END'
39 AUTOMAKE_OPTIONS = subdir-objects
40 bin_PROGRAMS = hello
41 hello_SOURCES = sub/hello.c
42 END
43
44 mkdir sub
45 cat > sub/hello.c << 'END'
46 #include <stdio.h>
47 int
48 main (int argc, char *argv[])
49 {
50    printf ("yeah, yeah\n");
51    return 0;
52 }
53 END
54
55 # Ignore user CFLAGS.
56 CFLAGS=
57 export CFLAGS
58
59 # We use gcc and not gcc -traditional as the latter fails on some
60 # Linux boxes (Red Hat 5.1 in particular).
61 $ACLOCAL
62 $AUTOCONF
63 $AUTOMAKE -a
64 ./configure
65 ANSI2KNR=./ansi2knr U=_ $MAKE -e
66 ./hello
67
68 :