2 # Copyright (C) 2006-2012 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 2, or (at your option)
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.sh' and 'link_f90_only.sh'.
26 cat >>configure.ac
<<'END'
32 AC_FC_SRCEXT([blabla])
35 cat >Makefile.am
<<'END'
36 bin_PROGRAMS = hello goodbye
37 hello_SOURCES = hello.f90 foo.f95 sub/bar.f95 hi.f03 sub/howdy.f03 greets.f08 sub/bonjour.f08
38 goodbye_SOURCES = bye.f95 sub/baz.f90
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
50 grep -v '\$(FCFLAGS_f' stdout
&& exit 1
51 grep '.\$(FC.*\$(FCFLAGS_blabla' Makefile.
in && exit 1
53 grep '^[ ].*\$(FC.*\$(FCFLAGS_f90).*\.f90' Makefile.
in
54 grep '^[ ].*\$(FC.*\$(FCFLAGS_f95).*\.f95' Makefile.
in
55 grep '^[ ].*\$(FC.*\$(FCFLAGS_f03).*\.f03' Makefile.
in
56 grep '^[ ].*\$(FC.*\$(FCFLAGS_f08).*\.f08' Makefile.
in
57 grep '^[ ].*\$(FC.*\$(FCFLAGS_f90).*\.f95' Makefile.
in && exit 1
58 grep '^[ ].*\$(FC.*\$(FCFLAGS_f95).*\.f90' Makefile.
in && exit 1
59 grep '^[ ].*\$(FC.*\$(FCFLAGS_f90).*\.f03' Makefile.
in && exit 1
60 grep '^[ ].*\$(FC.*\$(FCFLAGS_f08).*\.f90' Makefile.
in && exit 1