2 # Copyright (C) 2009, 2010 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 # Check silent-rules mode, without libtool, non-fastdep case
18 # (so that, with GCC, we also cover the other code paths in depend2).
20 # Please keep this file in sync with silent.test.
29 cat >>configure.
in <<'EOF'
31 AC_CONFIG_FILES([sub/Makefile])
37 cat > Makefile.am
<<'EOF'
38 # Need generic and non-generic rules.
39 bin_PROGRAMS = foo bar
40 bar_CFLAGS = $(AM_CFLAGS)
44 cat > sub
/Makefile.am
<<'EOF'
45 AUTOMAKE_OPTIONS = subdir-objects
46 # Need generic and non-generic rules.
47 bin_PROGRAMS = baz bla
48 bla_CFLAGS = $(AM_CFLAGS)
62 $AUTOMAKE --add-missing
65 .
/configure am_cv_CC_dependencies_compiler_type
=gcc
--enable-silent-rules
66 $MAKE >stdout ||
{ cat stdout
; Exit
1; }
68 $EGREP ' (-c|-o)' stdout
&& Exit
1
69 grep 'mv ' stdout
&& Exit
1
70 grep 'CC .*foo\.' stdout
71 grep 'CC .*bar\.' stdout
72 grep 'CC .*baz\.' stdout
73 grep 'CC .*bla\.' stdout
74 grep 'CCLD .*foo' stdout
75 grep 'CCLD .*bar' stdout
76 grep 'CCLD .*baz' stdout
77 grep 'CCLD .*bla' stdout
80 $MAKE V
=1 >stdout ||
{ cat stdout
; Exit
1; }
84 $EGREP '(CC|LD) ' stdout
&& Exit
1