source: trunk/essentials/sys-devel/automake-1.7/tests/cond4.test

Last change on this file was 3120, checked in by bird, 18 years ago

automake 1.7.9

File size: 2.1 KB
Line 
1#! /bin/sh
2# Copyright (C) 1998, 2001, 2002 Free Software Foundation, Inc.
3#
4# This file is part of GNU Automake.
5#
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.
10#
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.
15#
16# You should have received a copy of the GNU General Public License
17# along with autoconf; see the file COPYING. If not, write to
18# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19# Boston, MA 02111-1307, USA.
20
21# Another sources-in-conditional test. Report from Tim Goodwin.
22
23required='GNUmake gcc'
24. ./defs || exit 1
25
26cat > configure.in << 'END'
27AC_INIT(Makefile.am)
28AM_INIT_AUTOMAKE(foo,0.0)
29AC_PROG_CC
30AM_CONDITIONAL(ONE, test "x$CONDITION1" = "xtrue")
31AM_CONDITIONAL(TWO, test "x$CONDITION2" = "xtrue")
32AC_OUTPUT(Makefile)
33END
34
35cat > Makefile.am << 'END'
36bin_PROGRAMS = targ
37
38if ONE
39OPT1 = one.c
40endif
41
42if TWO
43OPT2 = two.c
44endif
45
46targ_SOURCES = main.c $(OPT1) $(OPT2)
47
48echo-objects:
49 @echo $(targ_OBJECTS)
50END
51
52$ACLOCAL || exit 1
53$AUTOMAKE || exit 1
54
55# We should not output useless definitions.
56test "`grep '^@TWO_FALSE@' Makefile.in | wc -l`" -eq 0 || exit 1
57
58$AUTOCONF || exit 1
59
60# Ignore user CFLAGS.
61CFLAGS=
62export CFLAGS
63
64CONDITION1=true CONDITION2=true ./configure || exit 1
65msgtt=`$MAKE --no-print-directory echo-objects`
66CONDITION1=true CONDITION2=false ./configure || exit 1
67msgtf=`$MAKE --no-print-directory echo-objects`
68CONDITION1=false CONDITION2=true ./configure || exit 1
69msgft=`$MAKE --no-print-directory echo-objects`
70CONDITION1=false CONDITION2=false ./configure || exit 1
71msgff=`$MAKE --no-print-directory echo-objects`
72
73echo $msgtt
74echo $msgtf
75echo $msgft
76echo $msgff
77
78test "$msgtt" = "main.o one.o two.o" || exit 1
79test "$msgtf" = "main.o one.o" || exit 1
80test "$msgft" = "main.o two.o" || exit 1
81test "$msgff" = "main.o" || exit 1
Note: See TracBrowser for help on using the repository browser.