Implement conditional AC_CONFIG_FILES: AM_COND_IF.
[automake/ericb.git] / tests / sinclude.test
blob9a47bee5ddb3037cdc873aa9d69d75f3e9256c5d
1 #! /bin/sh
2 # Copyright (C) 1998, 2001, 2002, 2003, 2005 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 to see if `m4_sinclude' and `m4_include' works.
19 . ./defs || exit 1
21 set -e
23 # Overwrite configure.in, because the default uses `sinclude' as package
24 # name and this play havoc with Autoconf on some platforms (`sinclude'
25 # is an m4 macro).
26 cat > configure.in <<EOF
27 AC_INIT([amsinclude], [1.0])
28 AM_INIT_AUTOMAKE
29 AC_CONFIG_FILES([Makefile])
30 sinclude([doesntexist.m4])
31 EOF
33 mkdir sub
34 cat > sub/p.m4 << 'END'
35 AC_SUBST(MAGICALPIG)
36 END
38 cat > sub/h.m4 << 'END'
39 AC_SUBST(MAGICALHOG)
40 END
42 cat > sub/g.m4 << 'END'
43 AC_SUBST(GREPME)
44 END
46 : > Makefile.am
48 echo 'sinclude(sub/g.m4)' >> acinclude.m4
49 echo 'm4_sinclude(sub/doesntexist.m4)' >> acinclude.m4
51 $ACLOCAL
53 echo 'm4_sinclude(sub/p.m4)' >> aclocal.m4
54 echo 'm4_include(sub/h.m4)' >> aclocal.m4
56 $AUTOMAKE
58 grep doesntexist Makefile.in && exit 1
59 grep MAGICALPIG Makefile.in
60 grep MAGICALHOG Makefile.in
61 grep GREPME Makefile.in