configure: remove an obsolete TODO comment
[platform/upstream/automake.git] / t / fort2.sh
1 #! /bin/sh
2 # Copyright (C) 2006-2013 Free Software Foundation, Inc.
3 #
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)
7 # any later version.
8 #
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.
13 #
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/>.
16
17 # Test that AC_FC_SRCEXT(f9x) works as intended:
18 # - $(FCFLAGS_f) will be used
19
20 # Cf. 'fort1.sh' and 'link_f90_only.sh'.
21
22 . test-init.sh
23
24 mkdir sub
25
26 cat >>configure.ac <<'END'
27 AC_PROG_FC
28 AC_FC_SRCEXT([f90])
29 AC_FC_SRCEXT([f95])
30 AC_FC_SRCEXT([f03])
31 AC_FC_SRCEXT([f08])
32 AC_FC_SRCEXT([blabla])
33 END
34
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
39 goodbye_FCFLAGS =
40 END
41
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 cat stdout
50 grep -v '\$(FCFLAGS_f' stdout && exit 1
51 grep '.\$(FC.*\$(FCFLAGS_blabla' Makefile.in && exit 1
52 # Notice the TAB:
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
61
62 :