2 # Copyright (C) 2010-2012 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 2, or (at your option)
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 basic remake rules for Makefiles, for an *in-tree build*.
18 # This testcase checks dependency of generated Makefile from Makefile.am,
19 # configure.ac, acinclude.m4, aclocal.m4, and extra m4 files considered
21 # Keep this in sync with sister test 'remake8b.test', which performs the
22 # same checks for a VPATH build.
26 mv -f configure.ac configure.stub
28 cat > Makefile.am
<<'END'
38 cat configure.stub
- > configure.ac
<<'END'
46 srcdir
='.' # To make syncing with remake8b.test easier.
57 # Modify just Makefile.am.
61 cat > $srcdir/Makefile.am
<<'END'
68 test ! -r $(srcdir)/foo
73 using_gmake ||
$MAKE Makefile
82 # Modify Makefile.am and configure.ac.
86 cat > $srcdir/Makefile.am
<<'END'
90 test ! -r $(srcdir)/bar
94 cat $srcdir/configure.stub
- > $srcdir/configure.ac
<<'END'
95 AC_CONFIG_FILES([quux])
96 AC_SUBST([QUUX], [Zardoz])
100 cat > $srcdir/quux.
in <<'END'
104 using_gmake ||
$MAKE Makefile
113 # Modify Makefile.am to add a directory of extra m4 files
114 # considered by aclocal.
120 cat > $srcdir/Makefile.am
<<'END'
121 ACLOCAL_AMFLAGS = -I m4
125 test x'$(QUUX)' = x'%Foo%'
128 $MAKE # This should place aclocal flags in Makefile.
129 grep '.*-I m4' Makefile
# Sanity check.
131 # Modify configure.ac and aclocal.m4.
135 cat $srcdir/configure.stub
- > $srcdir/configure.ac
<<'END'
136 AC_CONFIG_FILES([quux])
141 cat >> $srcdir/aclocal.
m4 <<'END'
142 AC_DEFUN([MY_CUSTOM_MACRO], [AC_SUBST([QUUX], [%Foo%])])
150 # Modify Makefile.am, remove aclocal.m4, and add a new m4 file to
151 # the directory of extra m4 files considered by aclocal. This new
152 # file should now provide a macro required by configure.ac and that
153 # was previously provided by aclocal.m4.
157 sed 's/%Foo%/%Bar%/g' $srcdir/Makefile.am
> t
158 mv -f t
$srcdir/Makefile.am
159 cat $srcdir/Makefile.am
160 rm -f $srcdir/aclocal.
m4
161 cat > $srcdir/m
4/blah.
m4 <<'END'
162 AC_DEFUN([MY_CUSTOM_MACRO], [AC_SUBST([QUUX], [%Bar%])])
170 # Modify Makefile.am, remove all the extra m4 files to considered
171 # by aclocal, and add an acinclude.m4 file. This last file should
172 # now provide a macro required by configure.ac, and that was
173 # previously provided by the extra m4 files considered by aclocal.
177 rm -f $srcdir/m
4/*.
m4
178 sed 's/%Bar%/%Quux%/g' $srcdir/Makefile.am
> t
179 mv -f t
$srcdir/Makefile.am
180 cat $srcdir/Makefile.am
181 cat > $srcdir/acinclude.
m4 <<'END'
182 AC_DEFUN([MY_CUSTOM_MACRO], [AC_SUBST([QUUX], [%Quux%])])