typo + new comment
[automake.git] / tests / suffix3.test
blobcb2370ab9128c2167880a15d4506be2374a5f48f
1 #! /bin/sh
3 # Test to make sure that suffix rules chain.
5 . $srcdir/defs || exit 1
7 cat >> configure.in << 'END'
8 AC_PROG_CXX
9 END
11 cat > Makefile.am << 'END'
12 SUFFIXES = .zoo
13 .zoo.cc:
14 convert-zoo whatever
15 bin_PROGRAMS = foo
16 foo_SOURCES = foo.zoo
17 END
19 $ACLOCAL || exit 1
20 $AUTOMAKE --Wno-error || exit 1
22 fgrep foo.cc Makefile.in && exit 1
23 exit 0