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 |
|
---|
23 | required='GNUmake gcc'
|
---|
24 | . ./defs || exit 1
|
---|
25 |
|
---|
26 | cat > configure.in << 'END'
|
---|
27 | AC_INIT(Makefile.am)
|
---|
28 | AM_INIT_AUTOMAKE(foo,0.0)
|
---|
29 | AC_PROG_CC
|
---|
30 | AM_CONDITIONAL(ONE, test "x$CONDITION1" = "xtrue")
|
---|
31 | AM_CONDITIONAL(TWO, test "x$CONDITION2" = "xtrue")
|
---|
32 | AC_OUTPUT(Makefile)
|
---|
33 | END
|
---|
34 |
|
---|
35 | cat > Makefile.am << 'END'
|
---|
36 | bin_PROGRAMS = targ
|
---|
37 |
|
---|
38 | if ONE
|
---|
39 | OPT1 = one.c
|
---|
40 | endif
|
---|
41 |
|
---|
42 | if TWO
|
---|
43 | OPT2 = two.c
|
---|
44 | endif
|
---|
45 |
|
---|
46 | targ_SOURCES = main.c $(OPT1) $(OPT2)
|
---|
47 |
|
---|
48 | echo-objects:
|
---|
49 | @echo $(targ_OBJECTS)
|
---|
50 | END
|
---|
51 |
|
---|
52 | $ACLOCAL || exit 1
|
---|
53 | $AUTOMAKE || exit 1
|
---|
54 |
|
---|
55 | # We should not output useless definitions.
|
---|
56 | test "`grep '^@TWO_FALSE@' Makefile.in | wc -l`" -eq 0 || exit 1
|
---|
57 |
|
---|
58 | $AUTOCONF || exit 1
|
---|
59 |
|
---|
60 | # Ignore user CFLAGS.
|
---|
61 | CFLAGS=
|
---|
62 | export CFLAGS
|
---|
63 |
|
---|
64 | CONDITION1=true CONDITION2=true ./configure || exit 1
|
---|
65 | msgtt=`$MAKE --no-print-directory echo-objects`
|
---|
66 | CONDITION1=true CONDITION2=false ./configure || exit 1
|
---|
67 | msgtf=`$MAKE --no-print-directory echo-objects`
|
---|
68 | CONDITION1=false CONDITION2=true ./configure || exit 1
|
---|
69 | msgft=`$MAKE --no-print-directory echo-objects`
|
---|
70 | CONDITION1=false CONDITION2=false ./configure || exit 1
|
---|
71 | msgff=`$MAKE --no-print-directory echo-objects`
|
---|
72 |
|
---|
73 | echo $msgtt
|
---|
74 | echo $msgtf
|
---|
75 | echo $msgft
|
---|
76 | echo $msgff
|
---|
77 |
|
---|
78 | test "$msgtt" = "main.o one.o two.o" || exit 1
|
---|
79 | test "$msgtf" = "main.o one.o" || exit 1
|
---|
80 | test "$msgft" = "main.o two.o" || exit 1
|
---|
81 | test "$msgff" = "main.o" || exit 1
|
---|