Reword the copyright notices to match what's suggested in GPLv3.
[automake/plouj.git] / tests / fort2.test
blobb05b4b09bde869b81d974810d2211c0d0939f1f6
1 #! /bin/sh
2 # Copyright (C) 2006 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 # Test that AC_FC_SRCEXT(f9x) works as intended:
18 # - $(FCFLAGS_f) will be used
20 # Cf. fort1.test and link_f90_only.test.
22 . ./defs || exit 1
24 set -e
26 mkdir sub
28 cat >>configure.in <<'END'
29 AC_PROG_FC
30 AC_FC_SRCEXT([f90])
31 AC_FC_SRCEXT([f95])
32 AC_FC_SRCEXT([blabla])
33 END
35 cat >Makefile.am <<'END'
36 bin_PROGRAMS = hello goodbye
37 hello_SOURCES = hello.f90 foo.f95 sub/bar.f95
38 goodbye_SOURCES = bye.f95 sub/baz.f90
39 goodbye_FCFLAGS =
40 END
42 $ACLOCAL
43 $AUTOMAKE
44 # The following tests aren't fool-proof, but they don't
45 # need a Fortran compiler.
46 grep '.\$(LINK)' Makefile.in && exit 1
47 grep '.\$(FCLINK)' Makefile.in
48 grep '.\$(FCCOMPILE)' Makefile.in > stdout
49 grep -v '\$(FCFLAGS_f' stdout && exit 1
50 grep '.\$(FC.*\$(FCFLAGS_blabla' Makefile.in && exit 1
51 # Notice the TAB:
52 grep '^[ ].*\$(FC.*\$(FCFLAGS_f90).*\.f95' Makefile.in && exit 1
53 grep '^[ ].*\$(FC.*\$(FCFLAGS_f95).*\.f90' Makefile.in && exit 1