TIVI-153: Adding automake14 as dep for iputils package
[profile/ivi/automake14.git] / tests / link_f_only.test
1 #! /bin/sh
2
3 # Test to make sure the Fortran 77 linker is used when appropriate.
4 # Matthew D. Langston <langston@SLAC.Stanford.EDU>
5
6 . $srcdir/defs || exit 1
7
8 cat >> configure.in << 'END'
9 AC_PROG_F77
10 END
11
12 cat > Makefile.am << 'END'
13 bin_PROGRAMS = lavalamp
14 lavalamp_SOURCES = lamp.f
15 END
16
17 : > lamp.f
18
19 $AUTOMAKE || exit 1
20
21
22 # We should only see the Fortran linker in the rules of `Makefile.in'.
23
24 # Look for this macro not at the beginning of any line; that will have
25 # to be good enough for now.
26 grep '.\$(F77LINK)' Makefile.in  || exit 1
27
28 # We should not see these patterns:
29 grep '.\$(CXXLINK)' Makefile.in && exit 1
30 grep '.\$(LINK)'    Makefile.in && exit 1
31
32 exit 0