Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / cond3.test
blob98e081a0da3314b8486294adc21aa784b19c56a2
1 #! /bin/sh
2 # Copyright (C) 1997, 1998, 1999, 2001, 2002, 2003 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 # Test sources listed in conditional.
18 # Report from Rob Savoye <rob@cygnus.com>, and Lars J. Aas.
20 . ./defs || Exit 1
22 cat > configure.in << 'END'
23 AC_INIT
24 AM_INIT_AUTOMAKE(nonesuch, nonesuch)
25 AC_PROG_CC
26 AM_CONDITIONAL(ONE, true)
27 AM_CONDITIONAL(TWO, false)
28 AM_CONDITIONAL(THREE, maybe)
29 AC_OUTPUT(Makefile)
30 END
32 cat > Makefile.am << 'END'
33 bin_PROGRAMS = targ
35 if ONE
36 SONE = one.c
37 else
38 SONE =
39 endif
41 if TWO
42 STWO = two.c
43 else
44 STWO =
45 endif
47 if THREE
48 STHREE = three.c
49 else
50 STHREE =
51 endif
53 targ_SOURCES = $(SONE) $(STWO) $(STHREE)
54 END
56 $ACLOCAL || Exit 1
57 $AUTOMAKE || Exit 1
59 # `b top' so that
60 sed -n '
61 /[oO][bB][jJ][eE][cC][tT].* =/ {
62 : loop
63 /\\$/ {
66 b loop
69 }' Makefile.in >produced
71 cat >expected << 'EOF'
72 @ONE_TRUE@am__objects_1 = one.$(OBJEXT)
73 @TWO_TRUE@am__objects_2 = two.$(OBJEXT)
74 @THREE_TRUE@am__objects_3 = three.$(OBJEXT)
75 am_targ_OBJECTS = $(am__objects_1) $(am__objects_2) $(am__objects_3)
76 targ_OBJECTS = $(am_targ_OBJECTS)
77 EOF
79 diff expected produced || Exit 1