Support more C++ file extensions for MSVC in the compile script.
[platform/upstream/automake.git] / tests / pr224.test
1 #! /bin/sh
2 # Copyright (C) 2002  Free Software Foundation, Inc.
3 #
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 2, or (at your option)
7 # any later version.
8 #
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.
13 #
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/>.
16
17 # Test for $(top_srcdir) with dependencies.
18
19 required=gcc
20 . ./defs || Exit 1
21
22 mkdir foo
23
24 cat >foo/main.c <<'EOF'
25 int main() { return 0; }
26 EOF
27
28 cat >Makefile.am <<'EOF'
29 AUTOMAKE_OPTIONS = subdir-objects
30 bin_PROGRAMS = bar
31 bar_SOURCES = foo/main.c
32 EOF
33
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
42
43 touch README NEWS AUTHORS ChangeLog
44
45 mkdir build
46
47 set -e
48
49 $ACLOCAL
50 $AUTOCONF
51 $AUTOMAKE -a
52
53 cd build
54 CC='gcc' ../configure
55 $MAKE
56
57 test -d foo/.deps
58 $MAKE distclean
59 test -d foo/.deps && Exit 1
60 :