Fix for PR automake/14:
[automake.git] / tests / link_f_c.test
blob8dea51cc7056b6c46bbe24844732bf24b8e68ab1
1 #! /bin/sh
3 # Test to make sure the Fortran 77 linker is used when appropriate.
4 # Matthew D. Langston <langston@SLAC.Stanford.EDU>
6 . $srcdir/defs || exit 1
8 cat >> configure.in << 'END'
9 AC_PROG_CC
10 AC_PROG_F77
11 END
13 cat > Makefile.am << 'END'
14 bin_PROGRAMS = lavalamp
15 lavalamp_SOURCES = lava.c lamp.f
16 END
18 : > lava.c
19 : > lamp.f
21 $AUTOMAKE || exit 1
24 # We should only see the Fortran 77 linker in the rules of
25 # `Makefile.in'.
27 # Look for this macro not at the beginning of any line; that will have
28 # to be good enough for now.
29 grep '.\$(F77LINK)' Makefile.in || exit 1
31 # We should not see these patterns:
32 grep '.\$(LINK)' Makefile.in && exit 1
33 grep '.\$(CXXLINK)' Makefile.in && exit 1
35 exit 0