tests: avoid a spurious failure on MSYS
[platform/upstream/automake.git] / t / flibs.sh
1 #! /bin/sh
2 # Copyright (C) 1998-2013 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 # Make sure 'AC_F77_LIBRARY_LDFLAGS' works properly.
18 # Matthew D. Langston <langston@SLAC.Stanford.EDU>
19
20 . test-init.sh
21
22 cat >> configure.ac << 'END'
23 AC_PROG_F77
24 AC_F77_LIBRARY_LDFLAGS
25 END
26
27 # Tue Aug 11 09:50:48 1998  Matthew D. Langston  <langston@SLAC.Stanford.EDU>
28 #
29 # This test currently fails with automake v. 1.3 since automake assumes
30 # that elements of 'bin_PROGRAMS' (e.g. zardoz) without a corresponding
31 # '_SOURCES' (e.g. zardoz_SOURCES) should be compiled from 'zardoz.c'
32 # whether or not 'zardoz.c' actually exists.  For example, even if the
33 # file 'zardoz.c' doesn't exist but the file 'zardoz.f' does exist, this
34 # tests would still fail.
35 #
36 # Therefore, for now I have put in the line 'zardoz_SOURCES = zardoz.f'
37 # (see below) so that automake's top-level 'make check' won't fail, but
38 # this line should be removed once automake handles this situation
39 # correctly.
40
41 cat > Makefile.am <<'END'
42 bin_PROGRAMS = zardoz
43 zardoz_SOURCES = zardoz.f
44 zardoz_LDADD = @FLIBS@
45 END
46
47 : > zardoz.f
48 : > config.guess
49 : > config.sub
50
51 $ACLOCAL
52 $AUTOMAKE
53
54 grep '@FLIBS@' Makefile.in