tests: avoid a spurious failure on MSYS
[platform/upstream/automake.git] / t / suffix-chain.tap
1 #! /bin/sh
2 # Copyright (C) 2002-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 # Check that Automake can emit code that work round the inability of
18 # some make implementations to automatically chain suffix rules.
19 # See automake bug#7824 and bug#7670.
20
21 required=cc
22 . test-init.sh
23
24 plan_ 8
25
26 cat >> configure.ac <<'END'
27 AC_PROG_CC
28 AC_OUTPUT
29 END
30
31 cat > Makefile.am <<'END'
32 bin_PROGRAMS = foo
33 foo_SOURCES = foo.c1
34 .c1.c0:
35         (echo 'int main (void)' && echo '{' && cat $<) > $@
36 .c0.c:
37         (cat $< && echo '}') > $@
38 CLEANFILES = foo.c0 foo.c
39 END
40
41 echo 'return 0;' > foo.c1
42
43 command_ok_ "aclocal"   $ACLOCAL
44 command_ok_ "automake"  $AUTOMAKE
45 command_ok_ "autoconf"  $AUTOCONF
46 command_ok_ "configure" ./configure
47
48 directive=''; make_can_chain_suffix_rules || directive=TODO
49
50 for target in all distcheck; do
51   command_ok_ "make $target" \
52               -D "$directive" -r "suffix rules not chained" \
53               $MAKE $target
54 done
55
56 command_ok_ "clean" $MAKE clean
57 # Sanity check.
58 cat >> Makefile <<'END'
59 foo.c: foo.c0
60 foo.c0: foo.c1
61 END
62 command_ok_ "make with explicit dependencies" $MAKE
63
64 :