Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / fonly.test
blob3006adad7bb55a6b5b68b85616c8eb4aa7eb9823
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 programs with only Fortran 77 source are handled properly.
18 # Matthew D. Langston <langston@SLAC.Stanford.EDU>
20 . ./defs || Exit 1
22 cat >> configure.in << 'END'
23 AC_PROG_F77
24 END
26 # Tue Aug 11 09:50:48 1998 Matthew D. Langston <langston@SLAC.Stanford.EDU>
28 # This test currently fails with automake v. 1.3 since automake assumes
29 # that elements of `bin_PROGRAMS' (e.g. zardoz) without a corresponding
30 # `_SOURCES' (e.g. zardoz_SOURCES) should be compiled from `zardoz.c'
31 # whether or not `zardoz.c' actually exists. For example, even if the
32 # file `zardoz.c' doesn't exist but the file `zardoz.f' does exist, this
33 # tests would still fail.
35 # Therefore, for now I have put in the line `zardoz_SOURCES = zardoz.f'
36 # (see below) so that automake's top-level `make check' won't fail, but
37 # this line should be removed once automake handles this situation
38 # correctly.
40 cat > Makefile.am <<'END'
41 bin_PROGRAMS = zardoz
42 zardoz_SOURCES = zardoz.f
43 END
45 : > zardoz.f
47 $ACLOCAL || Exit 1
48 $AUTOMAKE || Exit 1
50 grep 'zardoz.f' Makefile.in