Append $(EXEEXT) to programs that may be listed in TESTS.
[automake.git] / tests / cond32.test
blobe63489d41a1c77f832982bcc468a945160af3190
1 #!/bin/sh
2 # Copyright (C) 2003, 2006 Free Software Foundation, Inc.
4 # This file is part of GNU Automake.
6 # GNU Automake is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
11 # GNU Automake is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Automake; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 # Boston, MA 02110-1301, USA.
21 # Make sure the user can override a conditional _DEPENDENCIES.
23 . ./defs
25 set -e
27 cat >>configure.in <<'EOF'
28 AC_PROG_CC
29 AM_CONDITIONAL(C1, [test -z "$two"])
30 AM_CONDITIONAL(C2, [test -n "$two"])
31 AM_CONDITIONAL(C3, [test -z "$three"])
32 AC_SUBST([MYSUB], [foo.o])
33 AC_OUTPUT
34 EOF
36 cat >>Makefile.am <<'EOF'
37 bin_PROGRAMS = a
38 if C1
39 a_LDADD = $(MYSUB)
40 a_DEPENDENCIES = $(MYSUB) nonsense.a
41 # Note that `nonsense.a' is there just to make sure Automake insn't
42 # using some self computed a_DEPENDENCIES variable.
43 endif
44 if C2
45 if C3
46 BAR = bar.o
47 else
48 BAR = baz.o
49 endif
50 a_LDADD = $(BAR)
51 endif
52 print:
53 @echo BEG: $(a_DEPENDENCIES) :END
54 EOF
56 $ACLOCAL
57 $AUTOCONF
58 $AUTOMAKE
60 ./configure
61 $MAKE -e print > stdout
62 cat stdout
63 grep 'BEG: foo.o nonsense.a :END' stdout
65 ./configure two=yes three=
66 $MAKE -e print > stdout
67 cat stdout
68 grep 'BEG: bar.o :END' stdout
70 ./configure two=yes three=yes
71 $MAKE -e print > stdout
72 cat stdout
73 grep 'BEG: baz.o :END' stdout