* automake.in (scan_aclocal_m4): Define ACLOCAL_M4 even in
[automake.git] / tests / condd.test
blob244ad5064aae87fb09fdfdb7ac0e7a08ead6d51b
1 #! /bin/sh
2 # Copyright (C) 2001, 2002 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 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.
21 # Test for bug in conditionals.
23 . ./defs || exit 1
25 set -e
27 cat >> configure.in << 'END'
28 AC_PROG_CC
29 AM_CONDITIONAL(COND1, false)
30 AC_CONFIG_FILES([foo/Makefile])
31 AC_CONFIG_FILES([bar/Makefile])
32 AC_OUTPUT
33 END
35 cat > Makefile.am << 'END'
36 SUBDIRS = foo
37 if COND1
38 SUBDIRS += bar
39 endif
41 # Small example from the manual
42 bin_PROGRAMS = hello
43 hello_SOURCES = hello-common.c
44 if COND1
45 hello_SOURCES += hello-cond1.c
46 else
47 hello_SOURCES += hello-generic.c
48 endif
50 test: distdir
51 test -f $(distdir)/foo/Makefile.am
52 test -f $(distdir)/bar/Makefile.am
53 test -f $(distdir)/hello-common.c
54 test -f $(distdir)/hello-cond1.c
55 test -f $(distdir)/hello-generic.c
56 END
58 mkdir foo bar
60 : > foo/Makefile.am
61 : > bar/Makefile.am
62 : > hello-common.c
63 : > hello-cond1.c
64 : > hello-generic.c
66 $ACLOCAL
67 $AUTOCONF
68 $AUTOMAKE
69 ./configure
70 $MAKE test