Replace 'configure' with '@command{configure}' as appropriate.
[automake/ericb.git] / tests / compile_f90_c_cxx.test
blob312c2ef9fa9f2292b2dcae26630315adbb38af6a
1 #! /bin/sh
2 # Copyright (C) 1998, 1999, 2001, 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 to make sure rules to invoke all compilers are selected with
18 # mixed source objects.
19 # (copied from compile_f_c_cxx.test) Mike Nolta <mrnolta@princeton.edu>
21 . ./defs || Exit 1
23 cat >> configure.in << 'END'
24 AC_PROG_CC
25 AC_PROG_CXX
26 AC_PROG_FC
27 AC_FC_LIBRARY_LDFLAGS
28 END
30 cat > Makefile.am << 'END'
31 bin_PROGRAMS = foo
32 foo_SOURCES = foo.f90 bar.c baz.cc
33 foo_LDADD = @FLIBS@
34 END
36 : > foo.f90
37 : > bar.c
38 : > baz.cc
40 $ACLOCAL || Exit 1
41 $AUTOMAKE || Exit 1
44 # Look for the macros at the beginning of rules. Be careful, as there
45 # are literal tabs at the beginning of the search strings.
46 grep ' \$(COMPILE)' Makefile.in || Exit 1
47 grep ' \$(CXXCOMPILE)' Makefile.in || Exit 1
48 grep ' \$(FCCOMPILE)' Makefile.in || Exit 1
50 Exit 0