tests: make 'lzip.test' executable
[automake.git] / tests / flibs.test
blobd35c4c627ef95d1b6ccfe0e9306ee845467f8f5f
1 #! /bin/sh
2 # Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation,
3 # Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # Make sure `AC_F77_LIBRARY_LDFLAGS' works properly.
19 # Matthew D. Langston <langston@SLAC.Stanford.EDU>
21 . ./defs || Exit 1
23 set -e
25 cat >> configure.in << 'END'
26 AC_PROG_F77
27 AC_F77_LIBRARY_LDFLAGS
28 END
30 # Tue Aug 11 09:50:48 1998 Matthew D. Langston <langston@SLAC.Stanford.EDU>
32 # This test currently fails with automake v. 1.3 since automake assumes
33 # that elements of `bin_PROGRAMS' (e.g. zardoz) without a corresponding
34 # `_SOURCES' (e.g. zardoz_SOURCES) should be compiled from `zardoz.c'
35 # whether or not `zardoz.c' actually exists. For example, even if the
36 # file `zardoz.c' doesn't exist but the file `zardoz.f' does exist, this
37 # tests would still fail.
39 # Therefore, for now I have put in the line `zardoz_SOURCES = zardoz.f'
40 # (see below) so that automake's top-level `make check' won't fail, but
41 # this line should be removed once automake handles this situation
42 # correctly.
44 cat > Makefile.am <<'END'
45 bin_PROGRAMS = zardoz
46 zardoz_SOURCES = zardoz.f
47 zardoz_LDADD = @FLIBS@
48 END
50 : > zardoz.f
51 : > config.guess
52 : > config.sub
54 $ACLOCAL
55 $AUTOMAKE
57 grep '@FLIBS@' Makefile.in