Implement conditional AC_CONFIG_FILES: AM_COND_IF.
[automake/ericb.git] / tests / library3.test
blobdd6cb5a2c30fdcb44d8daacc7b93a17a1500543e
1 #! /bin/sh
2 # Copyright (C) 2002, 2003, 2005 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 3, or (at your option)
7 # any later version.
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 # Make sure Automake simplify conditions in diagnostics.
19 . ./defs || exit 1
21 set -e
23 cat >>configure.in <<EOF
24 AC_PROG_CC
25 AM_CONDITIONAL([A], [:])
26 AM_CONDITIONAL([B], [:])
27 AM_CONDITIONAL([C], [:])
28 AM_CONDITIONAL([D], [:])
29 EOF
31 cat > Makefile.am << 'END'
32 if A
33 if !B
34 RANLIB = anb
35 else
36 RANLIB = ab
37 endif
38 endif
39 if C
40 RANLIB = c
41 endif
42 if !C
43 if D
44 RANLIB = ncd
45 endif
46 endif
47 EXTRA_LIBRARIES = libfoo.a
48 END
50 $ACLOCAL
51 AUTOMAKE_fails
52 grep '^Makefile.am:.*: !A and !C and !D$' stderr
53 # Is there only one missing condition?
54 test `grep ': !' stderr | wc -l` = 1 || exit 1