Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / cond19.test
blobf9d49b737a6b78121eb06c2dc7adfe9f284def0c
1 #! /bin/sh
2 # Copyright (C) 2001, 2002 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 # Regression test for substitution references to conditional variables.
18 # Report from Richard Boulton
20 required='GNUmake gcc'
21 . ./defs || Exit 1
23 cat > configure.in << 'END'
24 AC_INIT(Makefile.am)
25 AM_INIT_AUTOMAKE(hello,0.23)
26 AC_PROG_CC
27 AM_CONDITIONAL(COND1, test "x$CONDITION1" = "xtrue")
28 AM_CONDITIONAL(COND2, test "x$CONDITION2" = "xtrue")
29 AC_OUTPUT(Makefile)
30 END
32 cat > Makefile.am << 'END'
34 var1 = dlmain
36 if COND1
37 var2 = $(var1:=.c)
38 else
39 var2 = $(var1:=.c)
40 endif
42 if COND2
43 var3 = $(var2:.c=a.c)
44 var4 = $(var2:.c=b.c)
45 else
46 var3 = $(var2:.c=b.c)
47 var4 = $(var2:.c=a.c)
48 endif
50 helldl_SOURCES = $(var3:.c=1.c) $(var4:.c=2.c)
52 echorule:
53 @echo $(helldl_SOURCES) $(helldl_OBJECTS)
55 bin_PROGRAMS = helldl
56 END
58 # Ignore user CFLAGS.
59 CFLAGS=
60 export CFLAGS
62 set -e
64 $ACLOCAL
65 $AUTOCONF
66 $AUTOMAKE -a
68 CONDITION1=true CONDITION2=true ./configure
69 vala=`$MAKE --no-print-directory echorule`;
70 CONDITION1=true CONDITION2=false ./configure
71 valb=`$MAKE --no-print-directory echorule`;
72 CONDITION1=false CONDITION2=true ./configure
73 valc=`$MAKE --no-print-directory echorule`;
74 CONDITION1=false CONDITION2=false ./configure
75 vald=`$MAKE --no-print-directory echorule`;
77 echo $vala
78 echo $valb
79 echo $valc
80 echo $vald
81 test "x$vala" = "xdlmaina1.c dlmainb2.c dlmaina1.o dlmainb2.o" || Exit 1
82 test "x$valb" = "xdlmainb1.c dlmaina2.c dlmainb1.o dlmaina2.o" || Exit 1
83 test "x$valc" = "xdlmaina1.c dlmainb2.c dlmaina1.o dlmainb2.o" || Exit 1
84 test "x$vald" = "xdlmainb1.c dlmaina2.c dlmainb1.o dlmaina2.o" || Exit 1