c1266b7696bde8c41158bc45be820d1d70a24c02
[platform/upstream/automake.git] / tests / silent3.test
1 #!/bin/sh
2 # Copyright (C) 2009  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 3, 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, with libtool, standard depmode case.
18
19 # Please keep this file in sync with silent4.test.
20
21 required=libtoolize
22 . ./defs
23
24 set -e
25
26 mkdir sub
27
28 cat >>configure.in <<'EOF'
29 AM_SILENT_RULES
30 AC_CONFIG_FILES([sub/Makefile])
31 AC_PROG_CC
32 AM_PROG_CC_C_O
33 AC_PROG_LIBTOOL
34 AC_OUTPUT
35 EOF
36
37 cat > Makefile.am <<'EOF'
38 # Need generic and non-generic rules.
39 lib_LTLIBRARIES = libfoo.la libbar.la
40 libbar_la_CFLAGS = $(AM_CFLAGS)
41 SUBDIRS = sub
42 EOF
43
44 cat > sub/Makefile.am <<'EOF'
45 AUTOMAKE_OPTIONS = subdir-objects
46 # Need generic and non-generic rules.
47 lib_LTLIBRARIES = libbaz.la libbla.la
48 libbla_la_CFLAGS = $(AM_CFLAGS)
49 EOF
50
51 cat > libfoo.c <<'EOF'
52 int main ()
53 {
54   return 0;
55 }
56 EOF
57 cp libfoo.c libbar.c
58 cp libfoo.c sub/libbaz.c
59 cp libfoo.c sub/libbla.c
60
61 libtoolize
62 $ACLOCAL
63 $AUTOMAKE --add-missing
64 $AUTOCONF
65
66 ./configure --enable-silent-rules
67 $MAKE >stdout || { cat stdout; Exit 1; }
68 cat stdout
69 grep ' -c' stdout && Exit 1
70 grep ' -o libfoo' stdout && Exit 1
71 grep mv stdout && Exit 1
72 grep ' CC .*foo\.' stdout
73 grep ' CC .*bar\.' stdout
74 grep ' CC .*baz\.' stdout
75 grep ' CC .*bla\.' stdout
76 grep ' CCLD .*foo' stdout
77 grep ' CCLD .*bar' stdout
78 grep ' CCLD .*baz' stdout
79 grep ' CCLD .*bla' stdout
80
81 $MAKE clean
82 $MAKE V=1 >stdout || { cat stdout; Exit 1; }
83 cat stdout
84 grep ' -c' stdout
85 grep ' -o libfoo' stdout
86 grep ' CC .*foo\.' stdout && Exit 1
87 grep ' CC .*bar\.' stdout && Exit 1
88 grep ' CC .*baz\.' stdout && Exit 1
89 grep ' CC .*bla\.' stdout && Exit 1
90 grep ' CCLD .*foo' stdout && Exit 1
91 grep ' CCLD .*bar' stdout && Exit 1
92 grep ' CCLD .*baz' stdout && Exit 1
93 grep ' CCLD .*bla' stdout && Exit 1
94
95 :