Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / ext.test
1 #! /bin/sh
2 # Copyright (C) 1999, 2001, 2002, 2006, 2010 Free Software Foundation,
3 # 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 to make sure extensions are set correctly for various languages.
19
20 . ./defs || Exit 1
21
22 set -e
23
24 cat >> configure.in << 'END'
25 AC_PROG_F77
26 AC_PROG_FC
27 AC_PROG_OBJC
28 AM_PROG_UPC
29 END
30
31 cat > Makefile.am << 'END'
32 bin_PROGRAMS = foo
33 foo_SOURCES = 1.f 2.for 3.f90 4.f95 5.F 6.F90 7.F95 8.r 9.m 10.upc
34 END
35
36 $ACLOCAL
37 $AUTOMAKE
38
39 for ext in f for f90 f95 F F90 F95 r m upc
40 do
41    # Some versions of the BSD shell wrongly exit when `set -e' is active
42    # if the last command within a compound statement fails and is guarded
43    # by an && only.  So we play safe and use the following idiom, instead
44    # of the apparently simpler `grep ... && Exit 1'.
45    if grep "^$ext\.o:" Makefile.in; then Exit 1; else :; fi
46    grep "^\.$ext\.o:" Makefile.in
47 done
48 Exit 0