Merge branch 'maint'
[platform/upstream/automake.git] / t / silentf77.sh
1 #!/bin/sh
2 # Copyright (C) 2010-2012 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 # Check silent-rules mode for Fortran 77.
18 # Keep this ins sync with the sister test 'silentf90.sh'.
19
20 required=fortran77
21 . ./defs || exit 1
22
23 mkdir sub
24
25 cat >>configure.ac <<'EOF'
26 AC_PROG_F77
27 AC_CONFIG_FILES([sub/Makefile])
28 AC_OUTPUT
29 EOF
30
31 cat > Makefile.am <<'EOF'
32 # Need generic and non-generic rules.
33 bin_PROGRAMS = foo1 foo2
34 foo1_SOURCES = foo.f
35 foo2_SOURCES = $(foo1_SOURCES)
36 foo2_FFLAGS = $(AM_FFLAGS)
37 SUBDIRS = sub
38 EOF
39
40 cat > sub/Makefile.am <<'EOF'
41 AUTOMAKE_OPTIONS = subdir-objects
42 # Need generic and non-generic rules.
43 bin_PROGRAMS = bar1 bar2
44 bar1_SOURCES = bar.f
45 bar2_SOURCES = $(bar1_SOURCES)
46 bar2_FFLAGS = $(AM_FFLAGS)
47 EOF
48
49 cat > foo.f <<'EOF'
50       program foo
51       stop
52       end
53 EOF
54 cp foo.f sub/bar.f
55
56 $ACLOCAL
57 $AUTOMAKE --add-missing
58 $AUTOCONF
59
60 ./configure --enable-silent-rules
61 $MAKE >stdout || { cat stdout; exit 1; }
62 cat stdout
63 # Avoid spurious failures with SunStudio Fortran compilers.
64 sed '/^NOTICE:/d' stdout > t
65 mv -f t stdout
66 cat stdout
67
68 $EGREP ' (-c|-o)' stdout && exit 1
69 grep 'mv ' stdout && exit 1
70
71 grep 'F77 .*foo\.'  stdout
72 grep 'F77 .*bar\.'  stdout
73 grep 'F77LD .*foo1' stdout
74 grep 'F77LD .*bar1' stdout
75 grep 'F77LD .*foo2' stdout
76 grep 'F77LD .*bar2' stdout
77
78 $EGREP '(FC|FCLD) ' stdout && exit 1
79
80 # Ensure a clean rebuild.
81 $MAKE clean
82
83 $MAKE V=1 >stdout || { cat stdout; exit 1; }
84 cat stdout
85
86 grep ' -c ' stdout
87 grep ' -o ' stdout
88
89 $EGREP '(F77|FC|LD) ' stdout && exit 1
90
91 :