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 'remake-makefile-vpath.sh', which
22 # performs the 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 remake-makefile-vpath.sh 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 configure.ac and aclocal.m4 to add a directory of extra m4
114 # files considered by aclocal. Also update checks in Makefile.am.
115 # Note that we won't use this new directory of extra m4 files in the
116 # first rebuild below (but we will in the second).
122 cat > $srcdir/Makefile.am <<'END'
127 test x'$(QUUX)' = x'%Foo%'
130 # Modify configure.ac and aclocal.m4.
134 cat $srcdir/configure.stub - > $srcdir/configure.ac <<'END'
135 AC_CONFIG_MACRO_DIR([m4])
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/m4/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/m4/*.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%])])