Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / flibs.test
blobb688d722cd93f6a1663cf43a1fe1f47b7f2fd4d0
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 # Make sure `AC_F77_LIBRARY_LDFLAGS' works properly.
18 # Matthew D. Langston <langston@SLAC.Stanford.EDU>
20 . ./defs || Exit 1
22 cat >> configure.in << 'END'
23 AC_PROG_F77
24 AC_F77_LIBRARY_LDFLAGS
25 END
27 # Tue Aug 11 09:50:48 1998 Matthew D. Langston <langston@SLAC.Stanford.EDU>
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.
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.
41 cat > Makefile.am <<'END'
42 bin_PROGRAMS = zardoz
43 zardoz_SOURCES = zardoz.f
44 zardoz_LDADD = @FLIBS@
45 END
47 : > zardoz.f
49 $ACLOCAL || Exit 1
50 $AUTOMAKE || Exit 1
52 grep '@FLIBS@' Makefile.in