Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Unified Diff: Makefile.in

Side-by-side diff isn't available for this file because of its large size.
Issue 8372081: Fix cross-tool check for readelf (Closed) Base URL: http://git.chromium.org/native_client/nacl-newlib.git@master
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « no previous file | configure » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.in
diff --git a/Makefile.in b/Makefile.in
index e5fa1d3a0f0fa4760c6f95cc4f80da7d2821f58e..8eb182986e72b559733d1de645dd92effde5acb2 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -3,19 +3,19 @@
#
# Makefile for directory with subdirs to build.
# Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
-# 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+# 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011
# Free Software Foundation
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
-#
+#
# You should have received a copy of the GNU General Public License
# along with this program; see the file COPYING3. If not see
# <http://www.gnu.org/licenses/>.
@@ -100,7 +100,7 @@ TOPLEVEL_CONFIGURE_ARGUMENTS=@TOPLEVEL_CONFIGURE_ARGUMENTS@
tooldir = @tooldir@
build_tooldir = @build_tooldir@
-GDB_NLM_DEPS =
+GDB_NLM_DEPS =
# This is the name of the environment variable used for the path to
# the libraries.
@@ -204,12 +204,14 @@ HOST_EXPORTS = \
WINDMC="$(WINDMC)"; export WINDMC; \
OBJCOPY="$(OBJCOPY)"; export OBJCOPY; \
OBJDUMP="$(OBJDUMP)"; export OBJDUMP; \
+ READELF="$(READELF)"; export READELF; \
AR_FOR_TARGET="$(AR_FOR_TARGET)"; export AR_FOR_TARGET; \
AS_FOR_TARGET="$(AS_FOR_TARGET)"; export AS_FOR_TARGET; \
GCC_FOR_TARGET="$(GCC_FOR_TARGET)"; export GCC_FOR_TARGET; \
LD_FOR_TARGET="$(LD_FOR_TARGET)"; export LD_FOR_TARGET; \
NM_FOR_TARGET="$(NM_FOR_TARGET)"; export NM_FOR_TARGET; \
OBJDUMP_FOR_TARGET="$(OBJDUMP_FOR_TARGET)"; export OBJDUMP_FOR_TARGET; \
+ READELF_FOR_TARGET="$(READELF_FOR_TARGET)"; export READELF_FOR_TARGET; \
RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)"; export RANLIB_FOR_TARGET; \
TOPLEVEL_CONFIGURE_ARGUMENTS="$(TOPLEVEL_CONFIGURE_ARGUMENTS)"; export TOPLEVEL_CONFIGURE_ARGUMENTS; \
HOST_LIBS="$(STAGE1_LIBS)"; export HOST_LIBS; \
@@ -277,6 +279,7 @@ BASE_TARGET_EXPORTS = \
LIPO="$(LIPO_FOR_TARGET)"; export LIPO; \
NM="$(COMPILER_NM_FOR_TARGET)"; export NM; \
OBJDUMP="$(OBJDUMP_FOR_TARGET)"; export OBJDUMP; \
+ READELF="$(READELF_FOR_TARGET)"; export READELF; \
RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \
STRIP="$(STRIP_FOR_TARGET)"; export STRIP; \
WINDRES="$(WINDRES_FOR_TARGET)"; export WINDRES; \
@@ -382,6 +385,7 @@ LD = @LD@
LIPO = @LIPO@
NM = @NM@
OBJDUMP = @OBJDUMP@
+READELF = @READELF@
RANLIB = @RANLIB@
STRIP = @STRIP@
WINDRES = @WINDRES@
@@ -516,6 +520,7 @@ LD_FOR_TARGET=@LD_FOR_TARGET@
LIPO_FOR_TARGET=@LIPO_FOR_TARGET@
NM_FOR_TARGET=@NM_FOR_TARGET@
OBJDUMP_FOR_TARGET=@OBJDUMP_FOR_TARGET@
+READELF_FOR_TARGET=@READELF_FOR_TARGET@
RANLIB_FOR_TARGET=@RANLIB_FOR_TARGET@
STRIP_FOR_TARGET=@STRIP_FOR_TARGET@
WINDRES_FOR_TARGET=@WINDRES_FOR_TARGET@
@@ -530,7 +535,7 @@ CXXFLAGS_FOR_TARGET = @CXXFLAGS_FOR_TARGET@
LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
-LDFLAGS_FOR_TARGET =
+LDFLAGS_FOR_TARGET =
FLAGS_FOR_TARGET = @FLAGS_FOR_TARGET@
SYSROOT_CFLAGS_FOR_TARGET = @SYSROOT_CFLAGS_FOR_TARGET@
@@ -706,6 +711,7 @@ BASE_FLAGS_TO_PASS = \
"LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \
"NM_FOR_TARGET=$(NM_FOR_TARGET)" \
"OBJDUMP_FOR_TARGET=$(OBJDUMP_FOR_TARGET)" \
+ "READELF_FOR_TARGET=$(READELF_FOR_TARGET)" \
"RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
"STRIP_FOR_TARGET=$(STRIP_FOR_TARGET)" \
"WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \
@@ -733,7 +739,7 @@ BASE_FLAGS_TO_PASS = \
"STAGEfeedback_TFLAGS=$(STAGEfeedback_TFLAGS)" \
"TFLAGS=$(TFLAGS)" \
"CONFIG_SHELL=$(SHELL)" \
- "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)"
+ "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)"
# We leave this in just in case, but it is not needed anymore.
RECURSE_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS)
@@ -752,6 +758,7 @@ EXTRA_HOST_FLAGS = \
'LIPO=$(LIPO)' \
'NM=$(NM)' \
'OBJDUMP=$(OBJDUMP)' \
+ 'READELF=$(READELF)' \
'RANLIB=$(RANLIB)' \
'STRIP=$(STRIP)' \
'WINDRES=$(WINDRES)' \
@@ -802,6 +809,7 @@ EXTRA_TARGET_FLAGS = \
'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
'NM=$(COMPILER_NM_FOR_TARGET)' \
'OBJDUMP=$$(OBJDUMP_FOR_TARGET)' \
+ 'READELF=$$(READELF_FOR_TARGET)' \
'RANLIB=$$(RANLIB_FOR_TARGET)' \
'WINDRES=$$(WINDRES_FOR_TARGET)' \
'WINDMC=$$(WINDMC_FOR_TARGET)' \
@@ -2659,7 +2667,7 @@ local-maintainer-clean:
clean: do-clean local-clean
mostlyclean: do-mostlyclean local-clean
distclean: do-distclean local-clean local-distclean
-maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean
+maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean
maintainer-clean: local-distclean
realclean: maintainer-clean
@@ -3034,7 +3042,7 @@ dir.info: do-install-info
dist:
@echo "Building a full distribution of this tree isn't done"
- @echo "via 'make dist'. Check out the etc/ subdirectory"
+ @echo "via 'make dist'. Check out the etc/ subdirectory"
etags tags: TAGS
@@ -3066,7 +3074,7 @@ configure-build-libiberty: stage_current
@endif gcc-bootstrap
@if build-libiberty
maybe-configure-build-libiberty: configure-build-libiberty
-configure-build-libiberty:
+configure-build-libiberty:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -3122,7 +3130,7 @@ configure-build-bison: stage_current
@endif gcc-bootstrap
@if build-bison
maybe-configure-build-bison: configure-build-bison
-configure-build-bison:
+configure-build-bison:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -3178,7 +3186,7 @@ configure-build-byacc: stage_current
@endif gcc-bootstrap
@if build-byacc
maybe-configure-build-byacc: configure-build-byacc
-configure-build-byacc:
+configure-build-byacc:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -3234,7 +3242,7 @@ configure-build-flex: stage_current
@endif gcc-bootstrap
@if build-flex
maybe-configure-build-flex: configure-build-flex
-configure-build-flex:
+configure-build-flex:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -3290,7 +3298,7 @@ configure-build-m4: stage_current
@endif gcc-bootstrap
@if build-m4
maybe-configure-build-m4: configure-build-m4
-configure-build-m4:
+configure-build-m4:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -3346,7 +3354,7 @@ configure-build-texinfo: stage_current
@endif gcc-bootstrap
@if build-texinfo
maybe-configure-build-texinfo: configure-build-texinfo
-configure-build-texinfo:
+configure-build-texinfo:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -3402,7 +3410,7 @@ configure-build-fixincludes: stage_current
@endif gcc-bootstrap
@if build-fixincludes
maybe-configure-build-fixincludes: configure-build-fixincludes
-configure-build-fixincludes:
+configure-build-fixincludes:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -3463,7 +3471,7 @@ configure-ash: stage_current
@endif gcc-bootstrap
@if ash
maybe-configure-ash: configure-ash
-configure-ash:
+configure-ash:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -3548,7 +3556,7 @@ maybe-info-ash:
maybe-info-ash: info-ash
info-ash: \
- configure-ash
+ configure-ash
@: $(MAKE); $(unstage)
@[ -f ./ash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3574,7 +3582,7 @@ maybe-dvi-ash:
maybe-dvi-ash: dvi-ash
dvi-ash: \
- configure-ash
+ configure-ash
@: $(MAKE); $(unstage)
@[ -f ./ash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3600,7 +3608,7 @@ maybe-pdf-ash:
maybe-pdf-ash: pdf-ash
pdf-ash: \
- configure-ash
+ configure-ash
@: $(MAKE); $(unstage)
@[ -f ./ash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3626,7 +3634,7 @@ maybe-html-ash:
maybe-html-ash: html-ash
html-ash: \
- configure-ash
+ configure-ash
@: $(MAKE); $(unstage)
@[ -f ./ash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3652,7 +3660,7 @@ maybe-TAGS-ash:
maybe-TAGS-ash: TAGS-ash
TAGS-ash: \
- configure-ash
+ configure-ash
@: $(MAKE); $(unstage)
@[ -f ./ash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3679,7 +3687,7 @@ maybe-install-info-ash: install-info-ash
install-info-ash: \
configure-ash \
- info-ash
+ info-ash
@: $(MAKE); $(unstage)
@[ -f ./ash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3706,7 +3714,7 @@ maybe-install-pdf-ash: install-pdf-ash
install-pdf-ash: \
configure-ash \
- pdf-ash
+ pdf-ash
@: $(MAKE); $(unstage)
@[ -f ./ash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3733,7 +3741,7 @@ maybe-install-html-ash: install-html-ash
install-html-ash: \
configure-ash \
- html-ash
+ html-ash
@: $(MAKE); $(unstage)
@[ -f ./ash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3759,7 +3767,7 @@ maybe-installcheck-ash:
maybe-installcheck-ash: installcheck-ash
installcheck-ash: \
- configure-ash
+ configure-ash
@: $(MAKE); $(unstage)
@[ -f ./ash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3784,7 +3792,7 @@ maybe-mostlyclean-ash:
@if ash
maybe-mostlyclean-ash: mostlyclean-ash
-mostlyclean-ash:
+mostlyclean-ash:
@: $(MAKE); $(unstage)
@[ -f ./ash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3809,7 +3817,7 @@ maybe-clean-ash:
@if ash
maybe-clean-ash: clean-ash
-clean-ash:
+clean-ash:
@: $(MAKE); $(unstage)
@[ -f ./ash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3834,7 +3842,7 @@ maybe-distclean-ash:
@if ash
maybe-distclean-ash: distclean-ash
-distclean-ash:
+distclean-ash:
@: $(MAKE); $(unstage)
@[ -f ./ash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3859,7 +3867,7 @@ maybe-maintainer-clean-ash:
@if ash
maybe-maintainer-clean-ash: maintainer-clean-ash
-maintainer-clean-ash:
+maintainer-clean-ash:
@: $(MAKE); $(unstage)
@[ -f ./ash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3888,7 +3896,7 @@ configure-autoconf: stage_current
@endif gcc-bootstrap
@if autoconf
maybe-configure-autoconf: configure-autoconf
-configure-autoconf:
+configure-autoconf:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -3973,7 +3981,7 @@ maybe-info-autoconf:
maybe-info-autoconf: info-autoconf
info-autoconf: \
- configure-autoconf
+ configure-autoconf
@: $(MAKE); $(unstage)
@[ -f ./autoconf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -3999,7 +4007,7 @@ maybe-dvi-autoconf:
maybe-dvi-autoconf: dvi-autoconf
dvi-autoconf: \
- configure-autoconf
+ configure-autoconf
@: $(MAKE); $(unstage)
@[ -f ./autoconf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4025,7 +4033,7 @@ maybe-pdf-autoconf:
maybe-pdf-autoconf: pdf-autoconf
pdf-autoconf: \
- configure-autoconf
+ configure-autoconf
@: $(MAKE); $(unstage)
@[ -f ./autoconf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4051,7 +4059,7 @@ maybe-html-autoconf:
maybe-html-autoconf: html-autoconf
html-autoconf: \
- configure-autoconf
+ configure-autoconf
@: $(MAKE); $(unstage)
@[ -f ./autoconf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4077,7 +4085,7 @@ maybe-TAGS-autoconf:
maybe-TAGS-autoconf: TAGS-autoconf
TAGS-autoconf: \
- configure-autoconf
+ configure-autoconf
@: $(MAKE); $(unstage)
@[ -f ./autoconf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4104,7 +4112,7 @@ maybe-install-info-autoconf: install-info-autoconf
install-info-autoconf: \
configure-autoconf \
- info-autoconf
+ info-autoconf
@: $(MAKE); $(unstage)
@[ -f ./autoconf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4131,7 +4139,7 @@ maybe-install-pdf-autoconf: install-pdf-autoconf
install-pdf-autoconf: \
configure-autoconf \
- pdf-autoconf
+ pdf-autoconf
@: $(MAKE); $(unstage)
@[ -f ./autoconf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4158,7 +4166,7 @@ maybe-install-html-autoconf: install-html-autoconf
install-html-autoconf: \
configure-autoconf \
- html-autoconf
+ html-autoconf
@: $(MAKE); $(unstage)
@[ -f ./autoconf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4184,7 +4192,7 @@ maybe-installcheck-autoconf:
maybe-installcheck-autoconf: installcheck-autoconf
installcheck-autoconf: \
- configure-autoconf
+ configure-autoconf
@: $(MAKE); $(unstage)
@[ -f ./autoconf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4209,7 +4217,7 @@ maybe-mostlyclean-autoconf:
@if autoconf
maybe-mostlyclean-autoconf: mostlyclean-autoconf
-mostlyclean-autoconf:
+mostlyclean-autoconf:
@: $(MAKE); $(unstage)
@[ -f ./autoconf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4234,7 +4242,7 @@ maybe-clean-autoconf:
@if autoconf
maybe-clean-autoconf: clean-autoconf
-clean-autoconf:
+clean-autoconf:
@: $(MAKE); $(unstage)
@[ -f ./autoconf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4259,7 +4267,7 @@ maybe-distclean-autoconf:
@if autoconf
maybe-distclean-autoconf: distclean-autoconf
-distclean-autoconf:
+distclean-autoconf:
@: $(MAKE); $(unstage)
@[ -f ./autoconf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4284,7 +4292,7 @@ maybe-maintainer-clean-autoconf:
@if autoconf
maybe-maintainer-clean-autoconf: maintainer-clean-autoconf
-maintainer-clean-autoconf:
+maintainer-clean-autoconf:
@: $(MAKE); $(unstage)
@[ -f ./autoconf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4313,7 +4321,7 @@ configure-automake: stage_current
@endif gcc-bootstrap
@if automake
maybe-configure-automake: configure-automake
-configure-automake:
+configure-automake:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -4398,7 +4406,7 @@ maybe-info-automake:
maybe-info-automake: info-automake
info-automake: \
- configure-automake
+ configure-automake
@: $(MAKE); $(unstage)
@[ -f ./automake/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4424,7 +4432,7 @@ maybe-dvi-automake:
maybe-dvi-automake: dvi-automake
dvi-automake: \
- configure-automake
+ configure-automake
@: $(MAKE); $(unstage)
@[ -f ./automake/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4450,7 +4458,7 @@ maybe-pdf-automake:
maybe-pdf-automake: pdf-automake
pdf-automake: \
- configure-automake
+ configure-automake
@: $(MAKE); $(unstage)
@[ -f ./automake/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4476,7 +4484,7 @@ maybe-html-automake:
maybe-html-automake: html-automake
html-automake: \
- configure-automake
+ configure-automake
@: $(MAKE); $(unstage)
@[ -f ./automake/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4502,7 +4510,7 @@ maybe-TAGS-automake:
maybe-TAGS-automake: TAGS-automake
TAGS-automake: \
- configure-automake
+ configure-automake
@: $(MAKE); $(unstage)
@[ -f ./automake/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4529,7 +4537,7 @@ maybe-install-info-automake: install-info-automake
install-info-automake: \
configure-automake \
- info-automake
+ info-automake
@: $(MAKE); $(unstage)
@[ -f ./automake/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4556,7 +4564,7 @@ maybe-install-pdf-automake: install-pdf-automake
install-pdf-automake: \
configure-automake \
- pdf-automake
+ pdf-automake
@: $(MAKE); $(unstage)
@[ -f ./automake/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4583,7 +4591,7 @@ maybe-install-html-automake: install-html-automake
install-html-automake: \
configure-automake \
- html-automake
+ html-automake
@: $(MAKE); $(unstage)
@[ -f ./automake/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4609,7 +4617,7 @@ maybe-installcheck-automake:
maybe-installcheck-automake: installcheck-automake
installcheck-automake: \
- configure-automake
+ configure-automake
@: $(MAKE); $(unstage)
@[ -f ./automake/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4634,7 +4642,7 @@ maybe-mostlyclean-automake:
@if automake
maybe-mostlyclean-automake: mostlyclean-automake
-mostlyclean-automake:
+mostlyclean-automake:
@: $(MAKE); $(unstage)
@[ -f ./automake/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4659,7 +4667,7 @@ maybe-clean-automake:
@if automake
maybe-clean-automake: clean-automake
-clean-automake:
+clean-automake:
@: $(MAKE); $(unstage)
@[ -f ./automake/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4684,7 +4692,7 @@ maybe-distclean-automake:
@if automake
maybe-distclean-automake: distclean-automake
-distclean-automake:
+distclean-automake:
@: $(MAKE); $(unstage)
@[ -f ./automake/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4709,7 +4717,7 @@ maybe-maintainer-clean-automake:
@if automake
maybe-maintainer-clean-automake: maintainer-clean-automake
-maintainer-clean-automake:
+maintainer-clean-automake:
@: $(MAKE); $(unstage)
@[ -f ./automake/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4738,7 +4746,7 @@ configure-bash: stage_current
@endif gcc-bootstrap
@if bash
maybe-configure-bash: configure-bash
-configure-bash:
+configure-bash:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -4823,7 +4831,7 @@ maybe-info-bash:
maybe-info-bash: info-bash
info-bash: \
- configure-bash
+ configure-bash
@: $(MAKE); $(unstage)
@[ -f ./bash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4849,7 +4857,7 @@ maybe-dvi-bash:
maybe-dvi-bash: dvi-bash
dvi-bash: \
- configure-bash
+ configure-bash
@: $(MAKE); $(unstage)
@[ -f ./bash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4875,7 +4883,7 @@ maybe-pdf-bash:
maybe-pdf-bash: pdf-bash
pdf-bash: \
- configure-bash
+ configure-bash
@: $(MAKE); $(unstage)
@[ -f ./bash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4901,7 +4909,7 @@ maybe-html-bash:
maybe-html-bash: html-bash
html-bash: \
- configure-bash
+ configure-bash
@: $(MAKE); $(unstage)
@[ -f ./bash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4927,7 +4935,7 @@ maybe-TAGS-bash:
maybe-TAGS-bash: TAGS-bash
TAGS-bash: \
- configure-bash
+ configure-bash
@: $(MAKE); $(unstage)
@[ -f ./bash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4954,7 +4962,7 @@ maybe-install-info-bash: install-info-bash
install-info-bash: \
configure-bash \
- info-bash
+ info-bash
@: $(MAKE); $(unstage)
@[ -f ./bash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -4981,7 +4989,7 @@ maybe-install-pdf-bash: install-pdf-bash
install-pdf-bash: \
configure-bash \
- pdf-bash
+ pdf-bash
@: $(MAKE); $(unstage)
@[ -f ./bash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -5008,7 +5016,7 @@ maybe-install-html-bash: install-html-bash
install-html-bash: \
configure-bash \
- html-bash
+ html-bash
@: $(MAKE); $(unstage)
@[ -f ./bash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -5034,7 +5042,7 @@ maybe-installcheck-bash:
maybe-installcheck-bash: installcheck-bash
installcheck-bash: \
- configure-bash
+ configure-bash
@: $(MAKE); $(unstage)
@[ -f ./bash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -5059,7 +5067,7 @@ maybe-mostlyclean-bash:
@if bash
maybe-mostlyclean-bash: mostlyclean-bash
-mostlyclean-bash:
+mostlyclean-bash:
@: $(MAKE); $(unstage)
@[ -f ./bash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -5084,7 +5092,7 @@ maybe-clean-bash:
@if bash
maybe-clean-bash: clean-bash
-clean-bash:
+clean-bash:
@: $(MAKE); $(unstage)
@[ -f ./bash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -5109,7 +5117,7 @@ maybe-distclean-bash:
@if bash
maybe-distclean-bash: distclean-bash
-distclean-bash:
+distclean-bash:
@: $(MAKE); $(unstage)
@[ -f ./bash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -5134,7 +5142,7 @@ maybe-maintainer-clean-bash:
@if bash
maybe-maintainer-clean-bash: maintainer-clean-bash
-maintainer-clean-bash:
+maintainer-clean-bash:
@: $(MAKE); $(unstage)
@[ -f ./bash/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -5163,7 +5171,7 @@ configure-bfd: stage_current
@endif gcc-bootstrap
@if bfd
maybe-configure-bfd: configure-bfd
-configure-bfd:
+configure-bfd:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
@@ -5702,7 +5710,7 @@ maybe-info-bfd:
maybe-info-bfd: info-bfd
info-bfd: \
- configure-bfd
+ configure-bfd
@[ -f ./bfd/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -5727,7 +5735,7 @@ maybe-dvi-bfd:
maybe-dvi-bfd: dvi-bfd
dvi-bfd: \
- configure-bfd
+ configure-bfd
@[ -f ./bfd/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -5752,7 +5760,7 @@ maybe-pdf-bfd:
maybe-pdf-bfd: pdf-bfd
pdf-bfd: \
- configure-bfd
+ configure-bfd
@[ -f ./bfd/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -5777,7 +5785,7 @@ maybe-html-bfd:
maybe-html-bfd: html-bfd
html-bfd: \
- configure-bfd
+ configure-bfd
@[ -f ./bfd/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -5802,7 +5810,7 @@ maybe-TAGS-bfd:
maybe-TAGS-bfd: TAGS-bfd
TAGS-bfd: \
- configure-bfd
+ configure-bfd
@[ -f ./bfd/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -5828,7 +5836,7 @@ maybe-install-info-bfd: install-info-bfd
install-info-bfd: \
configure-bfd \
- info-bfd
+ info-bfd
@[ -f ./bfd/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -5854,7 +5862,7 @@ maybe-install-pdf-bfd: install-pdf-bfd
install-pdf-bfd: \
configure-bfd \
- pdf-bfd
+ pdf-bfd
@[ -f ./bfd/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -5880,7 +5888,7 @@ maybe-install-html-bfd: install-html-bfd
install-html-bfd: \
configure-bfd \
- html-bfd
+ html-bfd
@[ -f ./bfd/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -5905,7 +5913,7 @@ maybe-installcheck-bfd:
maybe-installcheck-bfd: installcheck-bfd
installcheck-bfd: \
- configure-bfd
+ configure-bfd
@[ -f ./bfd/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -5929,7 +5937,7 @@ maybe-mostlyclean-bfd:
@if bfd
maybe-mostlyclean-bfd: mostlyclean-bfd
-mostlyclean-bfd:
+mostlyclean-bfd:
@[ -f ./bfd/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -5953,7 +5961,7 @@ maybe-clean-bfd:
@if bfd
maybe-clean-bfd: clean-bfd
-clean-bfd:
+clean-bfd:
@[ -f ./bfd/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -5977,7 +5985,7 @@ maybe-distclean-bfd:
@if bfd
maybe-distclean-bfd: distclean-bfd
-distclean-bfd:
+distclean-bfd:
@[ -f ./bfd/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6001,7 +6009,7 @@ maybe-maintainer-clean-bfd:
@if bfd
maybe-maintainer-clean-bfd: maintainer-clean-bfd
-maintainer-clean-bfd:
+maintainer-clean-bfd:
@[ -f ./bfd/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6029,7 +6037,7 @@ configure-opcodes: stage_current
@endif gcc-bootstrap
@if opcodes
maybe-configure-opcodes: configure-opcodes
-configure-opcodes:
+configure-opcodes:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
@@ -6568,7 +6576,7 @@ maybe-info-opcodes:
maybe-info-opcodes: info-opcodes
info-opcodes: \
- configure-opcodes
+ configure-opcodes
@[ -f ./opcodes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6593,7 +6601,7 @@ maybe-dvi-opcodes:
maybe-dvi-opcodes: dvi-opcodes
dvi-opcodes: \
- configure-opcodes
+ configure-opcodes
@[ -f ./opcodes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6618,7 +6626,7 @@ maybe-pdf-opcodes:
maybe-pdf-opcodes: pdf-opcodes
pdf-opcodes: \
- configure-opcodes
+ configure-opcodes
@[ -f ./opcodes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6643,7 +6651,7 @@ maybe-html-opcodes:
maybe-html-opcodes: html-opcodes
html-opcodes: \
- configure-opcodes
+ configure-opcodes
@[ -f ./opcodes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6668,7 +6676,7 @@ maybe-TAGS-opcodes:
maybe-TAGS-opcodes: TAGS-opcodes
TAGS-opcodes: \
- configure-opcodes
+ configure-opcodes
@[ -f ./opcodes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6694,7 +6702,7 @@ maybe-install-info-opcodes: install-info-opcodes
install-info-opcodes: \
configure-opcodes \
- info-opcodes
+ info-opcodes
@[ -f ./opcodes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6720,7 +6728,7 @@ maybe-install-pdf-opcodes: install-pdf-opcodes
install-pdf-opcodes: \
configure-opcodes \
- pdf-opcodes
+ pdf-opcodes
@[ -f ./opcodes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6746,7 +6754,7 @@ maybe-install-html-opcodes: install-html-opcodes
install-html-opcodes: \
configure-opcodes \
- html-opcodes
+ html-opcodes
@[ -f ./opcodes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6771,7 +6779,7 @@ maybe-installcheck-opcodes:
maybe-installcheck-opcodes: installcheck-opcodes
installcheck-opcodes: \
- configure-opcodes
+ configure-opcodes
@[ -f ./opcodes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6795,7 +6803,7 @@ maybe-mostlyclean-opcodes:
@if opcodes
maybe-mostlyclean-opcodes: mostlyclean-opcodes
-mostlyclean-opcodes:
+mostlyclean-opcodes:
@[ -f ./opcodes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6819,7 +6827,7 @@ maybe-clean-opcodes:
@if opcodes
maybe-clean-opcodes: clean-opcodes
-clean-opcodes:
+clean-opcodes:
@[ -f ./opcodes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6843,7 +6851,7 @@ maybe-distclean-opcodes:
@if opcodes
maybe-distclean-opcodes: distclean-opcodes
-distclean-opcodes:
+distclean-opcodes:
@[ -f ./opcodes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6867,7 +6875,7 @@ maybe-maintainer-clean-opcodes:
@if opcodes
maybe-maintainer-clean-opcodes: maintainer-clean-opcodes
-maintainer-clean-opcodes:
+maintainer-clean-opcodes:
@[ -f ./opcodes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6895,7 +6903,7 @@ configure-binutils: stage_current
@endif gcc-bootstrap
@if binutils
maybe-configure-binutils: configure-binutils
-configure-binutils:
+configure-binutils:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
@@ -7434,7 +7442,7 @@ maybe-info-binutils:
maybe-info-binutils: info-binutils
info-binutils: \
- configure-binutils
+ configure-binutils
@[ -f ./binutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7459,7 +7467,7 @@ maybe-dvi-binutils:
maybe-dvi-binutils: dvi-binutils
dvi-binutils: \
- configure-binutils
+ configure-binutils
@[ -f ./binutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7484,7 +7492,7 @@ maybe-pdf-binutils:
maybe-pdf-binutils: pdf-binutils
pdf-binutils: \
- configure-binutils
+ configure-binutils
@[ -f ./binutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7509,7 +7517,7 @@ maybe-html-binutils:
maybe-html-binutils: html-binutils
html-binutils: \
- configure-binutils
+ configure-binutils
@[ -f ./binutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7534,7 +7542,7 @@ maybe-TAGS-binutils:
maybe-TAGS-binutils: TAGS-binutils
TAGS-binutils: \
- configure-binutils
+ configure-binutils
@[ -f ./binutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7560,7 +7568,7 @@ maybe-install-info-binutils: install-info-binutils
install-info-binutils: \
configure-binutils \
- info-binutils
+ info-binutils
@[ -f ./binutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7586,7 +7594,7 @@ maybe-install-pdf-binutils: install-pdf-binutils
install-pdf-binutils: \
configure-binutils \
- pdf-binutils
+ pdf-binutils
@[ -f ./binutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7612,7 +7620,7 @@ maybe-install-html-binutils: install-html-binutils
install-html-binutils: \
configure-binutils \
- html-binutils
+ html-binutils
@[ -f ./binutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7637,7 +7645,7 @@ maybe-installcheck-binutils:
maybe-installcheck-binutils: installcheck-binutils
installcheck-binutils: \
- configure-binutils
+ configure-binutils
@[ -f ./binutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7661,7 +7669,7 @@ maybe-mostlyclean-binutils:
@if binutils
maybe-mostlyclean-binutils: mostlyclean-binutils
-mostlyclean-binutils:
+mostlyclean-binutils:
@[ -f ./binutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7685,7 +7693,7 @@ maybe-clean-binutils:
@if binutils
maybe-clean-binutils: clean-binutils
-clean-binutils:
+clean-binutils:
@[ -f ./binutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7709,7 +7717,7 @@ maybe-distclean-binutils:
@if binutils
maybe-distclean-binutils: distclean-binutils
-distclean-binutils:
+distclean-binutils:
@[ -f ./binutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7733,7 +7741,7 @@ maybe-maintainer-clean-binutils:
@if binutils
maybe-maintainer-clean-binutils: maintainer-clean-binutils
-maintainer-clean-binutils:
+maintainer-clean-binutils:
@[ -f ./binutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7761,7 +7769,7 @@ configure-bison: stage_current
@endif gcc-bootstrap
@if bison
maybe-configure-bison: configure-bison
-configure-bison:
+configure-bison:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -7849,7 +7857,7 @@ maybe-info-bison:
maybe-info-bison: info-bison
info-bison: \
- configure-bison
+ configure-bison
@: $(MAKE); $(unstage)
@[ -f ./bison/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -7875,7 +7883,7 @@ maybe-dvi-bison:
maybe-dvi-bison: dvi-bison
dvi-bison: \
- configure-bison
+ configure-bison
@: $(MAKE); $(unstage)
@[ -f ./bison/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -7901,7 +7909,7 @@ maybe-pdf-bison:
maybe-pdf-bison: pdf-bison
pdf-bison: \
- configure-bison
+ configure-bison
@: $(MAKE); $(unstage)
@[ -f ./bison/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -7927,7 +7935,7 @@ maybe-html-bison:
maybe-html-bison: html-bison
html-bison: \
- configure-bison
+ configure-bison
@: $(MAKE); $(unstage)
@[ -f ./bison/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -7953,7 +7961,7 @@ maybe-TAGS-bison:
maybe-TAGS-bison: TAGS-bison
TAGS-bison: \
- configure-bison
+ configure-bison
@: $(MAKE); $(unstage)
@[ -f ./bison/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -7980,7 +7988,7 @@ maybe-install-info-bison: install-info-bison
install-info-bison: \
configure-bison \
- info-bison
+ info-bison
@: $(MAKE); $(unstage)
@[ -f ./bison/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8007,7 +8015,7 @@ maybe-install-pdf-bison: install-pdf-bison
install-pdf-bison: \
configure-bison \
- pdf-bison
+ pdf-bison
@: $(MAKE); $(unstage)
@[ -f ./bison/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8034,7 +8042,7 @@ maybe-install-html-bison: install-html-bison
install-html-bison: \
configure-bison \
- html-bison
+ html-bison
@: $(MAKE); $(unstage)
@[ -f ./bison/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8060,7 +8068,7 @@ maybe-installcheck-bison:
maybe-installcheck-bison: installcheck-bison
installcheck-bison: \
- configure-bison
+ configure-bison
@: $(MAKE); $(unstage)
@[ -f ./bison/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8085,7 +8093,7 @@ maybe-mostlyclean-bison:
@if bison
maybe-mostlyclean-bison: mostlyclean-bison
-mostlyclean-bison:
+mostlyclean-bison:
@: $(MAKE); $(unstage)
@[ -f ./bison/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8110,7 +8118,7 @@ maybe-clean-bison:
@if bison
maybe-clean-bison: clean-bison
-clean-bison:
+clean-bison:
@: $(MAKE); $(unstage)
@[ -f ./bison/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8135,7 +8143,7 @@ maybe-distclean-bison:
@if bison
maybe-distclean-bison: distclean-bison
-distclean-bison:
+distclean-bison:
@: $(MAKE); $(unstage)
@[ -f ./bison/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8160,7 +8168,7 @@ maybe-maintainer-clean-bison:
@if bison
maybe-maintainer-clean-bison: maintainer-clean-bison
-maintainer-clean-bison:
+maintainer-clean-bison:
@: $(MAKE); $(unstage)
@[ -f ./bison/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8189,7 +8197,7 @@ configure-byacc: stage_current
@endif gcc-bootstrap
@if byacc
maybe-configure-byacc: configure-byacc
-configure-byacc:
+configure-byacc:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -8277,7 +8285,7 @@ maybe-info-byacc:
maybe-info-byacc: info-byacc
info-byacc: \
- configure-byacc
+ configure-byacc
@: $(MAKE); $(unstage)
@[ -f ./byacc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8303,7 +8311,7 @@ maybe-dvi-byacc:
maybe-dvi-byacc: dvi-byacc
dvi-byacc: \
- configure-byacc
+ configure-byacc
@: $(MAKE); $(unstage)
@[ -f ./byacc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8329,7 +8337,7 @@ maybe-pdf-byacc:
maybe-pdf-byacc: pdf-byacc
pdf-byacc: \
- configure-byacc
+ configure-byacc
@: $(MAKE); $(unstage)
@[ -f ./byacc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8355,7 +8363,7 @@ maybe-html-byacc:
maybe-html-byacc: html-byacc
html-byacc: \
- configure-byacc
+ configure-byacc
@: $(MAKE); $(unstage)
@[ -f ./byacc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8381,7 +8389,7 @@ maybe-TAGS-byacc:
maybe-TAGS-byacc: TAGS-byacc
TAGS-byacc: \
- configure-byacc
+ configure-byacc
@: $(MAKE); $(unstage)
@[ -f ./byacc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8408,7 +8416,7 @@ maybe-install-info-byacc: install-info-byacc
install-info-byacc: \
configure-byacc \
- info-byacc
+ info-byacc
@: $(MAKE); $(unstage)
@[ -f ./byacc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8435,7 +8443,7 @@ maybe-install-pdf-byacc: install-pdf-byacc
install-pdf-byacc: \
configure-byacc \
- pdf-byacc
+ pdf-byacc
@: $(MAKE); $(unstage)
@[ -f ./byacc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8462,7 +8470,7 @@ maybe-install-html-byacc: install-html-byacc
install-html-byacc: \
configure-byacc \
- html-byacc
+ html-byacc
@: $(MAKE); $(unstage)
@[ -f ./byacc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8488,7 +8496,7 @@ maybe-installcheck-byacc:
maybe-installcheck-byacc: installcheck-byacc
installcheck-byacc: \
- configure-byacc
+ configure-byacc
@: $(MAKE); $(unstage)
@[ -f ./byacc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8513,7 +8521,7 @@ maybe-mostlyclean-byacc:
@if byacc
maybe-mostlyclean-byacc: mostlyclean-byacc
-mostlyclean-byacc:
+mostlyclean-byacc:
@: $(MAKE); $(unstage)
@[ -f ./byacc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8538,7 +8546,7 @@ maybe-clean-byacc:
@if byacc
maybe-clean-byacc: clean-byacc
-clean-byacc:
+clean-byacc:
@: $(MAKE); $(unstage)
@[ -f ./byacc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8563,7 +8571,7 @@ maybe-distclean-byacc:
@if byacc
maybe-distclean-byacc: distclean-byacc
-distclean-byacc:
+distclean-byacc:
@: $(MAKE); $(unstage)
@[ -f ./byacc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8588,7 +8596,7 @@ maybe-maintainer-clean-byacc:
@if byacc
maybe-maintainer-clean-byacc: maintainer-clean-byacc
-maintainer-clean-byacc:
+maintainer-clean-byacc:
@: $(MAKE); $(unstage)
@[ -f ./byacc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8617,7 +8625,7 @@ configure-bzip2: stage_current
@endif gcc-bootstrap
@if bzip2
maybe-configure-bzip2: configure-bzip2
-configure-bzip2:
+configure-bzip2:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -8702,7 +8710,7 @@ maybe-info-bzip2:
maybe-info-bzip2: info-bzip2
info-bzip2: \
- configure-bzip2
+ configure-bzip2
@: $(MAKE); $(unstage)
@[ -f ./bzip2/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8728,7 +8736,7 @@ maybe-dvi-bzip2:
maybe-dvi-bzip2: dvi-bzip2
dvi-bzip2: \
- configure-bzip2
+ configure-bzip2
@: $(MAKE); $(unstage)
@[ -f ./bzip2/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8754,7 +8762,7 @@ maybe-pdf-bzip2:
maybe-pdf-bzip2: pdf-bzip2
pdf-bzip2: \
- configure-bzip2
+ configure-bzip2
@: $(MAKE); $(unstage)
@[ -f ./bzip2/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8780,7 +8788,7 @@ maybe-html-bzip2:
maybe-html-bzip2: html-bzip2
html-bzip2: \
- configure-bzip2
+ configure-bzip2
@: $(MAKE); $(unstage)
@[ -f ./bzip2/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8806,7 +8814,7 @@ maybe-TAGS-bzip2:
maybe-TAGS-bzip2: TAGS-bzip2
TAGS-bzip2: \
- configure-bzip2
+ configure-bzip2
@: $(MAKE); $(unstage)
@[ -f ./bzip2/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8833,7 +8841,7 @@ maybe-install-info-bzip2: install-info-bzip2
install-info-bzip2: \
configure-bzip2 \
- info-bzip2
+ info-bzip2
@: $(MAKE); $(unstage)
@[ -f ./bzip2/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8860,7 +8868,7 @@ maybe-install-pdf-bzip2: install-pdf-bzip2
install-pdf-bzip2: \
configure-bzip2 \
- pdf-bzip2
+ pdf-bzip2
@: $(MAKE); $(unstage)
@[ -f ./bzip2/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8887,7 +8895,7 @@ maybe-install-html-bzip2: install-html-bzip2
install-html-bzip2: \
configure-bzip2 \
- html-bzip2
+ html-bzip2
@: $(MAKE); $(unstage)
@[ -f ./bzip2/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8913,7 +8921,7 @@ maybe-installcheck-bzip2:
maybe-installcheck-bzip2: installcheck-bzip2
installcheck-bzip2: \
- configure-bzip2
+ configure-bzip2
@: $(MAKE); $(unstage)
@[ -f ./bzip2/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8938,7 +8946,7 @@ maybe-mostlyclean-bzip2:
@if bzip2
maybe-mostlyclean-bzip2: mostlyclean-bzip2
-mostlyclean-bzip2:
+mostlyclean-bzip2:
@: $(MAKE); $(unstage)
@[ -f ./bzip2/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8963,7 +8971,7 @@ maybe-clean-bzip2:
@if bzip2
maybe-clean-bzip2: clean-bzip2
-clean-bzip2:
+clean-bzip2:
@: $(MAKE); $(unstage)
@[ -f ./bzip2/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -8988,7 +8996,7 @@ maybe-distclean-bzip2:
@if bzip2
maybe-distclean-bzip2: distclean-bzip2
-distclean-bzip2:
+distclean-bzip2:
@: $(MAKE); $(unstage)
@[ -f ./bzip2/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9013,7 +9021,7 @@ maybe-maintainer-clean-bzip2:
@if bzip2
maybe-maintainer-clean-bzip2: maintainer-clean-bzip2
-maintainer-clean-bzip2:
+maintainer-clean-bzip2:
@: $(MAKE); $(unstage)
@[ -f ./bzip2/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9042,7 +9050,7 @@ configure-cgen: stage_current
@endif gcc-bootstrap
@if cgen
maybe-configure-cgen: configure-cgen
-configure-cgen:
+configure-cgen:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -9127,7 +9135,7 @@ maybe-info-cgen:
maybe-info-cgen: info-cgen
info-cgen: \
- configure-cgen
+ configure-cgen
@: $(MAKE); $(unstage)
@[ -f ./cgen/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9153,7 +9161,7 @@ maybe-dvi-cgen:
maybe-dvi-cgen: dvi-cgen
dvi-cgen: \
- configure-cgen
+ configure-cgen
@: $(MAKE); $(unstage)
@[ -f ./cgen/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9179,7 +9187,7 @@ maybe-pdf-cgen:
maybe-pdf-cgen: pdf-cgen
pdf-cgen: \
- configure-cgen
+ configure-cgen
@: $(MAKE); $(unstage)
@[ -f ./cgen/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9205,7 +9213,7 @@ maybe-html-cgen:
maybe-html-cgen: html-cgen
html-cgen: \
- configure-cgen
+ configure-cgen
@: $(MAKE); $(unstage)
@[ -f ./cgen/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9231,7 +9239,7 @@ maybe-TAGS-cgen:
maybe-TAGS-cgen: TAGS-cgen
TAGS-cgen: \
- configure-cgen
+ configure-cgen
@: $(MAKE); $(unstage)
@[ -f ./cgen/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9258,7 +9266,7 @@ maybe-install-info-cgen: install-info-cgen
install-info-cgen: \
configure-cgen \
- info-cgen
+ info-cgen
@: $(MAKE); $(unstage)
@[ -f ./cgen/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9285,7 +9293,7 @@ maybe-install-pdf-cgen: install-pdf-cgen
install-pdf-cgen: \
configure-cgen \
- pdf-cgen
+ pdf-cgen
@: $(MAKE); $(unstage)
@[ -f ./cgen/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9312,7 +9320,7 @@ maybe-install-html-cgen: install-html-cgen
install-html-cgen: \
configure-cgen \
- html-cgen
+ html-cgen
@: $(MAKE); $(unstage)
@[ -f ./cgen/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9338,7 +9346,7 @@ maybe-installcheck-cgen:
maybe-installcheck-cgen: installcheck-cgen
installcheck-cgen: \
- configure-cgen
+ configure-cgen
@: $(MAKE); $(unstage)
@[ -f ./cgen/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9363,7 +9371,7 @@ maybe-mostlyclean-cgen:
@if cgen
maybe-mostlyclean-cgen: mostlyclean-cgen
-mostlyclean-cgen:
+mostlyclean-cgen:
@: $(MAKE); $(unstage)
@[ -f ./cgen/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9388,7 +9396,7 @@ maybe-clean-cgen:
@if cgen
maybe-clean-cgen: clean-cgen
-clean-cgen:
+clean-cgen:
@: $(MAKE); $(unstage)
@[ -f ./cgen/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9413,7 +9421,7 @@ maybe-distclean-cgen:
@if cgen
maybe-distclean-cgen: distclean-cgen
-distclean-cgen:
+distclean-cgen:
@: $(MAKE); $(unstage)
@[ -f ./cgen/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9438,7 +9446,7 @@ maybe-maintainer-clean-cgen:
@if cgen
maybe-maintainer-clean-cgen: maintainer-clean-cgen
-maintainer-clean-cgen:
+maintainer-clean-cgen:
@: $(MAKE); $(unstage)
@[ -f ./cgen/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9467,7 +9475,7 @@ configure-dejagnu: stage_current
@endif gcc-bootstrap
@if dejagnu
maybe-configure-dejagnu: configure-dejagnu
-configure-dejagnu:
+configure-dejagnu:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -9552,7 +9560,7 @@ maybe-info-dejagnu:
maybe-info-dejagnu: info-dejagnu
info-dejagnu: \
- configure-dejagnu
+ configure-dejagnu
@: $(MAKE); $(unstage)
@[ -f ./dejagnu/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9578,7 +9586,7 @@ maybe-dvi-dejagnu:
maybe-dvi-dejagnu: dvi-dejagnu
dvi-dejagnu: \
- configure-dejagnu
+ configure-dejagnu
@: $(MAKE); $(unstage)
@[ -f ./dejagnu/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9604,7 +9612,7 @@ maybe-pdf-dejagnu:
maybe-pdf-dejagnu: pdf-dejagnu
pdf-dejagnu: \
- configure-dejagnu
+ configure-dejagnu
@: $(MAKE); $(unstage)
@[ -f ./dejagnu/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9630,7 +9638,7 @@ maybe-html-dejagnu:
maybe-html-dejagnu: html-dejagnu
html-dejagnu: \
- configure-dejagnu
+ configure-dejagnu
@: $(MAKE); $(unstage)
@[ -f ./dejagnu/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9656,7 +9664,7 @@ maybe-TAGS-dejagnu:
maybe-TAGS-dejagnu: TAGS-dejagnu
TAGS-dejagnu: \
- configure-dejagnu
+ configure-dejagnu
@: $(MAKE); $(unstage)
@[ -f ./dejagnu/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9683,7 +9691,7 @@ maybe-install-info-dejagnu: install-info-dejagnu
install-info-dejagnu: \
configure-dejagnu \
- info-dejagnu
+ info-dejagnu
@: $(MAKE); $(unstage)
@[ -f ./dejagnu/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9710,7 +9718,7 @@ maybe-install-pdf-dejagnu: install-pdf-dejagnu
install-pdf-dejagnu: \
configure-dejagnu \
- pdf-dejagnu
+ pdf-dejagnu
@: $(MAKE); $(unstage)
@[ -f ./dejagnu/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9737,7 +9745,7 @@ maybe-install-html-dejagnu: install-html-dejagnu
install-html-dejagnu: \
configure-dejagnu \
- html-dejagnu
+ html-dejagnu
@: $(MAKE); $(unstage)
@[ -f ./dejagnu/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9763,7 +9771,7 @@ maybe-installcheck-dejagnu:
maybe-installcheck-dejagnu: installcheck-dejagnu
installcheck-dejagnu: \
- configure-dejagnu
+ configure-dejagnu
@: $(MAKE); $(unstage)
@[ -f ./dejagnu/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9788,7 +9796,7 @@ maybe-mostlyclean-dejagnu:
@if dejagnu
maybe-mostlyclean-dejagnu: mostlyclean-dejagnu
-mostlyclean-dejagnu:
+mostlyclean-dejagnu:
@: $(MAKE); $(unstage)
@[ -f ./dejagnu/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9813,7 +9821,7 @@ maybe-clean-dejagnu:
@if dejagnu
maybe-clean-dejagnu: clean-dejagnu
-clean-dejagnu:
+clean-dejagnu:
@: $(MAKE); $(unstage)
@[ -f ./dejagnu/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9838,7 +9846,7 @@ maybe-distclean-dejagnu:
@if dejagnu
maybe-distclean-dejagnu: distclean-dejagnu
-distclean-dejagnu:
+distclean-dejagnu:
@: $(MAKE); $(unstage)
@[ -f ./dejagnu/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9863,7 +9871,7 @@ maybe-maintainer-clean-dejagnu:
@if dejagnu
maybe-maintainer-clean-dejagnu: maintainer-clean-dejagnu
-maintainer-clean-dejagnu:
+maintainer-clean-dejagnu:
@: $(MAKE); $(unstage)
@[ -f ./dejagnu/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -9892,7 +9900,7 @@ configure-diff: stage_current
@endif gcc-bootstrap
@if diff
maybe-configure-diff: configure-diff
-configure-diff:
+configure-diff:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -9977,7 +9985,7 @@ maybe-info-diff:
maybe-info-diff: info-diff
info-diff: \
- configure-diff
+ configure-diff
@: $(MAKE); $(unstage)
@[ -f ./diff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10003,7 +10011,7 @@ maybe-dvi-diff:
maybe-dvi-diff: dvi-diff
dvi-diff: \
- configure-diff
+ configure-diff
@: $(MAKE); $(unstage)
@[ -f ./diff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10029,7 +10037,7 @@ maybe-pdf-diff:
maybe-pdf-diff: pdf-diff
pdf-diff: \
- configure-diff
+ configure-diff
@: $(MAKE); $(unstage)
@[ -f ./diff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10055,7 +10063,7 @@ maybe-html-diff:
maybe-html-diff: html-diff
html-diff: \
- configure-diff
+ configure-diff
@: $(MAKE); $(unstage)
@[ -f ./diff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10081,7 +10089,7 @@ maybe-TAGS-diff:
maybe-TAGS-diff: TAGS-diff
TAGS-diff: \
- configure-diff
+ configure-diff
@: $(MAKE); $(unstage)
@[ -f ./diff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10108,7 +10116,7 @@ maybe-install-info-diff: install-info-diff
install-info-diff: \
configure-diff \
- info-diff
+ info-diff
@: $(MAKE); $(unstage)
@[ -f ./diff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10135,7 +10143,7 @@ maybe-install-pdf-diff: install-pdf-diff
install-pdf-diff: \
configure-diff \
- pdf-diff
+ pdf-diff
@: $(MAKE); $(unstage)
@[ -f ./diff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10162,7 +10170,7 @@ maybe-install-html-diff: install-html-diff
install-html-diff: \
configure-diff \
- html-diff
+ html-diff
@: $(MAKE); $(unstage)
@[ -f ./diff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10188,7 +10196,7 @@ maybe-installcheck-diff:
maybe-installcheck-diff: installcheck-diff
installcheck-diff: \
- configure-diff
+ configure-diff
@: $(MAKE); $(unstage)
@[ -f ./diff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10213,7 +10221,7 @@ maybe-mostlyclean-diff:
@if diff
maybe-mostlyclean-diff: mostlyclean-diff
-mostlyclean-diff:
+mostlyclean-diff:
@: $(MAKE); $(unstage)
@[ -f ./diff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10238,7 +10246,7 @@ maybe-clean-diff:
@if diff
maybe-clean-diff: clean-diff
-clean-diff:
+clean-diff:
@: $(MAKE); $(unstage)
@[ -f ./diff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10263,7 +10271,7 @@ maybe-distclean-diff:
@if diff
maybe-distclean-diff: distclean-diff
-distclean-diff:
+distclean-diff:
@: $(MAKE); $(unstage)
@[ -f ./diff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10288,7 +10296,7 @@ maybe-maintainer-clean-diff:
@if diff
maybe-maintainer-clean-diff: maintainer-clean-diff
-maintainer-clean-diff:
+maintainer-clean-diff:
@: $(MAKE); $(unstage)
@[ -f ./diff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10317,7 +10325,7 @@ configure-dosutils: stage_current
@endif gcc-bootstrap
@if dosutils
maybe-configure-dosutils: configure-dosutils
-configure-dosutils:
+configure-dosutils:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10396,7 +10404,7 @@ maybe-info-dosutils:
maybe-info-dosutils: info-dosutils
info-dosutils: \
- configure-dosutils
+ configure-dosutils
@: $(MAKE); $(unstage)
@[ -f ./dosutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10422,7 +10430,7 @@ maybe-dvi-dosutils:
maybe-dvi-dosutils: dvi-dosutils
dvi-dosutils: \
- configure-dosutils
+ configure-dosutils
@: $(MAKE); $(unstage)
@[ -f ./dosutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10448,7 +10456,7 @@ maybe-pdf-dosutils:
maybe-pdf-dosutils: pdf-dosutils
pdf-dosutils: \
- configure-dosutils
+ configure-dosutils
@: $(MAKE); $(unstage)
@[ -f ./dosutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10474,7 +10482,7 @@ maybe-html-dosutils:
maybe-html-dosutils: html-dosutils
html-dosutils: \
- configure-dosutils
+ configure-dosutils
@: $(MAKE); $(unstage)
@[ -f ./dosutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10500,7 +10508,7 @@ maybe-TAGS-dosutils:
maybe-TAGS-dosutils: TAGS-dosutils
TAGS-dosutils: \
- configure-dosutils
+ configure-dosutils
@: $(MAKE); $(unstage)
@[ -f ./dosutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10527,7 +10535,7 @@ maybe-install-info-dosutils: install-info-dosutils
install-info-dosutils: \
configure-dosutils \
- info-dosutils
+ info-dosutils
@: $(MAKE); $(unstage)
@[ -f ./dosutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10554,7 +10562,7 @@ maybe-install-pdf-dosutils: install-pdf-dosutils
install-pdf-dosutils: \
configure-dosutils \
- pdf-dosutils
+ pdf-dosutils
@: $(MAKE); $(unstage)
@[ -f ./dosutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10581,7 +10589,7 @@ maybe-install-html-dosutils: install-html-dosutils
install-html-dosutils: \
configure-dosutils \
- html-dosutils
+ html-dosutils
@: $(MAKE); $(unstage)
@[ -f ./dosutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10607,7 +10615,7 @@ maybe-installcheck-dosutils:
maybe-installcheck-dosutils: installcheck-dosutils
installcheck-dosutils: \
- configure-dosutils
+ configure-dosutils
@: $(MAKE); $(unstage)
@[ -f ./dosutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10632,7 +10640,7 @@ maybe-mostlyclean-dosutils:
@if dosutils
maybe-mostlyclean-dosutils: mostlyclean-dosutils
-mostlyclean-dosutils:
+mostlyclean-dosutils:
@: $(MAKE); $(unstage)
@[ -f ./dosutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10657,7 +10665,7 @@ maybe-clean-dosutils:
@if dosutils
maybe-clean-dosutils: clean-dosutils
-clean-dosutils:
+clean-dosutils:
@: $(MAKE); $(unstage)
@[ -f ./dosutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10682,7 +10690,7 @@ maybe-distclean-dosutils:
@if dosutils
maybe-distclean-dosutils: distclean-dosutils
-distclean-dosutils:
+distclean-dosutils:
@: $(MAKE); $(unstage)
@[ -f ./dosutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10707,7 +10715,7 @@ maybe-maintainer-clean-dosutils:
@if dosutils
maybe-maintainer-clean-dosutils: maintainer-clean-dosutils
-maintainer-clean-dosutils:
+maintainer-clean-dosutils:
@: $(MAKE); $(unstage)
@[ -f ./dosutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10736,7 +10744,7 @@ configure-etc: stage_current
@endif gcc-bootstrap
@if etc
maybe-configure-etc: configure-etc
-configure-etc:
+configure-etc:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10821,7 +10829,7 @@ maybe-info-etc:
maybe-info-etc: info-etc
info-etc: \
- configure-etc
+ configure-etc
@: $(MAKE); $(unstage)
@[ -f ./etc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10847,7 +10855,7 @@ maybe-dvi-etc:
maybe-dvi-etc: dvi-etc
dvi-etc: \
- configure-etc
+ configure-etc
@: $(MAKE); $(unstage)
@[ -f ./etc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10873,7 +10881,7 @@ maybe-pdf-etc:
maybe-pdf-etc: pdf-etc
pdf-etc: \
- configure-etc
+ configure-etc
@: $(MAKE); $(unstage)
@[ -f ./etc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10899,7 +10907,7 @@ maybe-html-etc:
maybe-html-etc: html-etc
html-etc: \
- configure-etc
+ configure-etc
@: $(MAKE); $(unstage)
@[ -f ./etc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10925,7 +10933,7 @@ maybe-TAGS-etc:
maybe-TAGS-etc: TAGS-etc
TAGS-etc: \
- configure-etc
+ configure-etc
@: $(MAKE); $(unstage)
@[ -f ./etc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10952,7 +10960,7 @@ maybe-install-info-etc: install-info-etc
install-info-etc: \
configure-etc \
- info-etc
+ info-etc
@: $(MAKE); $(unstage)
@[ -f ./etc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -10979,7 +10987,7 @@ maybe-install-pdf-etc: install-pdf-etc
install-pdf-etc: \
configure-etc \
- pdf-etc
+ pdf-etc
@: $(MAKE); $(unstage)
@[ -f ./etc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11006,7 +11014,7 @@ maybe-install-html-etc: install-html-etc
install-html-etc: \
configure-etc \
- html-etc
+ html-etc
@: $(MAKE); $(unstage)
@[ -f ./etc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11032,7 +11040,7 @@ maybe-installcheck-etc:
maybe-installcheck-etc: installcheck-etc
installcheck-etc: \
- configure-etc
+ configure-etc
@: $(MAKE); $(unstage)
@[ -f ./etc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11057,7 +11065,7 @@ maybe-mostlyclean-etc:
@if etc
maybe-mostlyclean-etc: mostlyclean-etc
-mostlyclean-etc:
+mostlyclean-etc:
@: $(MAKE); $(unstage)
@[ -f ./etc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11082,7 +11090,7 @@ maybe-clean-etc:
@if etc
maybe-clean-etc: clean-etc
-clean-etc:
+clean-etc:
@: $(MAKE); $(unstage)
@[ -f ./etc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11107,7 +11115,7 @@ maybe-distclean-etc:
@if etc
maybe-distclean-etc: distclean-etc
-distclean-etc:
+distclean-etc:
@: $(MAKE); $(unstage)
@[ -f ./etc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11132,7 +11140,7 @@ maybe-maintainer-clean-etc:
@if etc
maybe-maintainer-clean-etc: maintainer-clean-etc
-maintainer-clean-etc:
+maintainer-clean-etc:
@: $(MAKE); $(unstage)
@[ -f ./etc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11161,7 +11169,7 @@ configure-fastjar: stage_current
@endif gcc-bootstrap
@if fastjar
maybe-configure-fastjar: configure-fastjar
-configure-fastjar:
+configure-fastjar:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -11249,7 +11257,7 @@ maybe-info-fastjar:
maybe-info-fastjar: info-fastjar
info-fastjar: \
- configure-fastjar
+ configure-fastjar
@: $(MAKE); $(unstage)
@[ -f ./fastjar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11275,7 +11283,7 @@ maybe-dvi-fastjar:
maybe-dvi-fastjar: dvi-fastjar
dvi-fastjar: \
- configure-fastjar
+ configure-fastjar
@: $(MAKE); $(unstage)
@[ -f ./fastjar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11301,7 +11309,7 @@ maybe-pdf-fastjar:
maybe-pdf-fastjar: pdf-fastjar
pdf-fastjar: \
- configure-fastjar
+ configure-fastjar
@: $(MAKE); $(unstage)
@[ -f ./fastjar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11327,7 +11335,7 @@ maybe-html-fastjar:
maybe-html-fastjar: html-fastjar
html-fastjar: \
- configure-fastjar
+ configure-fastjar
@: $(MAKE); $(unstage)
@[ -f ./fastjar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11353,7 +11361,7 @@ maybe-TAGS-fastjar:
maybe-TAGS-fastjar: TAGS-fastjar
TAGS-fastjar: \
- configure-fastjar
+ configure-fastjar
@: $(MAKE); $(unstage)
@[ -f ./fastjar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11380,7 +11388,7 @@ maybe-install-info-fastjar: install-info-fastjar
install-info-fastjar: \
configure-fastjar \
- info-fastjar
+ info-fastjar
@: $(MAKE); $(unstage)
@[ -f ./fastjar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11407,7 +11415,7 @@ maybe-install-pdf-fastjar: install-pdf-fastjar
install-pdf-fastjar: \
configure-fastjar \
- pdf-fastjar
+ pdf-fastjar
@: $(MAKE); $(unstage)
@[ -f ./fastjar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11434,7 +11442,7 @@ maybe-install-html-fastjar: install-html-fastjar
install-html-fastjar: \
configure-fastjar \
- html-fastjar
+ html-fastjar
@: $(MAKE); $(unstage)
@[ -f ./fastjar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11460,7 +11468,7 @@ maybe-installcheck-fastjar:
maybe-installcheck-fastjar: installcheck-fastjar
installcheck-fastjar: \
- configure-fastjar
+ configure-fastjar
@: $(MAKE); $(unstage)
@[ -f ./fastjar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11485,7 +11493,7 @@ maybe-mostlyclean-fastjar:
@if fastjar
maybe-mostlyclean-fastjar: mostlyclean-fastjar
-mostlyclean-fastjar:
+mostlyclean-fastjar:
@: $(MAKE); $(unstage)
@[ -f ./fastjar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11510,7 +11518,7 @@ maybe-clean-fastjar:
@if fastjar
maybe-clean-fastjar: clean-fastjar
-clean-fastjar:
+clean-fastjar:
@: $(MAKE); $(unstage)
@[ -f ./fastjar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11535,7 +11543,7 @@ maybe-distclean-fastjar:
@if fastjar
maybe-distclean-fastjar: distclean-fastjar
-distclean-fastjar:
+distclean-fastjar:
@: $(MAKE); $(unstage)
@[ -f ./fastjar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11560,7 +11568,7 @@ maybe-maintainer-clean-fastjar:
@if fastjar
maybe-maintainer-clean-fastjar: maintainer-clean-fastjar
-maintainer-clean-fastjar:
+maintainer-clean-fastjar:
@: $(MAKE); $(unstage)
@[ -f ./fastjar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11589,7 +11597,7 @@ configure-fileutils: stage_current
@endif gcc-bootstrap
@if fileutils
maybe-configure-fileutils: configure-fileutils
-configure-fileutils:
+configure-fileutils:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -11674,7 +11682,7 @@ maybe-info-fileutils:
maybe-info-fileutils: info-fileutils
info-fileutils: \
- configure-fileutils
+ configure-fileutils
@: $(MAKE); $(unstage)
@[ -f ./fileutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11700,7 +11708,7 @@ maybe-dvi-fileutils:
maybe-dvi-fileutils: dvi-fileutils
dvi-fileutils: \
- configure-fileutils
+ configure-fileutils
@: $(MAKE); $(unstage)
@[ -f ./fileutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11726,7 +11734,7 @@ maybe-pdf-fileutils:
maybe-pdf-fileutils: pdf-fileutils
pdf-fileutils: \
- configure-fileutils
+ configure-fileutils
@: $(MAKE); $(unstage)
@[ -f ./fileutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11752,7 +11760,7 @@ maybe-html-fileutils:
maybe-html-fileutils: html-fileutils
html-fileutils: \
- configure-fileutils
+ configure-fileutils
@: $(MAKE); $(unstage)
@[ -f ./fileutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11778,7 +11786,7 @@ maybe-TAGS-fileutils:
maybe-TAGS-fileutils: TAGS-fileutils
TAGS-fileutils: \
- configure-fileutils
+ configure-fileutils
@: $(MAKE); $(unstage)
@[ -f ./fileutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11805,7 +11813,7 @@ maybe-install-info-fileutils: install-info-fileutils
install-info-fileutils: \
configure-fileutils \
- info-fileutils
+ info-fileutils
@: $(MAKE); $(unstage)
@[ -f ./fileutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11832,7 +11840,7 @@ maybe-install-pdf-fileutils: install-pdf-fileutils
install-pdf-fileutils: \
configure-fileutils \
- pdf-fileutils
+ pdf-fileutils
@: $(MAKE); $(unstage)
@[ -f ./fileutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11859,7 +11867,7 @@ maybe-install-html-fileutils: install-html-fileutils
install-html-fileutils: \
configure-fileutils \
- html-fileutils
+ html-fileutils
@: $(MAKE); $(unstage)
@[ -f ./fileutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11885,7 +11893,7 @@ maybe-installcheck-fileutils:
maybe-installcheck-fileutils: installcheck-fileutils
installcheck-fileutils: \
- configure-fileutils
+ configure-fileutils
@: $(MAKE); $(unstage)
@[ -f ./fileutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11910,7 +11918,7 @@ maybe-mostlyclean-fileutils:
@if fileutils
maybe-mostlyclean-fileutils: mostlyclean-fileutils
-mostlyclean-fileutils:
+mostlyclean-fileutils:
@: $(MAKE); $(unstage)
@[ -f ./fileutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11935,7 +11943,7 @@ maybe-clean-fileutils:
@if fileutils
maybe-clean-fileutils: clean-fileutils
-clean-fileutils:
+clean-fileutils:
@: $(MAKE); $(unstage)
@[ -f ./fileutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11960,7 +11968,7 @@ maybe-distclean-fileutils:
@if fileutils
maybe-distclean-fileutils: distclean-fileutils
-distclean-fileutils:
+distclean-fileutils:
@: $(MAKE); $(unstage)
@[ -f ./fileutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -11985,7 +11993,7 @@ maybe-maintainer-clean-fileutils:
@if fileutils
maybe-maintainer-clean-fileutils: maintainer-clean-fileutils
-maintainer-clean-fileutils:
+maintainer-clean-fileutils:
@: $(MAKE); $(unstage)
@[ -f ./fileutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12014,7 +12022,7 @@ configure-findutils: stage_current
@endif gcc-bootstrap
@if findutils
maybe-configure-findutils: configure-findutils
-configure-findutils:
+configure-findutils:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -12099,7 +12107,7 @@ maybe-info-findutils:
maybe-info-findutils: info-findutils
info-findutils: \
- configure-findutils
+ configure-findutils
@: $(MAKE); $(unstage)
@[ -f ./findutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12125,7 +12133,7 @@ maybe-dvi-findutils:
maybe-dvi-findutils: dvi-findutils
dvi-findutils: \
- configure-findutils
+ configure-findutils
@: $(MAKE); $(unstage)
@[ -f ./findutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12151,7 +12159,7 @@ maybe-pdf-findutils:
maybe-pdf-findutils: pdf-findutils
pdf-findutils: \
- configure-findutils
+ configure-findutils
@: $(MAKE); $(unstage)
@[ -f ./findutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12177,7 +12185,7 @@ maybe-html-findutils:
maybe-html-findutils: html-findutils
html-findutils: \
- configure-findutils
+ configure-findutils
@: $(MAKE); $(unstage)
@[ -f ./findutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12203,7 +12211,7 @@ maybe-TAGS-findutils:
maybe-TAGS-findutils: TAGS-findutils
TAGS-findutils: \
- configure-findutils
+ configure-findutils
@: $(MAKE); $(unstage)
@[ -f ./findutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12230,7 +12238,7 @@ maybe-install-info-findutils: install-info-findutils
install-info-findutils: \
configure-findutils \
- info-findutils
+ info-findutils
@: $(MAKE); $(unstage)
@[ -f ./findutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12257,7 +12265,7 @@ maybe-install-pdf-findutils: install-pdf-findutils
install-pdf-findutils: \
configure-findutils \
- pdf-findutils
+ pdf-findutils
@: $(MAKE); $(unstage)
@[ -f ./findutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12284,7 +12292,7 @@ maybe-install-html-findutils: install-html-findutils
install-html-findutils: \
configure-findutils \
- html-findutils
+ html-findutils
@: $(MAKE); $(unstage)
@[ -f ./findutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12310,7 +12318,7 @@ maybe-installcheck-findutils:
maybe-installcheck-findutils: installcheck-findutils
installcheck-findutils: \
- configure-findutils
+ configure-findutils
@: $(MAKE); $(unstage)
@[ -f ./findutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12335,7 +12343,7 @@ maybe-mostlyclean-findutils:
@if findutils
maybe-mostlyclean-findutils: mostlyclean-findutils
-mostlyclean-findutils:
+mostlyclean-findutils:
@: $(MAKE); $(unstage)
@[ -f ./findutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12360,7 +12368,7 @@ maybe-clean-findutils:
@if findutils
maybe-clean-findutils: clean-findutils
-clean-findutils:
+clean-findutils:
@: $(MAKE); $(unstage)
@[ -f ./findutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12385,7 +12393,7 @@ maybe-distclean-findutils:
@if findutils
maybe-distclean-findutils: distclean-findutils
-distclean-findutils:
+distclean-findutils:
@: $(MAKE); $(unstage)
@[ -f ./findutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12410,7 +12418,7 @@ maybe-maintainer-clean-findutils:
@if findutils
maybe-maintainer-clean-findutils: maintainer-clean-findutils
-maintainer-clean-findutils:
+maintainer-clean-findutils:
@: $(MAKE); $(unstage)
@[ -f ./findutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12439,7 +12447,7 @@ configure-find: stage_current
@endif gcc-bootstrap
@if find
maybe-configure-find: configure-find
-configure-find:
+configure-find:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -12524,7 +12532,7 @@ maybe-info-find:
maybe-info-find: info-find
info-find: \
- configure-find
+ configure-find
@: $(MAKE); $(unstage)
@[ -f ./find/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12550,7 +12558,7 @@ maybe-dvi-find:
maybe-dvi-find: dvi-find
dvi-find: \
- configure-find
+ configure-find
@: $(MAKE); $(unstage)
@[ -f ./find/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12576,7 +12584,7 @@ maybe-pdf-find:
maybe-pdf-find: pdf-find
pdf-find: \
- configure-find
+ configure-find
@: $(MAKE); $(unstage)
@[ -f ./find/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12602,7 +12610,7 @@ maybe-html-find:
maybe-html-find: html-find
html-find: \
- configure-find
+ configure-find
@: $(MAKE); $(unstage)
@[ -f ./find/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12628,7 +12636,7 @@ maybe-TAGS-find:
maybe-TAGS-find: TAGS-find
TAGS-find: \
- configure-find
+ configure-find
@: $(MAKE); $(unstage)
@[ -f ./find/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12655,7 +12663,7 @@ maybe-install-info-find: install-info-find
install-info-find: \
configure-find \
- info-find
+ info-find
@: $(MAKE); $(unstage)
@[ -f ./find/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12682,7 +12690,7 @@ maybe-install-pdf-find: install-pdf-find
install-pdf-find: \
configure-find \
- pdf-find
+ pdf-find
@: $(MAKE); $(unstage)
@[ -f ./find/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12709,7 +12717,7 @@ maybe-install-html-find: install-html-find
install-html-find: \
configure-find \
- html-find
+ html-find
@: $(MAKE); $(unstage)
@[ -f ./find/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12735,7 +12743,7 @@ maybe-installcheck-find:
maybe-installcheck-find: installcheck-find
installcheck-find: \
- configure-find
+ configure-find
@: $(MAKE); $(unstage)
@[ -f ./find/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12760,7 +12768,7 @@ maybe-mostlyclean-find:
@if find
maybe-mostlyclean-find: mostlyclean-find
-mostlyclean-find:
+mostlyclean-find:
@: $(MAKE); $(unstage)
@[ -f ./find/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12785,7 +12793,7 @@ maybe-clean-find:
@if find
maybe-clean-find: clean-find
-clean-find:
+clean-find:
@: $(MAKE); $(unstage)
@[ -f ./find/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12810,7 +12818,7 @@ maybe-distclean-find:
@if find
maybe-distclean-find: distclean-find
-distclean-find:
+distclean-find:
@: $(MAKE); $(unstage)
@[ -f ./find/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12835,7 +12843,7 @@ maybe-maintainer-clean-find:
@if find
maybe-maintainer-clean-find: maintainer-clean-find
-maintainer-clean-find:
+maintainer-clean-find:
@: $(MAKE); $(unstage)
@[ -f ./find/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12864,7 +12872,7 @@ configure-fixincludes: stage_current
@endif gcc-bootstrap
@if fixincludes
maybe-configure-fixincludes: configure-fixincludes
-configure-fixincludes:
+configure-fixincludes:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -12949,7 +12957,7 @@ maybe-info-fixincludes:
maybe-info-fixincludes: info-fixincludes
info-fixincludes: \
- configure-fixincludes
+ configure-fixincludes
@: $(MAKE); $(unstage)
@[ -f ./fixincludes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -12975,7 +12983,7 @@ maybe-dvi-fixincludes:
maybe-dvi-fixincludes: dvi-fixincludes
dvi-fixincludes: \
- configure-fixincludes
+ configure-fixincludes
@: $(MAKE); $(unstage)
@[ -f ./fixincludes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13001,7 +13009,7 @@ maybe-pdf-fixincludes:
maybe-pdf-fixincludes: pdf-fixincludes
pdf-fixincludes: \
- configure-fixincludes
+ configure-fixincludes
@: $(MAKE); $(unstage)
@[ -f ./fixincludes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13027,7 +13035,7 @@ maybe-html-fixincludes:
maybe-html-fixincludes: html-fixincludes
html-fixincludes: \
- configure-fixincludes
+ configure-fixincludes
@: $(MAKE); $(unstage)
@[ -f ./fixincludes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13064,7 +13072,7 @@ maybe-install-info-fixincludes: install-info-fixincludes
install-info-fixincludes: \
configure-fixincludes \
- info-fixincludes
+ info-fixincludes
@: $(MAKE); $(unstage)
@[ -f ./fixincludes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13091,7 +13099,7 @@ maybe-install-pdf-fixincludes: install-pdf-fixincludes
install-pdf-fixincludes: \
configure-fixincludes \
- pdf-fixincludes
+ pdf-fixincludes
@: $(MAKE); $(unstage)
@[ -f ./fixincludes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13118,7 +13126,7 @@ maybe-install-html-fixincludes: install-html-fixincludes
install-html-fixincludes: \
configure-fixincludes \
- html-fixincludes
+ html-fixincludes
@: $(MAKE); $(unstage)
@[ -f ./fixincludes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13144,7 +13152,7 @@ maybe-installcheck-fixincludes:
maybe-installcheck-fixincludes: installcheck-fixincludes
installcheck-fixincludes: \
- configure-fixincludes
+ configure-fixincludes
@: $(MAKE); $(unstage)
@[ -f ./fixincludes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13169,7 +13177,7 @@ maybe-mostlyclean-fixincludes:
@if fixincludes
maybe-mostlyclean-fixincludes: mostlyclean-fixincludes
-mostlyclean-fixincludes:
+mostlyclean-fixincludes:
@: $(MAKE); $(unstage)
@[ -f ./fixincludes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13194,7 +13202,7 @@ maybe-clean-fixincludes:
@if fixincludes
maybe-clean-fixincludes: clean-fixincludes
-clean-fixincludes:
+clean-fixincludes:
@: $(MAKE); $(unstage)
@[ -f ./fixincludes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13219,7 +13227,7 @@ maybe-distclean-fixincludes:
@if fixincludes
maybe-distclean-fixincludes: distclean-fixincludes
-distclean-fixincludes:
+distclean-fixincludes:
@: $(MAKE); $(unstage)
@[ -f ./fixincludes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13244,7 +13252,7 @@ maybe-maintainer-clean-fixincludes:
@if fixincludes
maybe-maintainer-clean-fixincludes: maintainer-clean-fixincludes
-maintainer-clean-fixincludes:
+maintainer-clean-fixincludes:
@: $(MAKE); $(unstage)
@[ -f ./fixincludes/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13273,7 +13281,7 @@ configure-flex: stage_current
@endif gcc-bootstrap
@if flex
maybe-configure-flex: configure-flex
-configure-flex:
+configure-flex:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -13361,7 +13369,7 @@ maybe-info-flex:
maybe-info-flex: info-flex
info-flex: \
- configure-flex
+ configure-flex
@: $(MAKE); $(unstage)
@[ -f ./flex/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13387,7 +13395,7 @@ maybe-dvi-flex:
maybe-dvi-flex: dvi-flex
dvi-flex: \
- configure-flex
+ configure-flex
@: $(MAKE); $(unstage)
@[ -f ./flex/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13413,7 +13421,7 @@ maybe-pdf-flex:
maybe-pdf-flex: pdf-flex
pdf-flex: \
- configure-flex
+ configure-flex
@: $(MAKE); $(unstage)
@[ -f ./flex/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13439,7 +13447,7 @@ maybe-html-flex:
maybe-html-flex: html-flex
html-flex: \
- configure-flex
+ configure-flex
@: $(MAKE); $(unstage)
@[ -f ./flex/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13465,7 +13473,7 @@ maybe-TAGS-flex:
maybe-TAGS-flex: TAGS-flex
TAGS-flex: \
- configure-flex
+ configure-flex
@: $(MAKE); $(unstage)
@[ -f ./flex/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13492,7 +13500,7 @@ maybe-install-info-flex: install-info-flex
install-info-flex: \
configure-flex \
- info-flex
+ info-flex
@: $(MAKE); $(unstage)
@[ -f ./flex/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13519,7 +13527,7 @@ maybe-install-pdf-flex: install-pdf-flex
install-pdf-flex: \
configure-flex \
- pdf-flex
+ pdf-flex
@: $(MAKE); $(unstage)
@[ -f ./flex/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13546,7 +13554,7 @@ maybe-install-html-flex: install-html-flex
install-html-flex: \
configure-flex \
- html-flex
+ html-flex
@: $(MAKE); $(unstage)
@[ -f ./flex/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13572,7 +13580,7 @@ maybe-installcheck-flex:
maybe-installcheck-flex: installcheck-flex
installcheck-flex: \
- configure-flex
+ configure-flex
@: $(MAKE); $(unstage)
@[ -f ./flex/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13597,7 +13605,7 @@ maybe-mostlyclean-flex:
@if flex
maybe-mostlyclean-flex: mostlyclean-flex
-mostlyclean-flex:
+mostlyclean-flex:
@: $(MAKE); $(unstage)
@[ -f ./flex/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13622,7 +13630,7 @@ maybe-clean-flex:
@if flex
maybe-clean-flex: clean-flex
-clean-flex:
+clean-flex:
@: $(MAKE); $(unstage)
@[ -f ./flex/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13647,7 +13655,7 @@ maybe-distclean-flex:
@if flex
maybe-distclean-flex: distclean-flex
-distclean-flex:
+distclean-flex:
@: $(MAKE); $(unstage)
@[ -f ./flex/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13672,7 +13680,7 @@ maybe-maintainer-clean-flex:
@if flex
maybe-maintainer-clean-flex: maintainer-clean-flex
-maintainer-clean-flex:
+maintainer-clean-flex:
@: $(MAKE); $(unstage)
@[ -f ./flex/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -13701,7 +13709,7 @@ configure-gas: stage_current
@endif gcc-bootstrap
@if gas
maybe-configure-gas: configure-gas
-configure-gas:
+configure-gas:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
@@ -14240,7 +14248,7 @@ maybe-info-gas:
maybe-info-gas: info-gas
info-gas: \
- configure-gas
+ configure-gas
@[ -f ./gas/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14265,7 +14273,7 @@ maybe-dvi-gas:
maybe-dvi-gas: dvi-gas
dvi-gas: \
- configure-gas
+ configure-gas
@[ -f ./gas/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14290,7 +14298,7 @@ maybe-pdf-gas:
maybe-pdf-gas: pdf-gas
pdf-gas: \
- configure-gas
+ configure-gas
@[ -f ./gas/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14315,7 +14323,7 @@ maybe-html-gas:
maybe-html-gas: html-gas
html-gas: \
- configure-gas
+ configure-gas
@[ -f ./gas/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14340,7 +14348,7 @@ maybe-TAGS-gas:
maybe-TAGS-gas: TAGS-gas
TAGS-gas: \
- configure-gas
+ configure-gas
@[ -f ./gas/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14366,7 +14374,7 @@ maybe-install-info-gas: install-info-gas
install-info-gas: \
configure-gas \
- info-gas
+ info-gas
@[ -f ./gas/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14392,7 +14400,7 @@ maybe-install-pdf-gas: install-pdf-gas
install-pdf-gas: \
configure-gas \
- pdf-gas
+ pdf-gas
@[ -f ./gas/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14418,7 +14426,7 @@ maybe-install-html-gas: install-html-gas
install-html-gas: \
configure-gas \
- html-gas
+ html-gas
@[ -f ./gas/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14443,7 +14451,7 @@ maybe-installcheck-gas:
maybe-installcheck-gas: installcheck-gas
installcheck-gas: \
- configure-gas
+ configure-gas
@[ -f ./gas/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14467,7 +14475,7 @@ maybe-mostlyclean-gas:
@if gas
maybe-mostlyclean-gas: mostlyclean-gas
-mostlyclean-gas:
+mostlyclean-gas:
@[ -f ./gas/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14491,7 +14499,7 @@ maybe-clean-gas:
@if gas
maybe-clean-gas: clean-gas
-clean-gas:
+clean-gas:
@[ -f ./gas/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14515,7 +14523,7 @@ maybe-distclean-gas:
@if gas
maybe-distclean-gas: distclean-gas
-distclean-gas:
+distclean-gas:
@[ -f ./gas/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14539,7 +14547,7 @@ maybe-maintainer-clean-gas:
@if gas
maybe-maintainer-clean-gas: maintainer-clean-gas
-maintainer-clean-gas:
+maintainer-clean-gas:
@[ -f ./gas/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14567,7 +14575,7 @@ configure-gcc: stage_current
@endif gcc-bootstrap
@if gcc
maybe-configure-gcc: configure-gcc
-configure-gcc:
+configure-gcc:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
@@ -15106,7 +15114,7 @@ maybe-info-gcc:
maybe-info-gcc: info-gcc
info-gcc: \
- configure-gcc
+ configure-gcc
@[ -f ./gcc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15131,7 +15139,7 @@ maybe-dvi-gcc:
maybe-dvi-gcc: dvi-gcc
dvi-gcc: \
- configure-gcc
+ configure-gcc
@[ -f ./gcc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15156,7 +15164,7 @@ maybe-pdf-gcc:
maybe-pdf-gcc: pdf-gcc
pdf-gcc: \
- configure-gcc
+ configure-gcc
@[ -f ./gcc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15181,7 +15189,7 @@ maybe-html-gcc:
maybe-html-gcc: html-gcc
html-gcc: \
- configure-gcc
+ configure-gcc
@[ -f ./gcc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15206,7 +15214,7 @@ maybe-TAGS-gcc:
maybe-TAGS-gcc: TAGS-gcc
TAGS-gcc: \
- configure-gcc
+ configure-gcc
@[ -f ./gcc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15232,7 +15240,7 @@ maybe-install-info-gcc: install-info-gcc
install-info-gcc: \
configure-gcc \
- info-gcc
+ info-gcc
@[ -f ./gcc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15258,7 +15266,7 @@ maybe-install-pdf-gcc: install-pdf-gcc
install-pdf-gcc: \
configure-gcc \
- pdf-gcc
+ pdf-gcc
@[ -f ./gcc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15284,7 +15292,7 @@ maybe-install-html-gcc: install-html-gcc
install-html-gcc: \
configure-gcc \
- html-gcc
+ html-gcc
@[ -f ./gcc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15309,7 +15317,7 @@ maybe-installcheck-gcc:
maybe-installcheck-gcc: installcheck-gcc
installcheck-gcc: \
- configure-gcc
+ configure-gcc
@[ -f ./gcc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15333,7 +15341,7 @@ maybe-mostlyclean-gcc:
@if gcc
maybe-mostlyclean-gcc: mostlyclean-gcc
-mostlyclean-gcc:
+mostlyclean-gcc:
@[ -f ./gcc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15357,7 +15365,7 @@ maybe-clean-gcc:
@if gcc
maybe-clean-gcc: clean-gcc
-clean-gcc:
+clean-gcc:
@[ -f ./gcc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15381,7 +15389,7 @@ maybe-distclean-gcc:
@if gcc
maybe-distclean-gcc: distclean-gcc
-distclean-gcc:
+distclean-gcc:
@[ -f ./gcc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15405,7 +15413,7 @@ maybe-maintainer-clean-gcc:
@if gcc
maybe-maintainer-clean-gcc: maintainer-clean-gcc
-maintainer-clean-gcc:
+maintainer-clean-gcc:
@[ -f ./gcc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15433,7 +15441,7 @@ configure-gawk: stage_current
@endif gcc-bootstrap
@if gawk
maybe-configure-gawk: configure-gawk
-configure-gawk:
+configure-gawk:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15518,7 +15526,7 @@ maybe-info-gawk:
maybe-info-gawk: info-gawk
info-gawk: \
- configure-gawk
+ configure-gawk
@: $(MAKE); $(unstage)
@[ -f ./gawk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15544,7 +15552,7 @@ maybe-dvi-gawk:
maybe-dvi-gawk: dvi-gawk
dvi-gawk: \
- configure-gawk
+ configure-gawk
@: $(MAKE); $(unstage)
@[ -f ./gawk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15570,7 +15578,7 @@ maybe-pdf-gawk:
maybe-pdf-gawk: pdf-gawk
pdf-gawk: \
- configure-gawk
+ configure-gawk
@: $(MAKE); $(unstage)
@[ -f ./gawk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15596,7 +15604,7 @@ maybe-html-gawk:
maybe-html-gawk: html-gawk
html-gawk: \
- configure-gawk
+ configure-gawk
@: $(MAKE); $(unstage)
@[ -f ./gawk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15622,7 +15630,7 @@ maybe-TAGS-gawk:
maybe-TAGS-gawk: TAGS-gawk
TAGS-gawk: \
- configure-gawk
+ configure-gawk
@: $(MAKE); $(unstage)
@[ -f ./gawk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15649,7 +15657,7 @@ maybe-install-info-gawk: install-info-gawk
install-info-gawk: \
configure-gawk \
- info-gawk
+ info-gawk
@: $(MAKE); $(unstage)
@[ -f ./gawk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15676,7 +15684,7 @@ maybe-install-pdf-gawk: install-pdf-gawk
install-pdf-gawk: \
configure-gawk \
- pdf-gawk
+ pdf-gawk
@: $(MAKE); $(unstage)
@[ -f ./gawk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15703,7 +15711,7 @@ maybe-install-html-gawk: install-html-gawk
install-html-gawk: \
configure-gawk \
- html-gawk
+ html-gawk
@: $(MAKE); $(unstage)
@[ -f ./gawk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15729,7 +15737,7 @@ maybe-installcheck-gawk:
maybe-installcheck-gawk: installcheck-gawk
installcheck-gawk: \
- configure-gawk
+ configure-gawk
@: $(MAKE); $(unstage)
@[ -f ./gawk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15754,7 +15762,7 @@ maybe-mostlyclean-gawk:
@if gawk
maybe-mostlyclean-gawk: mostlyclean-gawk
-mostlyclean-gawk:
+mostlyclean-gawk:
@: $(MAKE); $(unstage)
@[ -f ./gawk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15779,7 +15787,7 @@ maybe-clean-gawk:
@if gawk
maybe-clean-gawk: clean-gawk
-clean-gawk:
+clean-gawk:
@: $(MAKE); $(unstage)
@[ -f ./gawk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15804,7 +15812,7 @@ maybe-distclean-gawk:
@if gawk
maybe-distclean-gawk: distclean-gawk
-distclean-gawk:
+distclean-gawk:
@: $(MAKE); $(unstage)
@[ -f ./gawk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15829,7 +15837,7 @@ maybe-maintainer-clean-gawk:
@if gawk
maybe-maintainer-clean-gawk: maintainer-clean-gawk
-maintainer-clean-gawk:
+maintainer-clean-gawk:
@: $(MAKE); $(unstage)
@[ -f ./gawk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15858,7 +15866,7 @@ configure-gettext: stage_current
@endif gcc-bootstrap
@if gettext
maybe-configure-gettext: configure-gettext
-configure-gettext:
+configure-gettext:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15943,7 +15951,7 @@ maybe-info-gettext:
maybe-info-gettext: info-gettext
info-gettext: \
- configure-gettext
+ configure-gettext
@: $(MAKE); $(unstage)
@[ -f ./gettext/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15969,7 +15977,7 @@ maybe-dvi-gettext:
maybe-dvi-gettext: dvi-gettext
dvi-gettext: \
- configure-gettext
+ configure-gettext
@: $(MAKE); $(unstage)
@[ -f ./gettext/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -15995,7 +16003,7 @@ maybe-pdf-gettext:
maybe-pdf-gettext: pdf-gettext
pdf-gettext: \
- configure-gettext
+ configure-gettext
@: $(MAKE); $(unstage)
@[ -f ./gettext/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -16021,7 +16029,7 @@ maybe-html-gettext:
maybe-html-gettext: html-gettext
html-gettext: \
- configure-gettext
+ configure-gettext
@: $(MAKE); $(unstage)
@[ -f ./gettext/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -16047,7 +16055,7 @@ maybe-TAGS-gettext:
maybe-TAGS-gettext: TAGS-gettext
TAGS-gettext: \
- configure-gettext
+ configure-gettext
@: $(MAKE); $(unstage)
@[ -f ./gettext/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -16074,7 +16082,7 @@ maybe-install-info-gettext: install-info-gettext
install-info-gettext: \
configure-gettext \
- info-gettext
+ info-gettext
@: $(MAKE); $(unstage)
@[ -f ./gettext/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -16101,7 +16109,7 @@ maybe-install-pdf-gettext: install-pdf-gettext
install-pdf-gettext: \
configure-gettext \
- pdf-gettext
+ pdf-gettext
@: $(MAKE); $(unstage)
@[ -f ./gettext/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -16128,7 +16136,7 @@ maybe-install-html-gettext: install-html-gettext
install-html-gettext: \
configure-gettext \
- html-gettext
+ html-gettext
@: $(MAKE); $(unstage)
@[ -f ./gettext/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -16154,7 +16162,7 @@ maybe-installcheck-gettext:
maybe-installcheck-gettext: installcheck-gettext
installcheck-gettext: \
- configure-gettext
+ configure-gettext
@: $(MAKE); $(unstage)
@[ -f ./gettext/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -16179,7 +16187,7 @@ maybe-mostlyclean-gettext:
@if gettext
maybe-mostlyclean-gettext: mostlyclean-gettext
-mostlyclean-gettext:
+mostlyclean-gettext:
@: $(MAKE); $(unstage)
@[ -f ./gettext/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -16204,7 +16212,7 @@ maybe-clean-gettext:
@if gettext
maybe-clean-gettext: clean-gettext
-clean-gettext:
+clean-gettext:
@: $(MAKE); $(unstage)
@[ -f ./gettext/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -16229,7 +16237,7 @@ maybe-distclean-gettext:
@if gettext
maybe-distclean-gettext: distclean-gettext
-distclean-gettext:
+distclean-gettext:
@: $(MAKE); $(unstage)
@[ -f ./gettext/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -16254,7 +16262,7 @@ maybe-maintainer-clean-gettext:
@if gettext
maybe-maintainer-clean-gettext: maintainer-clean-gettext
-maintainer-clean-gettext:
+maintainer-clean-gettext:
@: $(MAKE); $(unstage)
@[ -f ./gettext/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -16283,7 +16291,7 @@ configure-gmp: stage_current
@endif gcc-bootstrap
@if gmp
maybe-configure-gmp: configure-gmp
-configure-gmp:
+configure-gmp:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
@@ -16822,7 +16830,7 @@ maybe-info-gmp:
maybe-info-gmp: info-gmp
info-gmp: \
- configure-gmp
+ configure-gmp
@[ -f ./gmp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -16847,7 +16855,7 @@ maybe-dvi-gmp:
maybe-dvi-gmp: dvi-gmp
dvi-gmp: \
- configure-gmp
+ configure-gmp
@[ -f ./gmp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -16872,7 +16880,7 @@ maybe-pdf-gmp:
maybe-pdf-gmp: pdf-gmp
pdf-gmp: \
- configure-gmp
+ configure-gmp
@[ -f ./gmp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -16897,7 +16905,7 @@ maybe-html-gmp:
maybe-html-gmp: html-gmp
html-gmp: \
- configure-gmp
+ configure-gmp
@[ -f ./gmp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -16922,7 +16930,7 @@ maybe-TAGS-gmp:
maybe-TAGS-gmp: TAGS-gmp
TAGS-gmp: \
- configure-gmp
+ configure-gmp
@[ -f ./gmp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -16948,7 +16956,7 @@ maybe-install-info-gmp: install-info-gmp
install-info-gmp: \
configure-gmp \
- info-gmp
+ info-gmp
@[ -f ./gmp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -16974,7 +16982,7 @@ maybe-install-pdf-gmp: install-pdf-gmp
install-pdf-gmp: \
configure-gmp \
- pdf-gmp
+ pdf-gmp
@[ -f ./gmp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17000,7 +17008,7 @@ maybe-install-html-gmp: install-html-gmp
install-html-gmp: \
configure-gmp \
- html-gmp
+ html-gmp
@[ -f ./gmp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17025,7 +17033,7 @@ maybe-installcheck-gmp:
maybe-installcheck-gmp: installcheck-gmp
installcheck-gmp: \
- configure-gmp
+ configure-gmp
@[ -f ./gmp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17049,7 +17057,7 @@ maybe-mostlyclean-gmp:
@if gmp
maybe-mostlyclean-gmp: mostlyclean-gmp
-mostlyclean-gmp:
+mostlyclean-gmp:
@[ -f ./gmp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17073,7 +17081,7 @@ maybe-clean-gmp:
@if gmp
maybe-clean-gmp: clean-gmp
-clean-gmp:
+clean-gmp:
@[ -f ./gmp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17097,7 +17105,7 @@ maybe-distclean-gmp:
@if gmp
maybe-distclean-gmp: distclean-gmp
-distclean-gmp:
+distclean-gmp:
@[ -f ./gmp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17121,7 +17129,7 @@ maybe-maintainer-clean-gmp:
@if gmp
maybe-maintainer-clean-gmp: maintainer-clean-gmp
-maintainer-clean-gmp:
+maintainer-clean-gmp:
@[ -f ./gmp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17149,7 +17157,7 @@ configure-mpfr: stage_current
@endif gcc-bootstrap
@if mpfr
maybe-configure-mpfr: configure-mpfr
-configure-mpfr:
+configure-mpfr:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
@@ -17688,7 +17696,7 @@ maybe-info-mpfr:
maybe-info-mpfr: info-mpfr
info-mpfr: \
- configure-mpfr
+ configure-mpfr
@[ -f ./mpfr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17713,7 +17721,7 @@ maybe-dvi-mpfr:
maybe-dvi-mpfr: dvi-mpfr
dvi-mpfr: \
- configure-mpfr
+ configure-mpfr
@[ -f ./mpfr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17738,7 +17746,7 @@ maybe-pdf-mpfr:
maybe-pdf-mpfr: pdf-mpfr
pdf-mpfr: \
- configure-mpfr
+ configure-mpfr
@[ -f ./mpfr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17763,7 +17771,7 @@ maybe-html-mpfr:
maybe-html-mpfr: html-mpfr
html-mpfr: \
- configure-mpfr
+ configure-mpfr
@[ -f ./mpfr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17788,7 +17796,7 @@ maybe-TAGS-mpfr:
maybe-TAGS-mpfr: TAGS-mpfr
TAGS-mpfr: \
- configure-mpfr
+ configure-mpfr
@[ -f ./mpfr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17814,7 +17822,7 @@ maybe-install-info-mpfr: install-info-mpfr
install-info-mpfr: \
configure-mpfr \
- info-mpfr
+ info-mpfr
@[ -f ./mpfr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17840,7 +17848,7 @@ maybe-install-pdf-mpfr: install-pdf-mpfr
install-pdf-mpfr: \
configure-mpfr \
- pdf-mpfr
+ pdf-mpfr
@[ -f ./mpfr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17866,7 +17874,7 @@ maybe-install-html-mpfr: install-html-mpfr
install-html-mpfr: \
configure-mpfr \
- html-mpfr
+ html-mpfr
@[ -f ./mpfr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17891,7 +17899,7 @@ maybe-installcheck-mpfr:
maybe-installcheck-mpfr: installcheck-mpfr
installcheck-mpfr: \
- configure-mpfr
+ configure-mpfr
@[ -f ./mpfr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17915,7 +17923,7 @@ maybe-mostlyclean-mpfr:
@if mpfr
maybe-mostlyclean-mpfr: mostlyclean-mpfr
-mostlyclean-mpfr:
+mostlyclean-mpfr:
@[ -f ./mpfr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17939,7 +17947,7 @@ maybe-clean-mpfr:
@if mpfr
maybe-clean-mpfr: clean-mpfr
-clean-mpfr:
+clean-mpfr:
@[ -f ./mpfr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17963,7 +17971,7 @@ maybe-distclean-mpfr:
@if mpfr
maybe-distclean-mpfr: distclean-mpfr
-distclean-mpfr:
+distclean-mpfr:
@[ -f ./mpfr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17987,7 +17995,7 @@ maybe-maintainer-clean-mpfr:
@if mpfr
maybe-maintainer-clean-mpfr: maintainer-clean-mpfr
-maintainer-clean-mpfr:
+maintainer-clean-mpfr:
@[ -f ./mpfr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18015,7 +18023,7 @@ configure-mpc: stage_current
@endif gcc-bootstrap
@if mpc
maybe-configure-mpc: configure-mpc
-configure-mpc:
+configure-mpc:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/mpc/Makefile || exit 0; \
@@ -18554,7 +18562,7 @@ maybe-info-mpc:
maybe-info-mpc: info-mpc
info-mpc: \
- configure-mpc
+ configure-mpc
@[ -f ./mpc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18579,7 +18587,7 @@ maybe-dvi-mpc:
maybe-dvi-mpc: dvi-mpc
dvi-mpc: \
- configure-mpc
+ configure-mpc
@[ -f ./mpc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18604,7 +18612,7 @@ maybe-pdf-mpc:
maybe-pdf-mpc: pdf-mpc
pdf-mpc: \
- configure-mpc
+ configure-mpc
@[ -f ./mpc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18629,7 +18637,7 @@ maybe-html-mpc:
maybe-html-mpc: html-mpc
html-mpc: \
- configure-mpc
+ configure-mpc
@[ -f ./mpc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18654,7 +18662,7 @@ maybe-TAGS-mpc:
maybe-TAGS-mpc: TAGS-mpc
TAGS-mpc: \
- configure-mpc
+ configure-mpc
@[ -f ./mpc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18680,7 +18688,7 @@ maybe-install-info-mpc: install-info-mpc
install-info-mpc: \
configure-mpc \
- info-mpc
+ info-mpc
@[ -f ./mpc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18706,7 +18714,7 @@ maybe-install-pdf-mpc: install-pdf-mpc
install-pdf-mpc: \
configure-mpc \
- pdf-mpc
+ pdf-mpc
@[ -f ./mpc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18732,7 +18740,7 @@ maybe-install-html-mpc: install-html-mpc
install-html-mpc: \
configure-mpc \
- html-mpc
+ html-mpc
@[ -f ./mpc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18757,7 +18765,7 @@ maybe-installcheck-mpc:
maybe-installcheck-mpc: installcheck-mpc
installcheck-mpc: \
- configure-mpc
+ configure-mpc
@[ -f ./mpc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18781,7 +18789,7 @@ maybe-mostlyclean-mpc:
@if mpc
maybe-mostlyclean-mpc: mostlyclean-mpc
-mostlyclean-mpc:
+mostlyclean-mpc:
@[ -f ./mpc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18805,7 +18813,7 @@ maybe-clean-mpc:
@if mpc
maybe-clean-mpc: clean-mpc
-clean-mpc:
+clean-mpc:
@[ -f ./mpc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18829,7 +18837,7 @@ maybe-distclean-mpc:
@if mpc
maybe-distclean-mpc: distclean-mpc
-distclean-mpc:
+distclean-mpc:
@[ -f ./mpc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18853,7 +18861,7 @@ maybe-maintainer-clean-mpc:
@if mpc
maybe-maintainer-clean-mpc: maintainer-clean-mpc
-maintainer-clean-mpc:
+maintainer-clean-mpc:
@[ -f ./mpc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18881,7 +18889,7 @@ configure-ppl: stage_current
@endif gcc-bootstrap
@if ppl
maybe-configure-ppl: configure-ppl
-configure-ppl:
+configure-ppl:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/ppl/Makefile || exit 0; \
@@ -19420,7 +19428,7 @@ maybe-info-ppl:
maybe-info-ppl: info-ppl
info-ppl: \
- configure-ppl
+ configure-ppl
@[ -f ./ppl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19445,7 +19453,7 @@ maybe-dvi-ppl:
maybe-dvi-ppl: dvi-ppl
dvi-ppl: \
- configure-ppl
+ configure-ppl
@[ -f ./ppl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19470,7 +19478,7 @@ maybe-pdf-ppl:
maybe-pdf-ppl: pdf-ppl
pdf-ppl: \
- configure-ppl
+ configure-ppl
@[ -f ./ppl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19495,7 +19503,7 @@ maybe-html-ppl:
maybe-html-ppl: html-ppl
html-ppl: \
- configure-ppl
+ configure-ppl
@[ -f ./ppl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19520,7 +19528,7 @@ maybe-TAGS-ppl:
maybe-TAGS-ppl: TAGS-ppl
TAGS-ppl: \
- configure-ppl
+ configure-ppl
@[ -f ./ppl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19546,7 +19554,7 @@ maybe-install-info-ppl: install-info-ppl
install-info-ppl: \
configure-ppl \
- info-ppl
+ info-ppl
@[ -f ./ppl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19572,7 +19580,7 @@ maybe-install-pdf-ppl: install-pdf-ppl
install-pdf-ppl: \
configure-ppl \
- pdf-ppl
+ pdf-ppl
@[ -f ./ppl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19598,7 +19606,7 @@ maybe-install-html-ppl: install-html-ppl
install-html-ppl: \
configure-ppl \
- html-ppl
+ html-ppl
@[ -f ./ppl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19623,7 +19631,7 @@ maybe-installcheck-ppl:
maybe-installcheck-ppl: installcheck-ppl
installcheck-ppl: \
- configure-ppl
+ configure-ppl
@[ -f ./ppl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19647,7 +19655,7 @@ maybe-mostlyclean-ppl:
@if ppl
maybe-mostlyclean-ppl: mostlyclean-ppl
-mostlyclean-ppl:
+mostlyclean-ppl:
@[ -f ./ppl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19671,7 +19679,7 @@ maybe-clean-ppl:
@if ppl
maybe-clean-ppl: clean-ppl
-clean-ppl:
+clean-ppl:
@[ -f ./ppl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19695,7 +19703,7 @@ maybe-distclean-ppl:
@if ppl
maybe-distclean-ppl: distclean-ppl
-distclean-ppl:
+distclean-ppl:
@[ -f ./ppl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19719,7 +19727,7 @@ maybe-maintainer-clean-ppl:
@if ppl
maybe-maintainer-clean-ppl: maintainer-clean-ppl
-maintainer-clean-ppl:
+maintainer-clean-ppl:
@[ -f ./ppl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19747,7 +19755,7 @@ configure-cloog: stage_current
@endif gcc-bootstrap
@if cloog
maybe-configure-cloog: configure-cloog
-configure-cloog:
+configure-cloog:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/cloog/Makefile || exit 0; \
@@ -20286,7 +20294,7 @@ maybe-info-cloog:
maybe-info-cloog: info-cloog
info-cloog: \
- configure-cloog
+ configure-cloog
@[ -f ./cloog/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -20311,7 +20319,7 @@ maybe-dvi-cloog:
maybe-dvi-cloog: dvi-cloog
dvi-cloog: \
- configure-cloog
+ configure-cloog
@[ -f ./cloog/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -20336,7 +20344,7 @@ maybe-pdf-cloog:
maybe-pdf-cloog: pdf-cloog
pdf-cloog: \
- configure-cloog
+ configure-cloog
@[ -f ./cloog/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -20361,7 +20369,7 @@ maybe-html-cloog:
maybe-html-cloog: html-cloog
html-cloog: \
- configure-cloog
+ configure-cloog
@[ -f ./cloog/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -20386,7 +20394,7 @@ maybe-TAGS-cloog:
maybe-TAGS-cloog: TAGS-cloog
TAGS-cloog: \
- configure-cloog
+ configure-cloog
@[ -f ./cloog/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -20412,7 +20420,7 @@ maybe-install-info-cloog: install-info-cloog
install-info-cloog: \
configure-cloog \
- info-cloog
+ info-cloog
@[ -f ./cloog/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -20438,7 +20446,7 @@ maybe-install-pdf-cloog: install-pdf-cloog
install-pdf-cloog: \
configure-cloog \
- pdf-cloog
+ pdf-cloog
@[ -f ./cloog/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -20464,7 +20472,7 @@ maybe-install-html-cloog: install-html-cloog
install-html-cloog: \
configure-cloog \
- html-cloog
+ html-cloog
@[ -f ./cloog/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -20489,7 +20497,7 @@ maybe-installcheck-cloog:
maybe-installcheck-cloog: installcheck-cloog
installcheck-cloog: \
- configure-cloog
+ configure-cloog
@[ -f ./cloog/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -20513,7 +20521,7 @@ maybe-mostlyclean-cloog:
@if cloog
maybe-mostlyclean-cloog: mostlyclean-cloog
-mostlyclean-cloog:
+mostlyclean-cloog:
@[ -f ./cloog/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -20537,7 +20545,7 @@ maybe-clean-cloog:
@if cloog
maybe-clean-cloog: clean-cloog
-clean-cloog:
+clean-cloog:
@[ -f ./cloog/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -20561,7 +20569,7 @@ maybe-distclean-cloog:
@if cloog
maybe-distclean-cloog: distclean-cloog
-distclean-cloog:
+distclean-cloog:
@[ -f ./cloog/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -20585,7 +20593,7 @@ maybe-maintainer-clean-cloog:
@if cloog
maybe-maintainer-clean-cloog: maintainer-clean-cloog
-maintainer-clean-cloog:
+maintainer-clean-cloog:
@[ -f ./cloog/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -20613,7 +20621,7 @@ configure-libelf: stage_current
@endif gcc-bootstrap
@if libelf
maybe-configure-libelf: configure-libelf
-configure-libelf:
+configure-libelf:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/libelf/Makefile || exit 0; \
@@ -21152,7 +21160,7 @@ maybe-info-libelf:
maybe-info-libelf: info-libelf
info-libelf: \
- configure-libelf
+ configure-libelf
@[ -f ./libelf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21177,7 +21185,7 @@ maybe-dvi-libelf:
maybe-dvi-libelf: dvi-libelf
dvi-libelf: \
- configure-libelf
+ configure-libelf
@[ -f ./libelf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21202,7 +21210,7 @@ maybe-pdf-libelf:
maybe-pdf-libelf: pdf-libelf
pdf-libelf: \
- configure-libelf
+ configure-libelf
@[ -f ./libelf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21227,7 +21235,7 @@ maybe-html-libelf:
maybe-html-libelf: html-libelf
html-libelf: \
- configure-libelf
+ configure-libelf
@[ -f ./libelf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21252,7 +21260,7 @@ maybe-TAGS-libelf:
maybe-TAGS-libelf: TAGS-libelf
TAGS-libelf: \
- configure-libelf
+ configure-libelf
@[ -f ./libelf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21278,7 +21286,7 @@ maybe-install-info-libelf: install-info-libelf
install-info-libelf: \
configure-libelf \
- info-libelf
+ info-libelf
@[ -f ./libelf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21304,7 +21312,7 @@ maybe-install-pdf-libelf: install-pdf-libelf
install-pdf-libelf: \
configure-libelf \
- pdf-libelf
+ pdf-libelf
@[ -f ./libelf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21330,7 +21338,7 @@ maybe-install-html-libelf: install-html-libelf
install-html-libelf: \
configure-libelf \
- html-libelf
+ html-libelf
@[ -f ./libelf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21355,7 +21363,7 @@ maybe-installcheck-libelf:
maybe-installcheck-libelf: installcheck-libelf
installcheck-libelf: \
- configure-libelf
+ configure-libelf
@[ -f ./libelf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21379,7 +21387,7 @@ maybe-mostlyclean-libelf:
@if libelf
maybe-mostlyclean-libelf: mostlyclean-libelf
-mostlyclean-libelf:
+mostlyclean-libelf:
@[ -f ./libelf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21403,7 +21411,7 @@ maybe-clean-libelf:
@if libelf
maybe-clean-libelf: clean-libelf
-clean-libelf:
+clean-libelf:
@[ -f ./libelf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21427,7 +21435,7 @@ maybe-distclean-libelf:
@if libelf
maybe-distclean-libelf: distclean-libelf
-distclean-libelf:
+distclean-libelf:
@[ -f ./libelf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21451,7 +21459,7 @@ maybe-maintainer-clean-libelf:
@if libelf
maybe-maintainer-clean-libelf: maintainer-clean-libelf
-maintainer-clean-libelf:
+maintainer-clean-libelf:
@[ -f ./libelf/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21479,7 +21487,7 @@ configure-gnuserv: stage_current
@endif gcc-bootstrap
@if gnuserv
maybe-configure-gnuserv: configure-gnuserv
-configure-gnuserv:
+configure-gnuserv:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21564,7 +21572,7 @@ maybe-info-gnuserv:
maybe-info-gnuserv: info-gnuserv
info-gnuserv: \
- configure-gnuserv
+ configure-gnuserv
@: $(MAKE); $(unstage)
@[ -f ./gnuserv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -21590,7 +21598,7 @@ maybe-dvi-gnuserv:
maybe-dvi-gnuserv: dvi-gnuserv
dvi-gnuserv: \
- configure-gnuserv
+ configure-gnuserv
@: $(MAKE); $(unstage)
@[ -f ./gnuserv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -21616,7 +21624,7 @@ maybe-pdf-gnuserv:
maybe-pdf-gnuserv: pdf-gnuserv
pdf-gnuserv: \
- configure-gnuserv
+ configure-gnuserv
@: $(MAKE); $(unstage)
@[ -f ./gnuserv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -21642,7 +21650,7 @@ maybe-html-gnuserv:
maybe-html-gnuserv: html-gnuserv
html-gnuserv: \
- configure-gnuserv
+ configure-gnuserv
@: $(MAKE); $(unstage)
@[ -f ./gnuserv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -21668,7 +21676,7 @@ maybe-TAGS-gnuserv:
maybe-TAGS-gnuserv: TAGS-gnuserv
TAGS-gnuserv: \
- configure-gnuserv
+ configure-gnuserv
@: $(MAKE); $(unstage)
@[ -f ./gnuserv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -21695,7 +21703,7 @@ maybe-install-info-gnuserv: install-info-gnuserv
install-info-gnuserv: \
configure-gnuserv \
- info-gnuserv
+ info-gnuserv
@: $(MAKE); $(unstage)
@[ -f ./gnuserv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -21722,7 +21730,7 @@ maybe-install-pdf-gnuserv: install-pdf-gnuserv
install-pdf-gnuserv: \
configure-gnuserv \
- pdf-gnuserv
+ pdf-gnuserv
@: $(MAKE); $(unstage)
@[ -f ./gnuserv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -21749,7 +21757,7 @@ maybe-install-html-gnuserv: install-html-gnuserv
install-html-gnuserv: \
configure-gnuserv \
- html-gnuserv
+ html-gnuserv
@: $(MAKE); $(unstage)
@[ -f ./gnuserv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -21775,7 +21783,7 @@ maybe-installcheck-gnuserv:
maybe-installcheck-gnuserv: installcheck-gnuserv
installcheck-gnuserv: \
- configure-gnuserv
+ configure-gnuserv
@: $(MAKE); $(unstage)
@[ -f ./gnuserv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -21800,7 +21808,7 @@ maybe-mostlyclean-gnuserv:
@if gnuserv
maybe-mostlyclean-gnuserv: mostlyclean-gnuserv
-mostlyclean-gnuserv:
+mostlyclean-gnuserv:
@: $(MAKE); $(unstage)
@[ -f ./gnuserv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -21825,7 +21833,7 @@ maybe-clean-gnuserv:
@if gnuserv
maybe-clean-gnuserv: clean-gnuserv
-clean-gnuserv:
+clean-gnuserv:
@: $(MAKE); $(unstage)
@[ -f ./gnuserv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -21850,7 +21858,7 @@ maybe-distclean-gnuserv:
@if gnuserv
maybe-distclean-gnuserv: distclean-gnuserv
-distclean-gnuserv:
+distclean-gnuserv:
@: $(MAKE); $(unstage)
@[ -f ./gnuserv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -21875,7 +21883,7 @@ maybe-maintainer-clean-gnuserv:
@if gnuserv
maybe-maintainer-clean-gnuserv: maintainer-clean-gnuserv
-maintainer-clean-gnuserv:
+maintainer-clean-gnuserv:
@: $(MAKE); $(unstage)
@[ -f ./gnuserv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -21904,7 +21912,7 @@ configure-gold: stage_current
@endif gcc-bootstrap
@if gold
maybe-configure-gold: configure-gold
-configure-gold:
+configure-gold:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/gold/Makefile || exit 0; \
@@ -22443,7 +22451,7 @@ maybe-info-gold:
maybe-info-gold: info-gold
info-gold: \
- configure-gold
+ configure-gold
@[ -f ./gold/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22468,7 +22476,7 @@ maybe-dvi-gold:
maybe-dvi-gold: dvi-gold
dvi-gold: \
- configure-gold
+ configure-gold
@[ -f ./gold/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22493,7 +22501,7 @@ maybe-pdf-gold:
maybe-pdf-gold: pdf-gold
pdf-gold: \
- configure-gold
+ configure-gold
@[ -f ./gold/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22518,7 +22526,7 @@ maybe-html-gold:
maybe-html-gold: html-gold
html-gold: \
- configure-gold
+ configure-gold
@[ -f ./gold/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22543,7 +22551,7 @@ maybe-TAGS-gold:
maybe-TAGS-gold: TAGS-gold
TAGS-gold: \
- configure-gold
+ configure-gold
@[ -f ./gold/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22569,7 +22577,7 @@ maybe-install-info-gold: install-info-gold
install-info-gold: \
configure-gold \
- info-gold
+ info-gold
@[ -f ./gold/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22595,7 +22603,7 @@ maybe-install-pdf-gold: install-pdf-gold
install-pdf-gold: \
configure-gold \
- pdf-gold
+ pdf-gold
@[ -f ./gold/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22621,7 +22629,7 @@ maybe-install-html-gold: install-html-gold
install-html-gold: \
configure-gold \
- html-gold
+ html-gold
@[ -f ./gold/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22646,7 +22654,7 @@ maybe-installcheck-gold:
maybe-installcheck-gold: installcheck-gold
installcheck-gold: \
- configure-gold
+ configure-gold
@[ -f ./gold/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22670,7 +22678,7 @@ maybe-mostlyclean-gold:
@if gold
maybe-mostlyclean-gold: mostlyclean-gold
-mostlyclean-gold:
+mostlyclean-gold:
@[ -f ./gold/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22694,7 +22702,7 @@ maybe-clean-gold:
@if gold
maybe-clean-gold: clean-gold
-clean-gold:
+clean-gold:
@[ -f ./gold/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22718,7 +22726,7 @@ maybe-distclean-gold:
@if gold
maybe-distclean-gold: distclean-gold
-distclean-gold:
+distclean-gold:
@[ -f ./gold/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22742,7 +22750,7 @@ maybe-maintainer-clean-gold:
@if gold
maybe-maintainer-clean-gold: maintainer-clean-gold
-maintainer-clean-gold:
+maintainer-clean-gold:
@[ -f ./gold/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22770,7 +22778,7 @@ configure-gprof: stage_current
@endif gcc-bootstrap
@if gprof
maybe-configure-gprof: configure-gprof
-configure-gprof:
+configure-gprof:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -22855,7 +22863,7 @@ maybe-info-gprof:
maybe-info-gprof: info-gprof
info-gprof: \
- configure-gprof
+ configure-gprof
@: $(MAKE); $(unstage)
@[ -f ./gprof/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -22881,7 +22889,7 @@ maybe-dvi-gprof:
maybe-dvi-gprof: dvi-gprof
dvi-gprof: \
- configure-gprof
+ configure-gprof
@: $(MAKE); $(unstage)
@[ -f ./gprof/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -22907,7 +22915,7 @@ maybe-pdf-gprof:
maybe-pdf-gprof: pdf-gprof
pdf-gprof: \
- configure-gprof
+ configure-gprof
@: $(MAKE); $(unstage)
@[ -f ./gprof/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -22933,7 +22941,7 @@ maybe-html-gprof:
maybe-html-gprof: html-gprof
html-gprof: \
- configure-gprof
+ configure-gprof
@: $(MAKE); $(unstage)
@[ -f ./gprof/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -22959,7 +22967,7 @@ maybe-TAGS-gprof:
maybe-TAGS-gprof: TAGS-gprof
TAGS-gprof: \
- configure-gprof
+ configure-gprof
@: $(MAKE); $(unstage)
@[ -f ./gprof/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -22986,7 +22994,7 @@ maybe-install-info-gprof: install-info-gprof
install-info-gprof: \
configure-gprof \
- info-gprof
+ info-gprof
@: $(MAKE); $(unstage)
@[ -f ./gprof/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23013,7 +23021,7 @@ maybe-install-pdf-gprof: install-pdf-gprof
install-pdf-gprof: \
configure-gprof \
- pdf-gprof
+ pdf-gprof
@: $(MAKE); $(unstage)
@[ -f ./gprof/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23040,7 +23048,7 @@ maybe-install-html-gprof: install-html-gprof
install-html-gprof: \
configure-gprof \
- html-gprof
+ html-gprof
@: $(MAKE); $(unstage)
@[ -f ./gprof/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23066,7 +23074,7 @@ maybe-installcheck-gprof:
maybe-installcheck-gprof: installcheck-gprof
installcheck-gprof: \
- configure-gprof
+ configure-gprof
@: $(MAKE); $(unstage)
@[ -f ./gprof/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23091,7 +23099,7 @@ maybe-mostlyclean-gprof:
@if gprof
maybe-mostlyclean-gprof: mostlyclean-gprof
-mostlyclean-gprof:
+mostlyclean-gprof:
@: $(MAKE); $(unstage)
@[ -f ./gprof/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23116,7 +23124,7 @@ maybe-clean-gprof:
@if gprof
maybe-clean-gprof: clean-gprof
-clean-gprof:
+clean-gprof:
@: $(MAKE); $(unstage)
@[ -f ./gprof/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23141,7 +23149,7 @@ maybe-distclean-gprof:
@if gprof
maybe-distclean-gprof: distclean-gprof
-distclean-gprof:
+distclean-gprof:
@: $(MAKE); $(unstage)
@[ -f ./gprof/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23166,7 +23174,7 @@ maybe-maintainer-clean-gprof:
@if gprof
maybe-maintainer-clean-gprof: maintainer-clean-gprof
-maintainer-clean-gprof:
+maintainer-clean-gprof:
@: $(MAKE); $(unstage)
@[ -f ./gprof/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23195,7 +23203,7 @@ configure-gzip: stage_current
@endif gcc-bootstrap
@if gzip
maybe-configure-gzip: configure-gzip
-configure-gzip:
+configure-gzip:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -23280,7 +23288,7 @@ maybe-info-gzip:
maybe-info-gzip: info-gzip
info-gzip: \
- configure-gzip
+ configure-gzip
@: $(MAKE); $(unstage)
@[ -f ./gzip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23306,7 +23314,7 @@ maybe-dvi-gzip:
maybe-dvi-gzip: dvi-gzip
dvi-gzip: \
- configure-gzip
+ configure-gzip
@: $(MAKE); $(unstage)
@[ -f ./gzip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23332,7 +23340,7 @@ maybe-pdf-gzip:
maybe-pdf-gzip: pdf-gzip
pdf-gzip: \
- configure-gzip
+ configure-gzip
@: $(MAKE); $(unstage)
@[ -f ./gzip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23358,7 +23366,7 @@ maybe-html-gzip:
maybe-html-gzip: html-gzip
html-gzip: \
- configure-gzip
+ configure-gzip
@: $(MAKE); $(unstage)
@[ -f ./gzip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23384,7 +23392,7 @@ maybe-TAGS-gzip:
maybe-TAGS-gzip: TAGS-gzip
TAGS-gzip: \
- configure-gzip
+ configure-gzip
@: $(MAKE); $(unstage)
@[ -f ./gzip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23411,7 +23419,7 @@ maybe-install-info-gzip: install-info-gzip
install-info-gzip: \
configure-gzip \
- info-gzip
+ info-gzip
@: $(MAKE); $(unstage)
@[ -f ./gzip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23438,7 +23446,7 @@ maybe-install-pdf-gzip: install-pdf-gzip
install-pdf-gzip: \
configure-gzip \
- pdf-gzip
+ pdf-gzip
@: $(MAKE); $(unstage)
@[ -f ./gzip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23465,7 +23473,7 @@ maybe-install-html-gzip: install-html-gzip
install-html-gzip: \
configure-gzip \
- html-gzip
+ html-gzip
@: $(MAKE); $(unstage)
@[ -f ./gzip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23491,7 +23499,7 @@ maybe-installcheck-gzip:
maybe-installcheck-gzip: installcheck-gzip
installcheck-gzip: \
- configure-gzip
+ configure-gzip
@: $(MAKE); $(unstage)
@[ -f ./gzip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23516,7 +23524,7 @@ maybe-mostlyclean-gzip:
@if gzip
maybe-mostlyclean-gzip: mostlyclean-gzip
-mostlyclean-gzip:
+mostlyclean-gzip:
@: $(MAKE); $(unstage)
@[ -f ./gzip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23541,7 +23549,7 @@ maybe-clean-gzip:
@if gzip
maybe-clean-gzip: clean-gzip
-clean-gzip:
+clean-gzip:
@: $(MAKE); $(unstage)
@[ -f ./gzip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23566,7 +23574,7 @@ maybe-distclean-gzip:
@if gzip
maybe-distclean-gzip: distclean-gzip
-distclean-gzip:
+distclean-gzip:
@: $(MAKE); $(unstage)
@[ -f ./gzip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23591,7 +23599,7 @@ maybe-maintainer-clean-gzip:
@if gzip
maybe-maintainer-clean-gzip: maintainer-clean-gzip
-maintainer-clean-gzip:
+maintainer-clean-gzip:
@: $(MAKE); $(unstage)
@[ -f ./gzip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23620,7 +23628,7 @@ configure-hello: stage_current
@endif gcc-bootstrap
@if hello
maybe-configure-hello: configure-hello
-configure-hello:
+configure-hello:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -23705,7 +23713,7 @@ maybe-info-hello:
maybe-info-hello: info-hello
info-hello: \
- configure-hello
+ configure-hello
@: $(MAKE); $(unstage)
@[ -f ./hello/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23731,7 +23739,7 @@ maybe-dvi-hello:
maybe-dvi-hello: dvi-hello
dvi-hello: \
- configure-hello
+ configure-hello
@: $(MAKE); $(unstage)
@[ -f ./hello/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23757,7 +23765,7 @@ maybe-pdf-hello:
maybe-pdf-hello: pdf-hello
pdf-hello: \
- configure-hello
+ configure-hello
@: $(MAKE); $(unstage)
@[ -f ./hello/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23783,7 +23791,7 @@ maybe-html-hello:
maybe-html-hello: html-hello
html-hello: \
- configure-hello
+ configure-hello
@: $(MAKE); $(unstage)
@[ -f ./hello/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23809,7 +23817,7 @@ maybe-TAGS-hello:
maybe-TAGS-hello: TAGS-hello
TAGS-hello: \
- configure-hello
+ configure-hello
@: $(MAKE); $(unstage)
@[ -f ./hello/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23836,7 +23844,7 @@ maybe-install-info-hello: install-info-hello
install-info-hello: \
configure-hello \
- info-hello
+ info-hello
@: $(MAKE); $(unstage)
@[ -f ./hello/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23863,7 +23871,7 @@ maybe-install-pdf-hello: install-pdf-hello
install-pdf-hello: \
configure-hello \
- pdf-hello
+ pdf-hello
@: $(MAKE); $(unstage)
@[ -f ./hello/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23890,7 +23898,7 @@ maybe-install-html-hello: install-html-hello
install-html-hello: \
configure-hello \
- html-hello
+ html-hello
@: $(MAKE); $(unstage)
@[ -f ./hello/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23916,7 +23924,7 @@ maybe-installcheck-hello:
maybe-installcheck-hello: installcheck-hello
installcheck-hello: \
- configure-hello
+ configure-hello
@: $(MAKE); $(unstage)
@[ -f ./hello/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23941,7 +23949,7 @@ maybe-mostlyclean-hello:
@if hello
maybe-mostlyclean-hello: mostlyclean-hello
-mostlyclean-hello:
+mostlyclean-hello:
@: $(MAKE); $(unstage)
@[ -f ./hello/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23966,7 +23974,7 @@ maybe-clean-hello:
@if hello
maybe-clean-hello: clean-hello
-clean-hello:
+clean-hello:
@: $(MAKE); $(unstage)
@[ -f ./hello/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -23991,7 +23999,7 @@ maybe-distclean-hello:
@if hello
maybe-distclean-hello: distclean-hello
-distclean-hello:
+distclean-hello:
@: $(MAKE); $(unstage)
@[ -f ./hello/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24016,7 +24024,7 @@ maybe-maintainer-clean-hello:
@if hello
maybe-maintainer-clean-hello: maintainer-clean-hello
-maintainer-clean-hello:
+maintainer-clean-hello:
@: $(MAKE); $(unstage)
@[ -f ./hello/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24045,7 +24053,7 @@ configure-indent: stage_current
@endif gcc-bootstrap
@if indent
maybe-configure-indent: configure-indent
-configure-indent:
+configure-indent:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24130,7 +24138,7 @@ maybe-info-indent:
maybe-info-indent: info-indent
info-indent: \
- configure-indent
+ configure-indent
@: $(MAKE); $(unstage)
@[ -f ./indent/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24156,7 +24164,7 @@ maybe-dvi-indent:
maybe-dvi-indent: dvi-indent
dvi-indent: \
- configure-indent
+ configure-indent
@: $(MAKE); $(unstage)
@[ -f ./indent/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24182,7 +24190,7 @@ maybe-pdf-indent:
maybe-pdf-indent: pdf-indent
pdf-indent: \
- configure-indent
+ configure-indent
@: $(MAKE); $(unstage)
@[ -f ./indent/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24208,7 +24216,7 @@ maybe-html-indent:
maybe-html-indent: html-indent
html-indent: \
- configure-indent
+ configure-indent
@: $(MAKE); $(unstage)
@[ -f ./indent/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24234,7 +24242,7 @@ maybe-TAGS-indent:
maybe-TAGS-indent: TAGS-indent
TAGS-indent: \
- configure-indent
+ configure-indent
@: $(MAKE); $(unstage)
@[ -f ./indent/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24261,7 +24269,7 @@ maybe-install-info-indent: install-info-indent
install-info-indent: \
configure-indent \
- info-indent
+ info-indent
@: $(MAKE); $(unstage)
@[ -f ./indent/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24288,7 +24296,7 @@ maybe-install-pdf-indent: install-pdf-indent
install-pdf-indent: \
configure-indent \
- pdf-indent
+ pdf-indent
@: $(MAKE); $(unstage)
@[ -f ./indent/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24315,7 +24323,7 @@ maybe-install-html-indent: install-html-indent
install-html-indent: \
configure-indent \
- html-indent
+ html-indent
@: $(MAKE); $(unstage)
@[ -f ./indent/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24341,7 +24349,7 @@ maybe-installcheck-indent:
maybe-installcheck-indent: installcheck-indent
installcheck-indent: \
- configure-indent
+ configure-indent
@: $(MAKE); $(unstage)
@[ -f ./indent/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24366,7 +24374,7 @@ maybe-mostlyclean-indent:
@if indent
maybe-mostlyclean-indent: mostlyclean-indent
-mostlyclean-indent:
+mostlyclean-indent:
@: $(MAKE); $(unstage)
@[ -f ./indent/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24391,7 +24399,7 @@ maybe-clean-indent:
@if indent
maybe-clean-indent: clean-indent
-clean-indent:
+clean-indent:
@: $(MAKE); $(unstage)
@[ -f ./indent/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24416,7 +24424,7 @@ maybe-distclean-indent:
@if indent
maybe-distclean-indent: distclean-indent
-distclean-indent:
+distclean-indent:
@: $(MAKE); $(unstage)
@[ -f ./indent/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24441,7 +24449,7 @@ maybe-maintainer-clean-indent:
@if indent
maybe-maintainer-clean-indent: maintainer-clean-indent
-maintainer-clean-indent:
+maintainer-clean-indent:
@: $(MAKE); $(unstage)
@[ -f ./indent/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -24470,7 +24478,7 @@ configure-intl: stage_current
@endif gcc-bootstrap
@if intl
maybe-configure-intl: configure-intl
-configure-intl:
+configure-intl:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
@@ -25009,7 +25017,7 @@ maybe-info-intl:
maybe-info-intl: info-intl
info-intl: \
- configure-intl
+ configure-intl
@[ -f ./intl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25034,7 +25042,7 @@ maybe-dvi-intl:
maybe-dvi-intl: dvi-intl
dvi-intl: \
- configure-intl
+ configure-intl
@[ -f ./intl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25059,7 +25067,7 @@ maybe-pdf-intl:
maybe-pdf-intl: pdf-intl
pdf-intl: \
- configure-intl
+ configure-intl
@[ -f ./intl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25084,7 +25092,7 @@ maybe-html-intl:
maybe-html-intl: html-intl
html-intl: \
- configure-intl
+ configure-intl
@[ -f ./intl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25109,7 +25117,7 @@ maybe-TAGS-intl:
maybe-TAGS-intl: TAGS-intl
TAGS-intl: \
- configure-intl
+ configure-intl
@[ -f ./intl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25135,7 +25143,7 @@ maybe-install-info-intl: install-info-intl
install-info-intl: \
configure-intl \
- info-intl
+ info-intl
@[ -f ./intl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25161,7 +25169,7 @@ maybe-install-pdf-intl: install-pdf-intl
install-pdf-intl: \
configure-intl \
- pdf-intl
+ pdf-intl
@[ -f ./intl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25187,7 +25195,7 @@ maybe-install-html-intl: install-html-intl
install-html-intl: \
configure-intl \
- html-intl
+ html-intl
@[ -f ./intl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25212,7 +25220,7 @@ maybe-installcheck-intl:
maybe-installcheck-intl: installcheck-intl
installcheck-intl: \
- configure-intl
+ configure-intl
@[ -f ./intl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25236,7 +25244,7 @@ maybe-mostlyclean-intl:
@if intl
maybe-mostlyclean-intl: mostlyclean-intl
-mostlyclean-intl:
+mostlyclean-intl:
@[ -f ./intl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25260,7 +25268,7 @@ maybe-clean-intl:
@if intl
maybe-clean-intl: clean-intl
-clean-intl:
+clean-intl:
@[ -f ./intl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25284,7 +25292,7 @@ maybe-distclean-intl:
@if intl
maybe-distclean-intl: distclean-intl
-distclean-intl:
+distclean-intl:
@[ -f ./intl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25308,7 +25316,7 @@ maybe-maintainer-clean-intl:
@if intl
maybe-maintainer-clean-intl: maintainer-clean-intl
-maintainer-clean-intl:
+maintainer-clean-intl:
@[ -f ./intl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25336,7 +25344,7 @@ configure-tcl: stage_current
@endif gcc-bootstrap
@if tcl
maybe-configure-tcl: configure-tcl
-configure-tcl:
+configure-tcl:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25421,7 +25429,7 @@ maybe-info-tcl:
maybe-info-tcl: info-tcl
info-tcl: \
- configure-tcl
+ configure-tcl
@: $(MAKE); $(unstage)
@[ -f ./tcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25447,7 +25455,7 @@ maybe-dvi-tcl:
maybe-dvi-tcl: dvi-tcl
dvi-tcl: \
- configure-tcl
+ configure-tcl
@: $(MAKE); $(unstage)
@[ -f ./tcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25473,7 +25481,7 @@ maybe-pdf-tcl:
maybe-pdf-tcl: pdf-tcl
pdf-tcl: \
- configure-tcl
+ configure-tcl
@: $(MAKE); $(unstage)
@[ -f ./tcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25499,7 +25507,7 @@ maybe-html-tcl:
maybe-html-tcl: html-tcl
html-tcl: \
- configure-tcl
+ configure-tcl
@: $(MAKE); $(unstage)
@[ -f ./tcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25525,7 +25533,7 @@ maybe-TAGS-tcl:
maybe-TAGS-tcl: TAGS-tcl
TAGS-tcl: \
- configure-tcl
+ configure-tcl
@: $(MAKE); $(unstage)
@[ -f ./tcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25552,7 +25560,7 @@ maybe-install-info-tcl: install-info-tcl
install-info-tcl: \
configure-tcl \
- info-tcl
+ info-tcl
@: $(MAKE); $(unstage)
@[ -f ./tcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25579,7 +25587,7 @@ maybe-install-pdf-tcl: install-pdf-tcl
install-pdf-tcl: \
configure-tcl \
- pdf-tcl
+ pdf-tcl
@: $(MAKE); $(unstage)
@[ -f ./tcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25606,7 +25614,7 @@ maybe-install-html-tcl: install-html-tcl
install-html-tcl: \
configure-tcl \
- html-tcl
+ html-tcl
@: $(MAKE); $(unstage)
@[ -f ./tcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25632,7 +25640,7 @@ maybe-installcheck-tcl:
maybe-installcheck-tcl: installcheck-tcl
installcheck-tcl: \
- configure-tcl
+ configure-tcl
@: $(MAKE); $(unstage)
@[ -f ./tcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25667,7 +25675,7 @@ maybe-clean-tcl:
@if tcl
maybe-clean-tcl: clean-tcl
-clean-tcl:
+clean-tcl:
@: $(MAKE); $(unstage)
@[ -f ./tcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25692,7 +25700,7 @@ maybe-distclean-tcl:
@if tcl
maybe-distclean-tcl: distclean-tcl
-distclean-tcl:
+distclean-tcl:
@: $(MAKE); $(unstage)
@[ -f ./tcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25717,7 +25725,7 @@ maybe-maintainer-clean-tcl:
@if tcl
maybe-maintainer-clean-tcl: maintainer-clean-tcl
-maintainer-clean-tcl:
+maintainer-clean-tcl:
@: $(MAKE); $(unstage)
@[ -f ./tcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25746,7 +25754,7 @@ configure-itcl: stage_current
@endif gcc-bootstrap
@if itcl
maybe-configure-itcl: configure-itcl
-configure-itcl:
+configure-itcl:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25831,7 +25839,7 @@ maybe-info-itcl:
maybe-info-itcl: info-itcl
info-itcl: \
- configure-itcl
+ configure-itcl
@: $(MAKE); $(unstage)
@[ -f ./itcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25857,7 +25865,7 @@ maybe-dvi-itcl:
maybe-dvi-itcl: dvi-itcl
dvi-itcl: \
- configure-itcl
+ configure-itcl
@: $(MAKE); $(unstage)
@[ -f ./itcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25883,7 +25891,7 @@ maybe-pdf-itcl:
maybe-pdf-itcl: pdf-itcl
pdf-itcl: \
- configure-itcl
+ configure-itcl
@: $(MAKE); $(unstage)
@[ -f ./itcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25909,7 +25917,7 @@ maybe-html-itcl:
maybe-html-itcl: html-itcl
html-itcl: \
- configure-itcl
+ configure-itcl
@: $(MAKE); $(unstage)
@[ -f ./itcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25935,7 +25943,7 @@ maybe-TAGS-itcl:
maybe-TAGS-itcl: TAGS-itcl
TAGS-itcl: \
- configure-itcl
+ configure-itcl
@: $(MAKE); $(unstage)
@[ -f ./itcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25962,7 +25970,7 @@ maybe-install-info-itcl: install-info-itcl
install-info-itcl: \
configure-itcl \
- info-itcl
+ info-itcl
@: $(MAKE); $(unstage)
@[ -f ./itcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -25989,7 +25997,7 @@ maybe-install-pdf-itcl: install-pdf-itcl
install-pdf-itcl: \
configure-itcl \
- pdf-itcl
+ pdf-itcl
@: $(MAKE); $(unstage)
@[ -f ./itcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -26016,7 +26024,7 @@ maybe-install-html-itcl: install-html-itcl
install-html-itcl: \
configure-itcl \
- html-itcl
+ html-itcl
@: $(MAKE); $(unstage)
@[ -f ./itcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -26042,7 +26050,7 @@ maybe-installcheck-itcl:
maybe-installcheck-itcl: installcheck-itcl
installcheck-itcl: \
- configure-itcl
+ configure-itcl
@: $(MAKE); $(unstage)
@[ -f ./itcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -26067,7 +26075,7 @@ maybe-mostlyclean-itcl:
@if itcl
maybe-mostlyclean-itcl: mostlyclean-itcl
-mostlyclean-itcl:
+mostlyclean-itcl:
@: $(MAKE); $(unstage)
@[ -f ./itcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -26092,7 +26100,7 @@ maybe-clean-itcl:
@if itcl
maybe-clean-itcl: clean-itcl
-clean-itcl:
+clean-itcl:
@: $(MAKE); $(unstage)
@[ -f ./itcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -26117,7 +26125,7 @@ maybe-distclean-itcl:
@if itcl
maybe-distclean-itcl: distclean-itcl
-distclean-itcl:
+distclean-itcl:
@: $(MAKE); $(unstage)
@[ -f ./itcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -26142,7 +26150,7 @@ maybe-maintainer-clean-itcl:
@if itcl
maybe-maintainer-clean-itcl: maintainer-clean-itcl
-maintainer-clean-itcl:
+maintainer-clean-itcl:
@: $(MAKE); $(unstage)
@[ -f ./itcl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -26171,7 +26179,7 @@ configure-ld: stage_current
@endif gcc-bootstrap
@if ld
maybe-configure-ld: configure-ld
-configure-ld:
+configure-ld:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
@@ -26710,7 +26718,7 @@ maybe-info-ld:
maybe-info-ld: info-ld
info-ld: \
- configure-ld
+ configure-ld
@[ -f ./ld/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26735,7 +26743,7 @@ maybe-dvi-ld:
maybe-dvi-ld: dvi-ld
dvi-ld: \
- configure-ld
+ configure-ld
@[ -f ./ld/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26760,7 +26768,7 @@ maybe-pdf-ld:
maybe-pdf-ld: pdf-ld
pdf-ld: \
- configure-ld
+ configure-ld
@[ -f ./ld/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26785,7 +26793,7 @@ maybe-html-ld:
maybe-html-ld: html-ld
html-ld: \
- configure-ld
+ configure-ld
@[ -f ./ld/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26810,7 +26818,7 @@ maybe-TAGS-ld:
maybe-TAGS-ld: TAGS-ld
TAGS-ld: \
- configure-ld
+ configure-ld
@[ -f ./ld/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26836,7 +26844,7 @@ maybe-install-info-ld: install-info-ld
install-info-ld: \
configure-ld \
- info-ld
+ info-ld
@[ -f ./ld/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26862,7 +26870,7 @@ maybe-install-pdf-ld: install-pdf-ld
install-pdf-ld: \
configure-ld \
- pdf-ld
+ pdf-ld
@[ -f ./ld/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26888,7 +26896,7 @@ maybe-install-html-ld: install-html-ld
install-html-ld: \
configure-ld \
- html-ld
+ html-ld
@[ -f ./ld/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26913,7 +26921,7 @@ maybe-installcheck-ld:
maybe-installcheck-ld: installcheck-ld
installcheck-ld: \
- configure-ld
+ configure-ld
@[ -f ./ld/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26937,7 +26945,7 @@ maybe-mostlyclean-ld:
@if ld
maybe-mostlyclean-ld: mostlyclean-ld
-mostlyclean-ld:
+mostlyclean-ld:
@[ -f ./ld/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26961,7 +26969,7 @@ maybe-clean-ld:
@if ld
maybe-clean-ld: clean-ld
-clean-ld:
+clean-ld:
@[ -f ./ld/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26985,7 +26993,7 @@ maybe-distclean-ld:
@if ld
maybe-distclean-ld: distclean-ld
-distclean-ld:
+distclean-ld:
@[ -f ./ld/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27009,7 +27017,7 @@ maybe-maintainer-clean-ld:
@if ld
maybe-maintainer-clean-ld: maintainer-clean-ld
-maintainer-clean-ld:
+maintainer-clean-ld:
@[ -f ./ld/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27037,7 +27045,7 @@ configure-libcpp: stage_current
@endif gcc-bootstrap
@if libcpp
maybe-configure-libcpp: configure-libcpp
-configure-libcpp:
+configure-libcpp:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
@@ -27576,7 +27584,7 @@ maybe-info-libcpp:
maybe-info-libcpp: info-libcpp
info-libcpp: \
- configure-libcpp
+ configure-libcpp
@[ -f ./libcpp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27601,7 +27609,7 @@ maybe-dvi-libcpp:
maybe-dvi-libcpp: dvi-libcpp
dvi-libcpp: \
- configure-libcpp
+ configure-libcpp
@[ -f ./libcpp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27626,7 +27634,7 @@ maybe-pdf-libcpp:
maybe-pdf-libcpp: pdf-libcpp
pdf-libcpp: \
- configure-libcpp
+ configure-libcpp
@[ -f ./libcpp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27651,7 +27659,7 @@ maybe-html-libcpp:
maybe-html-libcpp: html-libcpp
html-libcpp: \
- configure-libcpp
+ configure-libcpp
@[ -f ./libcpp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27676,7 +27684,7 @@ maybe-TAGS-libcpp:
maybe-TAGS-libcpp: TAGS-libcpp
TAGS-libcpp: \
- configure-libcpp
+ configure-libcpp
@[ -f ./libcpp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27702,7 +27710,7 @@ maybe-install-info-libcpp: install-info-libcpp
install-info-libcpp: \
configure-libcpp \
- info-libcpp
+ info-libcpp
@[ -f ./libcpp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27728,7 +27736,7 @@ maybe-install-pdf-libcpp: install-pdf-libcpp
install-pdf-libcpp: \
configure-libcpp \
- pdf-libcpp
+ pdf-libcpp
@[ -f ./libcpp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27754,7 +27762,7 @@ maybe-install-html-libcpp: install-html-libcpp
install-html-libcpp: \
configure-libcpp \
- html-libcpp
+ html-libcpp
@[ -f ./libcpp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27779,7 +27787,7 @@ maybe-installcheck-libcpp:
maybe-installcheck-libcpp: installcheck-libcpp
installcheck-libcpp: \
- configure-libcpp
+ configure-libcpp
@[ -f ./libcpp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27803,7 +27811,7 @@ maybe-mostlyclean-libcpp:
@if libcpp
maybe-mostlyclean-libcpp: mostlyclean-libcpp
-mostlyclean-libcpp:
+mostlyclean-libcpp:
@[ -f ./libcpp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27827,7 +27835,7 @@ maybe-clean-libcpp:
@if libcpp
maybe-clean-libcpp: clean-libcpp
-clean-libcpp:
+clean-libcpp:
@[ -f ./libcpp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27851,7 +27859,7 @@ maybe-distclean-libcpp:
@if libcpp
maybe-distclean-libcpp: distclean-libcpp
-distclean-libcpp:
+distclean-libcpp:
@[ -f ./libcpp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27875,7 +27883,7 @@ maybe-maintainer-clean-libcpp:
@if libcpp
maybe-maintainer-clean-libcpp: maintainer-clean-libcpp
-maintainer-clean-libcpp:
+maintainer-clean-libcpp:
@[ -f ./libcpp/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27903,7 +27911,7 @@ configure-libdecnumber: stage_current
@endif gcc-bootstrap
@if libdecnumber
maybe-configure-libdecnumber: configure-libdecnumber
-configure-libdecnumber:
+configure-libdecnumber:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
@@ -28442,7 +28450,7 @@ maybe-info-libdecnumber:
maybe-info-libdecnumber: info-libdecnumber
info-libdecnumber: \
- configure-libdecnumber
+ configure-libdecnumber
@[ -f ./libdecnumber/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28467,7 +28475,7 @@ maybe-dvi-libdecnumber:
maybe-dvi-libdecnumber: dvi-libdecnumber
dvi-libdecnumber: \
- configure-libdecnumber
+ configure-libdecnumber
@[ -f ./libdecnumber/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28492,7 +28500,7 @@ maybe-pdf-libdecnumber:
maybe-pdf-libdecnumber: pdf-libdecnumber
pdf-libdecnumber: \
- configure-libdecnumber
+ configure-libdecnumber
@[ -f ./libdecnumber/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28517,7 +28525,7 @@ maybe-html-libdecnumber:
maybe-html-libdecnumber: html-libdecnumber
html-libdecnumber: \
- configure-libdecnumber
+ configure-libdecnumber
@[ -f ./libdecnumber/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28542,7 +28550,7 @@ maybe-TAGS-libdecnumber:
maybe-TAGS-libdecnumber: TAGS-libdecnumber
TAGS-libdecnumber: \
- configure-libdecnumber
+ configure-libdecnumber
@[ -f ./libdecnumber/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28568,7 +28576,7 @@ maybe-install-info-libdecnumber: install-info-libdecnumber
install-info-libdecnumber: \
configure-libdecnumber \
- info-libdecnumber
+ info-libdecnumber
@[ -f ./libdecnumber/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28594,7 +28602,7 @@ maybe-install-pdf-libdecnumber: install-pdf-libdecnumber
install-pdf-libdecnumber: \
configure-libdecnumber \
- pdf-libdecnumber
+ pdf-libdecnumber
@[ -f ./libdecnumber/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28620,7 +28628,7 @@ maybe-install-html-libdecnumber: install-html-libdecnumber
install-html-libdecnumber: \
configure-libdecnumber \
- html-libdecnumber
+ html-libdecnumber
@[ -f ./libdecnumber/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28645,7 +28653,7 @@ maybe-installcheck-libdecnumber:
maybe-installcheck-libdecnumber: installcheck-libdecnumber
installcheck-libdecnumber: \
- configure-libdecnumber
+ configure-libdecnumber
@[ -f ./libdecnumber/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28669,7 +28677,7 @@ maybe-mostlyclean-libdecnumber:
@if libdecnumber
maybe-mostlyclean-libdecnumber: mostlyclean-libdecnumber
-mostlyclean-libdecnumber:
+mostlyclean-libdecnumber:
@[ -f ./libdecnumber/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28693,7 +28701,7 @@ maybe-clean-libdecnumber:
@if libdecnumber
maybe-clean-libdecnumber: clean-libdecnumber
-clean-libdecnumber:
+clean-libdecnumber:
@[ -f ./libdecnumber/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28717,7 +28725,7 @@ maybe-distclean-libdecnumber:
@if libdecnumber
maybe-distclean-libdecnumber: distclean-libdecnumber
-distclean-libdecnumber:
+distclean-libdecnumber:
@[ -f ./libdecnumber/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28741,7 +28749,7 @@ maybe-maintainer-clean-libdecnumber:
@if libdecnumber
maybe-maintainer-clean-libdecnumber: maintainer-clean-libdecnumber
-maintainer-clean-libdecnumber:
+maintainer-clean-libdecnumber:
@[ -f ./libdecnumber/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28769,7 +28777,7 @@ configure-libgui: stage_current
@endif gcc-bootstrap
@if libgui
maybe-configure-libgui: configure-libgui
-configure-libgui:
+configure-libgui:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -28854,7 +28862,7 @@ maybe-info-libgui:
maybe-info-libgui: info-libgui
info-libgui: \
- configure-libgui
+ configure-libgui
@: $(MAKE); $(unstage)
@[ -f ./libgui/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -28880,7 +28888,7 @@ maybe-dvi-libgui:
maybe-dvi-libgui: dvi-libgui
dvi-libgui: \
- configure-libgui
+ configure-libgui
@: $(MAKE); $(unstage)
@[ -f ./libgui/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -28906,7 +28914,7 @@ maybe-pdf-libgui:
maybe-pdf-libgui: pdf-libgui
pdf-libgui: \
- configure-libgui
+ configure-libgui
@: $(MAKE); $(unstage)
@[ -f ./libgui/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -28932,7 +28940,7 @@ maybe-html-libgui:
maybe-html-libgui: html-libgui
html-libgui: \
- configure-libgui
+ configure-libgui
@: $(MAKE); $(unstage)
@[ -f ./libgui/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -28958,7 +28966,7 @@ maybe-TAGS-libgui:
maybe-TAGS-libgui: TAGS-libgui
TAGS-libgui: \
- configure-libgui
+ configure-libgui
@: $(MAKE); $(unstage)
@[ -f ./libgui/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -28985,7 +28993,7 @@ maybe-install-info-libgui: install-info-libgui
install-info-libgui: \
configure-libgui \
- info-libgui
+ info-libgui
@: $(MAKE); $(unstage)
@[ -f ./libgui/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -29012,7 +29020,7 @@ maybe-install-pdf-libgui: install-pdf-libgui
install-pdf-libgui: \
configure-libgui \
- pdf-libgui
+ pdf-libgui
@: $(MAKE); $(unstage)
@[ -f ./libgui/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -29039,7 +29047,7 @@ maybe-install-html-libgui: install-html-libgui
install-html-libgui: \
configure-libgui \
- html-libgui
+ html-libgui
@: $(MAKE); $(unstage)
@[ -f ./libgui/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -29065,7 +29073,7 @@ maybe-installcheck-libgui:
maybe-installcheck-libgui: installcheck-libgui
installcheck-libgui: \
- configure-libgui
+ configure-libgui
@: $(MAKE); $(unstage)
@[ -f ./libgui/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -29090,7 +29098,7 @@ maybe-mostlyclean-libgui:
@if libgui
maybe-mostlyclean-libgui: mostlyclean-libgui
-mostlyclean-libgui:
+mostlyclean-libgui:
@: $(MAKE); $(unstage)
@[ -f ./libgui/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -29115,7 +29123,7 @@ maybe-clean-libgui:
@if libgui
maybe-clean-libgui: clean-libgui
-clean-libgui:
+clean-libgui:
@: $(MAKE); $(unstage)
@[ -f ./libgui/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -29140,7 +29148,7 @@ maybe-distclean-libgui:
@if libgui
maybe-distclean-libgui: distclean-libgui
-distclean-libgui:
+distclean-libgui:
@: $(MAKE); $(unstage)
@[ -f ./libgui/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -29165,7 +29173,7 @@ maybe-maintainer-clean-libgui:
@if libgui
maybe-maintainer-clean-libgui: maintainer-clean-libgui
-maintainer-clean-libgui:
+maintainer-clean-libgui:
@: $(MAKE); $(unstage)
@[ -f ./libgui/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -29194,7 +29202,7 @@ configure-libiberty: stage_current
@endif gcc-bootstrap
@if libiberty
maybe-configure-libiberty: configure-libiberty
-configure-libiberty:
+configure-libiberty:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
@@ -29739,7 +29747,7 @@ maybe-info-libiberty:
maybe-info-libiberty: info-libiberty
info-libiberty: \
- configure-libiberty
+ configure-libiberty
@[ -f ./libiberty/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -29764,7 +29772,7 @@ maybe-dvi-libiberty:
maybe-dvi-libiberty: dvi-libiberty
dvi-libiberty: \
- configure-libiberty
+ configure-libiberty
@[ -f ./libiberty/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -29789,7 +29797,7 @@ maybe-pdf-libiberty:
maybe-pdf-libiberty: pdf-libiberty
pdf-libiberty: \
- configure-libiberty
+ configure-libiberty
@[ -f ./libiberty/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -29814,7 +29822,7 @@ maybe-html-libiberty:
maybe-html-libiberty: html-libiberty
html-libiberty: \
- configure-libiberty
+ configure-libiberty
@[ -f ./libiberty/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -29839,7 +29847,7 @@ maybe-TAGS-libiberty:
maybe-TAGS-libiberty: TAGS-libiberty
TAGS-libiberty: \
- configure-libiberty
+ configure-libiberty
@[ -f ./libiberty/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -29865,7 +29873,7 @@ maybe-install-info-libiberty: install-info-libiberty
install-info-libiberty: \
configure-libiberty \
- info-libiberty
+ info-libiberty
@[ -f ./libiberty/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -29891,7 +29899,7 @@ maybe-install-pdf-libiberty: install-pdf-libiberty
install-pdf-libiberty: \
configure-libiberty \
- pdf-libiberty
+ pdf-libiberty
@[ -f ./libiberty/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -29917,7 +29925,7 @@ maybe-install-html-libiberty: install-html-libiberty
install-html-libiberty: \
configure-libiberty \
- html-libiberty
+ html-libiberty
@[ -f ./libiberty/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -29942,7 +29950,7 @@ maybe-installcheck-libiberty:
maybe-installcheck-libiberty: installcheck-libiberty
installcheck-libiberty: \
- configure-libiberty
+ configure-libiberty
@[ -f ./libiberty/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -29966,7 +29974,7 @@ maybe-mostlyclean-libiberty:
@if libiberty
maybe-mostlyclean-libiberty: mostlyclean-libiberty
-mostlyclean-libiberty:
+mostlyclean-libiberty:
@[ -f ./libiberty/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -29990,7 +29998,7 @@ maybe-clean-libiberty:
@if libiberty
maybe-clean-libiberty: clean-libiberty
-clean-libiberty:
+clean-libiberty:
@[ -f ./libiberty/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30014,7 +30022,7 @@ maybe-distclean-libiberty:
@if libiberty
maybe-distclean-libiberty: distclean-libiberty
-distclean-libiberty:
+distclean-libiberty:
@[ -f ./libiberty/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30038,7 +30046,7 @@ maybe-maintainer-clean-libiberty:
@if libiberty
maybe-maintainer-clean-libiberty: maintainer-clean-libiberty
-maintainer-clean-libiberty:
+maintainer-clean-libiberty:
@[ -f ./libiberty/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30066,7 +30074,7 @@ configure-libiconv: stage_current
@endif gcc-bootstrap
@if libiconv
maybe-configure-libiconv: configure-libiconv
-configure-libiconv:
+configure-libiconv:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30145,7 +30153,7 @@ maybe-info-libiconv:
maybe-info-libiconv: info-libiconv
info-libiconv: \
- configure-libiconv
+ configure-libiconv
@: $(MAKE); $(unstage)
@[ -f ./libiconv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30171,7 +30179,7 @@ maybe-dvi-libiconv:
maybe-dvi-libiconv: dvi-libiconv
dvi-libiconv: \
- configure-libiconv
+ configure-libiconv
@: $(MAKE); $(unstage)
@[ -f ./libiconv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30197,7 +30205,7 @@ maybe-pdf-libiconv:
maybe-pdf-libiconv: pdf-libiconv
pdf-libiconv: \
- configure-libiconv
+ configure-libiconv
@: $(MAKE); $(unstage)
@[ -f ./libiconv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30223,7 +30231,7 @@ maybe-html-libiconv:
maybe-html-libiconv: html-libiconv
html-libiconv: \
- configure-libiconv
+ configure-libiconv
@: $(MAKE); $(unstage)
@[ -f ./libiconv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30249,7 +30257,7 @@ maybe-TAGS-libiconv:
maybe-TAGS-libiconv: TAGS-libiconv
TAGS-libiconv: \
- configure-libiconv
+ configure-libiconv
@: $(MAKE); $(unstage)
@[ -f ./libiconv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30305,7 +30313,7 @@ maybe-installcheck-libiconv:
maybe-installcheck-libiconv: installcheck-libiconv
installcheck-libiconv: \
- configure-libiconv
+ configure-libiconv
@: $(MAKE); $(unstage)
@[ -f ./libiconv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30330,7 +30338,7 @@ maybe-mostlyclean-libiconv:
@if libiconv
maybe-mostlyclean-libiconv: mostlyclean-libiconv
-mostlyclean-libiconv:
+mostlyclean-libiconv:
@: $(MAKE); $(unstage)
@[ -f ./libiconv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30355,7 +30363,7 @@ maybe-clean-libiconv:
@if libiconv
maybe-clean-libiconv: clean-libiconv
-clean-libiconv:
+clean-libiconv:
@: $(MAKE); $(unstage)
@[ -f ./libiconv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30380,7 +30388,7 @@ maybe-distclean-libiconv:
@if libiconv
maybe-distclean-libiconv: distclean-libiconv
-distclean-libiconv:
+distclean-libiconv:
@: $(MAKE); $(unstage)
@[ -f ./libiconv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30405,7 +30413,7 @@ maybe-maintainer-clean-libiconv:
@if libiconv
maybe-maintainer-clean-libiconv: maintainer-clean-libiconv
-maintainer-clean-libiconv:
+maintainer-clean-libiconv:
@: $(MAKE); $(unstage)
@[ -f ./libiconv/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30434,7 +30442,7 @@ configure-libtool: stage_current
@endif gcc-bootstrap
@if libtool
maybe-configure-libtool: configure-libtool
-configure-libtool:
+configure-libtool:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30519,7 +30527,7 @@ maybe-info-libtool:
maybe-info-libtool: info-libtool
info-libtool: \
- configure-libtool
+ configure-libtool
@: $(MAKE); $(unstage)
@[ -f ./libtool/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30545,7 +30553,7 @@ maybe-dvi-libtool:
maybe-dvi-libtool: dvi-libtool
dvi-libtool: \
- configure-libtool
+ configure-libtool
@: $(MAKE); $(unstage)
@[ -f ./libtool/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30571,7 +30579,7 @@ maybe-pdf-libtool:
maybe-pdf-libtool: pdf-libtool
pdf-libtool: \
- configure-libtool
+ configure-libtool
@: $(MAKE); $(unstage)
@[ -f ./libtool/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30597,7 +30605,7 @@ maybe-html-libtool:
maybe-html-libtool: html-libtool
html-libtool: \
- configure-libtool
+ configure-libtool
@: $(MAKE); $(unstage)
@[ -f ./libtool/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30623,7 +30631,7 @@ maybe-TAGS-libtool:
maybe-TAGS-libtool: TAGS-libtool
TAGS-libtool: \
- configure-libtool
+ configure-libtool
@: $(MAKE); $(unstage)
@[ -f ./libtool/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30650,7 +30658,7 @@ maybe-install-info-libtool: install-info-libtool
install-info-libtool: \
configure-libtool \
- info-libtool
+ info-libtool
@: $(MAKE); $(unstage)
@[ -f ./libtool/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30677,7 +30685,7 @@ maybe-install-pdf-libtool: install-pdf-libtool
install-pdf-libtool: \
configure-libtool \
- pdf-libtool
+ pdf-libtool
@: $(MAKE); $(unstage)
@[ -f ./libtool/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30704,7 +30712,7 @@ maybe-install-html-libtool: install-html-libtool
install-html-libtool: \
configure-libtool \
- html-libtool
+ html-libtool
@: $(MAKE); $(unstage)
@[ -f ./libtool/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30730,7 +30738,7 @@ maybe-installcheck-libtool:
maybe-installcheck-libtool: installcheck-libtool
installcheck-libtool: \
- configure-libtool
+ configure-libtool
@: $(MAKE); $(unstage)
@[ -f ./libtool/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30755,7 +30763,7 @@ maybe-mostlyclean-libtool:
@if libtool
maybe-mostlyclean-libtool: mostlyclean-libtool
-mostlyclean-libtool:
+mostlyclean-libtool:
@: $(MAKE); $(unstage)
@[ -f ./libtool/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30780,7 +30788,7 @@ maybe-clean-libtool:
@if libtool
maybe-clean-libtool: clean-libtool
-clean-libtool:
+clean-libtool:
@: $(MAKE); $(unstage)
@[ -f ./libtool/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30805,7 +30813,7 @@ maybe-distclean-libtool:
@if libtool
maybe-distclean-libtool: distclean-libtool
-distclean-libtool:
+distclean-libtool:
@: $(MAKE); $(unstage)
@[ -f ./libtool/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30830,7 +30838,7 @@ maybe-maintainer-clean-libtool:
@if libtool
maybe-maintainer-clean-libtool: maintainer-clean-libtool
-maintainer-clean-libtool:
+maintainer-clean-libtool:
@: $(MAKE); $(unstage)
@[ -f ./libtool/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30859,7 +30867,7 @@ configure-m4: stage_current
@endif gcc-bootstrap
@if m4
maybe-configure-m4: configure-m4
-configure-m4:
+configure-m4:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30944,7 +30952,7 @@ maybe-info-m4:
maybe-info-m4: info-m4
info-m4: \
- configure-m4
+ configure-m4
@: $(MAKE); $(unstage)
@[ -f ./m4/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30970,7 +30978,7 @@ maybe-dvi-m4:
maybe-dvi-m4: dvi-m4
dvi-m4: \
- configure-m4
+ configure-m4
@: $(MAKE); $(unstage)
@[ -f ./m4/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -30996,7 +31004,7 @@ maybe-pdf-m4:
maybe-pdf-m4: pdf-m4
pdf-m4: \
- configure-m4
+ configure-m4
@: $(MAKE); $(unstage)
@[ -f ./m4/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31022,7 +31030,7 @@ maybe-html-m4:
maybe-html-m4: html-m4
html-m4: \
- configure-m4
+ configure-m4
@: $(MAKE); $(unstage)
@[ -f ./m4/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31048,7 +31056,7 @@ maybe-TAGS-m4:
maybe-TAGS-m4: TAGS-m4
TAGS-m4: \
- configure-m4
+ configure-m4
@: $(MAKE); $(unstage)
@[ -f ./m4/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31075,7 +31083,7 @@ maybe-install-info-m4: install-info-m4
install-info-m4: \
configure-m4 \
- info-m4
+ info-m4
@: $(MAKE); $(unstage)
@[ -f ./m4/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31102,7 +31110,7 @@ maybe-install-pdf-m4: install-pdf-m4
install-pdf-m4: \
configure-m4 \
- pdf-m4
+ pdf-m4
@: $(MAKE); $(unstage)
@[ -f ./m4/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31129,7 +31137,7 @@ maybe-install-html-m4: install-html-m4
install-html-m4: \
configure-m4 \
- html-m4
+ html-m4
@: $(MAKE); $(unstage)
@[ -f ./m4/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31155,7 +31163,7 @@ maybe-installcheck-m4:
maybe-installcheck-m4: installcheck-m4
installcheck-m4: \
- configure-m4
+ configure-m4
@: $(MAKE); $(unstage)
@[ -f ./m4/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31180,7 +31188,7 @@ maybe-mostlyclean-m4:
@if m4
maybe-mostlyclean-m4: mostlyclean-m4
-mostlyclean-m4:
+mostlyclean-m4:
@: $(MAKE); $(unstage)
@[ -f ./m4/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31205,7 +31213,7 @@ maybe-clean-m4:
@if m4
maybe-clean-m4: clean-m4
-clean-m4:
+clean-m4:
@: $(MAKE); $(unstage)
@[ -f ./m4/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31230,7 +31238,7 @@ maybe-distclean-m4:
@if m4
maybe-distclean-m4: distclean-m4
-distclean-m4:
+distclean-m4:
@: $(MAKE); $(unstage)
@[ -f ./m4/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31255,7 +31263,7 @@ maybe-maintainer-clean-m4:
@if m4
maybe-maintainer-clean-m4: maintainer-clean-m4
-maintainer-clean-m4:
+maintainer-clean-m4:
@: $(MAKE); $(unstage)
@[ -f ./m4/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31284,7 +31292,7 @@ configure-make: stage_current
@endif gcc-bootstrap
@if make
maybe-configure-make: configure-make
-configure-make:
+configure-make:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -31369,7 +31377,7 @@ maybe-info-make:
maybe-info-make: info-make
info-make: \
- configure-make
+ configure-make
@: $(MAKE); $(unstage)
@[ -f ./make/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31395,7 +31403,7 @@ maybe-dvi-make:
maybe-dvi-make: dvi-make
dvi-make: \
- configure-make
+ configure-make
@: $(MAKE); $(unstage)
@[ -f ./make/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31421,7 +31429,7 @@ maybe-pdf-make:
maybe-pdf-make: pdf-make
pdf-make: \
- configure-make
+ configure-make
@: $(MAKE); $(unstage)
@[ -f ./make/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31447,7 +31455,7 @@ maybe-html-make:
maybe-html-make: html-make
html-make: \
- configure-make
+ configure-make
@: $(MAKE); $(unstage)
@[ -f ./make/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31473,7 +31481,7 @@ maybe-TAGS-make:
maybe-TAGS-make: TAGS-make
TAGS-make: \
- configure-make
+ configure-make
@: $(MAKE); $(unstage)
@[ -f ./make/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31500,7 +31508,7 @@ maybe-install-info-make: install-info-make
install-info-make: \
configure-make \
- info-make
+ info-make
@: $(MAKE); $(unstage)
@[ -f ./make/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31527,7 +31535,7 @@ maybe-install-pdf-make: install-pdf-make
install-pdf-make: \
configure-make \
- pdf-make
+ pdf-make
@: $(MAKE); $(unstage)
@[ -f ./make/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31554,7 +31562,7 @@ maybe-install-html-make: install-html-make
install-html-make: \
configure-make \
- html-make
+ html-make
@: $(MAKE); $(unstage)
@[ -f ./make/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31580,7 +31588,7 @@ maybe-installcheck-make:
maybe-installcheck-make: installcheck-make
installcheck-make: \
- configure-make
+ configure-make
@: $(MAKE); $(unstage)
@[ -f ./make/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31605,7 +31613,7 @@ maybe-mostlyclean-make:
@if make
maybe-mostlyclean-make: mostlyclean-make
-mostlyclean-make:
+mostlyclean-make:
@: $(MAKE); $(unstage)
@[ -f ./make/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31630,7 +31638,7 @@ maybe-clean-make:
@if make
maybe-clean-make: clean-make
-clean-make:
+clean-make:
@: $(MAKE); $(unstage)
@[ -f ./make/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31655,7 +31663,7 @@ maybe-distclean-make:
@if make
maybe-distclean-make: distclean-make
-distclean-make:
+distclean-make:
@: $(MAKE); $(unstage)
@[ -f ./make/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31680,7 +31688,7 @@ maybe-maintainer-clean-make:
@if make
maybe-maintainer-clean-make: maintainer-clean-make
-maintainer-clean-make:
+maintainer-clean-make:
@: $(MAKE); $(unstage)
@[ -f ./make/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31709,7 +31717,7 @@ configure-mmalloc: stage_current
@endif gcc-bootstrap
@if mmalloc
maybe-configure-mmalloc: configure-mmalloc
-configure-mmalloc:
+configure-mmalloc:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -31788,7 +31796,7 @@ maybe-info-mmalloc:
maybe-info-mmalloc: info-mmalloc
info-mmalloc: \
- configure-mmalloc
+ configure-mmalloc
@: $(MAKE); $(unstage)
@[ -f ./mmalloc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31814,7 +31822,7 @@ maybe-dvi-mmalloc:
maybe-dvi-mmalloc: dvi-mmalloc
dvi-mmalloc: \
- configure-mmalloc
+ configure-mmalloc
@: $(MAKE); $(unstage)
@[ -f ./mmalloc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31840,7 +31848,7 @@ maybe-pdf-mmalloc:
maybe-pdf-mmalloc: pdf-mmalloc
pdf-mmalloc: \
- configure-mmalloc
+ configure-mmalloc
@: $(MAKE); $(unstage)
@[ -f ./mmalloc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31866,7 +31874,7 @@ maybe-html-mmalloc:
maybe-html-mmalloc: html-mmalloc
html-mmalloc: \
- configure-mmalloc
+ configure-mmalloc
@: $(MAKE); $(unstage)
@[ -f ./mmalloc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31892,7 +31900,7 @@ maybe-TAGS-mmalloc:
maybe-TAGS-mmalloc: TAGS-mmalloc
TAGS-mmalloc: \
- configure-mmalloc
+ configure-mmalloc
@: $(MAKE); $(unstage)
@[ -f ./mmalloc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31919,7 +31927,7 @@ maybe-install-info-mmalloc: install-info-mmalloc
install-info-mmalloc: \
configure-mmalloc \
- info-mmalloc
+ info-mmalloc
@: $(MAKE); $(unstage)
@[ -f ./mmalloc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31946,7 +31954,7 @@ maybe-install-pdf-mmalloc: install-pdf-mmalloc
install-pdf-mmalloc: \
configure-mmalloc \
- pdf-mmalloc
+ pdf-mmalloc
@: $(MAKE); $(unstage)
@[ -f ./mmalloc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31973,7 +31981,7 @@ maybe-install-html-mmalloc: install-html-mmalloc
install-html-mmalloc: \
configure-mmalloc \
- html-mmalloc
+ html-mmalloc
@: $(MAKE); $(unstage)
@[ -f ./mmalloc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -31999,7 +32007,7 @@ maybe-installcheck-mmalloc:
maybe-installcheck-mmalloc: installcheck-mmalloc
installcheck-mmalloc: \
- configure-mmalloc
+ configure-mmalloc
@: $(MAKE); $(unstage)
@[ -f ./mmalloc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32024,7 +32032,7 @@ maybe-mostlyclean-mmalloc:
@if mmalloc
maybe-mostlyclean-mmalloc: mostlyclean-mmalloc
-mostlyclean-mmalloc:
+mostlyclean-mmalloc:
@: $(MAKE); $(unstage)
@[ -f ./mmalloc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32049,7 +32057,7 @@ maybe-clean-mmalloc:
@if mmalloc
maybe-clean-mmalloc: clean-mmalloc
-clean-mmalloc:
+clean-mmalloc:
@: $(MAKE); $(unstage)
@[ -f ./mmalloc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32074,7 +32082,7 @@ maybe-distclean-mmalloc:
@if mmalloc
maybe-distclean-mmalloc: distclean-mmalloc
-distclean-mmalloc:
+distclean-mmalloc:
@: $(MAKE); $(unstage)
@[ -f ./mmalloc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32099,7 +32107,7 @@ maybe-maintainer-clean-mmalloc:
@if mmalloc
maybe-maintainer-clean-mmalloc: maintainer-clean-mmalloc
-maintainer-clean-mmalloc:
+maintainer-clean-mmalloc:
@: $(MAKE); $(unstage)
@[ -f ./mmalloc/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32128,7 +32136,7 @@ configure-patch: stage_current
@endif gcc-bootstrap
@if patch
maybe-configure-patch: configure-patch
-configure-patch:
+configure-patch:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -32213,7 +32221,7 @@ maybe-info-patch:
maybe-info-patch: info-patch
info-patch: \
- configure-patch
+ configure-patch
@: $(MAKE); $(unstage)
@[ -f ./patch/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32239,7 +32247,7 @@ maybe-dvi-patch:
maybe-dvi-patch: dvi-patch
dvi-patch: \
- configure-patch
+ configure-patch
@: $(MAKE); $(unstage)
@[ -f ./patch/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32265,7 +32273,7 @@ maybe-pdf-patch:
maybe-pdf-patch: pdf-patch
pdf-patch: \
- configure-patch
+ configure-patch
@: $(MAKE); $(unstage)
@[ -f ./patch/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32291,7 +32299,7 @@ maybe-html-patch:
maybe-html-patch: html-patch
html-patch: \
- configure-patch
+ configure-patch
@: $(MAKE); $(unstage)
@[ -f ./patch/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32317,7 +32325,7 @@ maybe-TAGS-patch:
maybe-TAGS-patch: TAGS-patch
TAGS-patch: \
- configure-patch
+ configure-patch
@: $(MAKE); $(unstage)
@[ -f ./patch/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32344,7 +32352,7 @@ maybe-install-info-patch: install-info-patch
install-info-patch: \
configure-patch \
- info-patch
+ info-patch
@: $(MAKE); $(unstage)
@[ -f ./patch/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32371,7 +32379,7 @@ maybe-install-pdf-patch: install-pdf-patch
install-pdf-patch: \
configure-patch \
- pdf-patch
+ pdf-patch
@: $(MAKE); $(unstage)
@[ -f ./patch/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32398,7 +32406,7 @@ maybe-install-html-patch: install-html-patch
install-html-patch: \
configure-patch \
- html-patch
+ html-patch
@: $(MAKE); $(unstage)
@[ -f ./patch/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32424,7 +32432,7 @@ maybe-installcheck-patch:
maybe-installcheck-patch: installcheck-patch
installcheck-patch: \
- configure-patch
+ configure-patch
@: $(MAKE); $(unstage)
@[ -f ./patch/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32449,7 +32457,7 @@ maybe-mostlyclean-patch:
@if patch
maybe-mostlyclean-patch: mostlyclean-patch
-mostlyclean-patch:
+mostlyclean-patch:
@: $(MAKE); $(unstage)
@[ -f ./patch/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32474,7 +32482,7 @@ maybe-clean-patch:
@if patch
maybe-clean-patch: clean-patch
-clean-patch:
+clean-patch:
@: $(MAKE); $(unstage)
@[ -f ./patch/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32499,7 +32507,7 @@ maybe-distclean-patch:
@if patch
maybe-distclean-patch: distclean-patch
-distclean-patch:
+distclean-patch:
@: $(MAKE); $(unstage)
@[ -f ./patch/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32524,7 +32532,7 @@ maybe-maintainer-clean-patch:
@if patch
maybe-maintainer-clean-patch: maintainer-clean-patch
-maintainer-clean-patch:
+maintainer-clean-patch:
@: $(MAKE); $(unstage)
@[ -f ./patch/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32553,7 +32561,7 @@ configure-perl: stage_current
@endif gcc-bootstrap
@if perl
maybe-configure-perl: configure-perl
-configure-perl:
+configure-perl:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -32638,7 +32646,7 @@ maybe-info-perl:
maybe-info-perl: info-perl
info-perl: \
- configure-perl
+ configure-perl
@: $(MAKE); $(unstage)
@[ -f ./perl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32664,7 +32672,7 @@ maybe-dvi-perl:
maybe-dvi-perl: dvi-perl
dvi-perl: \
- configure-perl
+ configure-perl
@: $(MAKE); $(unstage)
@[ -f ./perl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32690,7 +32698,7 @@ maybe-pdf-perl:
maybe-pdf-perl: pdf-perl
pdf-perl: \
- configure-perl
+ configure-perl
@: $(MAKE); $(unstage)
@[ -f ./perl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32716,7 +32724,7 @@ maybe-html-perl:
maybe-html-perl: html-perl
html-perl: \
- configure-perl
+ configure-perl
@: $(MAKE); $(unstage)
@[ -f ./perl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32742,7 +32750,7 @@ maybe-TAGS-perl:
maybe-TAGS-perl: TAGS-perl
TAGS-perl: \
- configure-perl
+ configure-perl
@: $(MAKE); $(unstage)
@[ -f ./perl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32769,7 +32777,7 @@ maybe-install-info-perl: install-info-perl
install-info-perl: \
configure-perl \
- info-perl
+ info-perl
@: $(MAKE); $(unstage)
@[ -f ./perl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32796,7 +32804,7 @@ maybe-install-pdf-perl: install-pdf-perl
install-pdf-perl: \
configure-perl \
- pdf-perl
+ pdf-perl
@: $(MAKE); $(unstage)
@[ -f ./perl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32823,7 +32831,7 @@ maybe-install-html-perl: install-html-perl
install-html-perl: \
configure-perl \
- html-perl
+ html-perl
@: $(MAKE); $(unstage)
@[ -f ./perl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32849,7 +32857,7 @@ maybe-installcheck-perl:
maybe-installcheck-perl: installcheck-perl
installcheck-perl: \
- configure-perl
+ configure-perl
@: $(MAKE); $(unstage)
@[ -f ./perl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32874,7 +32882,7 @@ maybe-mostlyclean-perl:
@if perl
maybe-mostlyclean-perl: mostlyclean-perl
-mostlyclean-perl:
+mostlyclean-perl:
@: $(MAKE); $(unstage)
@[ -f ./perl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32899,7 +32907,7 @@ maybe-clean-perl:
@if perl
maybe-clean-perl: clean-perl
-clean-perl:
+clean-perl:
@: $(MAKE); $(unstage)
@[ -f ./perl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32924,7 +32932,7 @@ maybe-distclean-perl:
@if perl
maybe-distclean-perl: distclean-perl
-distclean-perl:
+distclean-perl:
@: $(MAKE); $(unstage)
@[ -f ./perl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32949,7 +32957,7 @@ maybe-maintainer-clean-perl:
@if perl
maybe-maintainer-clean-perl: maintainer-clean-perl
-maintainer-clean-perl:
+maintainer-clean-perl:
@: $(MAKE); $(unstage)
@[ -f ./perl/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -32978,7 +32986,7 @@ configure-prms: stage_current
@endif gcc-bootstrap
@if prms
maybe-configure-prms: configure-prms
-configure-prms:
+configure-prms:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -33063,7 +33071,7 @@ maybe-info-prms:
maybe-info-prms: info-prms
info-prms: \
- configure-prms
+ configure-prms
@: $(MAKE); $(unstage)
@[ -f ./prms/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33089,7 +33097,7 @@ maybe-dvi-prms:
maybe-dvi-prms: dvi-prms
dvi-prms: \
- configure-prms
+ configure-prms
@: $(MAKE); $(unstage)
@[ -f ./prms/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33115,7 +33123,7 @@ maybe-pdf-prms:
maybe-pdf-prms: pdf-prms
pdf-prms: \
- configure-prms
+ configure-prms
@: $(MAKE); $(unstage)
@[ -f ./prms/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33141,7 +33149,7 @@ maybe-html-prms:
maybe-html-prms: html-prms
html-prms: \
- configure-prms
+ configure-prms
@: $(MAKE); $(unstage)
@[ -f ./prms/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33167,7 +33175,7 @@ maybe-TAGS-prms:
maybe-TAGS-prms: TAGS-prms
TAGS-prms: \
- configure-prms
+ configure-prms
@: $(MAKE); $(unstage)
@[ -f ./prms/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33194,7 +33202,7 @@ maybe-install-info-prms: install-info-prms
install-info-prms: \
configure-prms \
- info-prms
+ info-prms
@: $(MAKE); $(unstage)
@[ -f ./prms/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33221,7 +33229,7 @@ maybe-install-pdf-prms: install-pdf-prms
install-pdf-prms: \
configure-prms \
- pdf-prms
+ pdf-prms
@: $(MAKE); $(unstage)
@[ -f ./prms/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33248,7 +33256,7 @@ maybe-install-html-prms: install-html-prms
install-html-prms: \
configure-prms \
- html-prms
+ html-prms
@: $(MAKE); $(unstage)
@[ -f ./prms/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33274,7 +33282,7 @@ maybe-installcheck-prms:
maybe-installcheck-prms: installcheck-prms
installcheck-prms: \
- configure-prms
+ configure-prms
@: $(MAKE); $(unstage)
@[ -f ./prms/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33299,7 +33307,7 @@ maybe-mostlyclean-prms:
@if prms
maybe-mostlyclean-prms: mostlyclean-prms
-mostlyclean-prms:
+mostlyclean-prms:
@: $(MAKE); $(unstage)
@[ -f ./prms/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33324,7 +33332,7 @@ maybe-clean-prms:
@if prms
maybe-clean-prms: clean-prms
-clean-prms:
+clean-prms:
@: $(MAKE); $(unstage)
@[ -f ./prms/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33349,7 +33357,7 @@ maybe-distclean-prms:
@if prms
maybe-distclean-prms: distclean-prms
-distclean-prms:
+distclean-prms:
@: $(MAKE); $(unstage)
@[ -f ./prms/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33374,7 +33382,7 @@ maybe-maintainer-clean-prms:
@if prms
maybe-maintainer-clean-prms: maintainer-clean-prms
-maintainer-clean-prms:
+maintainer-clean-prms:
@: $(MAKE); $(unstage)
@[ -f ./prms/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33403,7 +33411,7 @@ configure-rcs: stage_current
@endif gcc-bootstrap
@if rcs
maybe-configure-rcs: configure-rcs
-configure-rcs:
+configure-rcs:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -33488,7 +33496,7 @@ maybe-info-rcs:
maybe-info-rcs: info-rcs
info-rcs: \
- configure-rcs
+ configure-rcs
@: $(MAKE); $(unstage)
@[ -f ./rcs/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33514,7 +33522,7 @@ maybe-dvi-rcs:
maybe-dvi-rcs: dvi-rcs
dvi-rcs: \
- configure-rcs
+ configure-rcs
@: $(MAKE); $(unstage)
@[ -f ./rcs/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33540,7 +33548,7 @@ maybe-pdf-rcs:
maybe-pdf-rcs: pdf-rcs
pdf-rcs: \
- configure-rcs
+ configure-rcs
@: $(MAKE); $(unstage)
@[ -f ./rcs/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33566,7 +33574,7 @@ maybe-html-rcs:
maybe-html-rcs: html-rcs
html-rcs: \
- configure-rcs
+ configure-rcs
@: $(MAKE); $(unstage)
@[ -f ./rcs/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33592,7 +33600,7 @@ maybe-TAGS-rcs:
maybe-TAGS-rcs: TAGS-rcs
TAGS-rcs: \
- configure-rcs
+ configure-rcs
@: $(MAKE); $(unstage)
@[ -f ./rcs/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33619,7 +33627,7 @@ maybe-install-info-rcs: install-info-rcs
install-info-rcs: \
configure-rcs \
- info-rcs
+ info-rcs
@: $(MAKE); $(unstage)
@[ -f ./rcs/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33646,7 +33654,7 @@ maybe-install-pdf-rcs: install-pdf-rcs
install-pdf-rcs: \
configure-rcs \
- pdf-rcs
+ pdf-rcs
@: $(MAKE); $(unstage)
@[ -f ./rcs/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33673,7 +33681,7 @@ maybe-install-html-rcs: install-html-rcs
install-html-rcs: \
configure-rcs \
- html-rcs
+ html-rcs
@: $(MAKE); $(unstage)
@[ -f ./rcs/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33699,7 +33707,7 @@ maybe-installcheck-rcs:
maybe-installcheck-rcs: installcheck-rcs
installcheck-rcs: \
- configure-rcs
+ configure-rcs
@: $(MAKE); $(unstage)
@[ -f ./rcs/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33724,7 +33732,7 @@ maybe-mostlyclean-rcs:
@if rcs
maybe-mostlyclean-rcs: mostlyclean-rcs
-mostlyclean-rcs:
+mostlyclean-rcs:
@: $(MAKE); $(unstage)
@[ -f ./rcs/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33749,7 +33757,7 @@ maybe-clean-rcs:
@if rcs
maybe-clean-rcs: clean-rcs
-clean-rcs:
+clean-rcs:
@: $(MAKE); $(unstage)
@[ -f ./rcs/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33774,7 +33782,7 @@ maybe-distclean-rcs:
@if rcs
maybe-distclean-rcs: distclean-rcs
-distclean-rcs:
+distclean-rcs:
@: $(MAKE); $(unstage)
@[ -f ./rcs/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33799,7 +33807,7 @@ maybe-maintainer-clean-rcs:
@if rcs
maybe-maintainer-clean-rcs: maintainer-clean-rcs
-maintainer-clean-rcs:
+maintainer-clean-rcs:
@: $(MAKE); $(unstage)
@[ -f ./rcs/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33828,7 +33836,7 @@ configure-readline: stage_current
@endif gcc-bootstrap
@if readline
maybe-configure-readline: configure-readline
-configure-readline:
+configure-readline:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -33913,7 +33921,7 @@ maybe-info-readline:
maybe-info-readline: info-readline
info-readline: \
- configure-readline
+ configure-readline
@: $(MAKE); $(unstage)
@[ -f ./readline/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33939,7 +33947,7 @@ maybe-dvi-readline:
maybe-dvi-readline: dvi-readline
dvi-readline: \
- configure-readline
+ configure-readline
@: $(MAKE); $(unstage)
@[ -f ./readline/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33965,7 +33973,7 @@ maybe-pdf-readline:
maybe-pdf-readline: pdf-readline
pdf-readline: \
- configure-readline
+ configure-readline
@: $(MAKE); $(unstage)
@[ -f ./readline/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -33991,7 +33999,7 @@ maybe-html-readline:
maybe-html-readline: html-readline
html-readline: \
- configure-readline
+ configure-readline
@: $(MAKE); $(unstage)
@[ -f ./readline/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34017,7 +34025,7 @@ maybe-TAGS-readline:
maybe-TAGS-readline: TAGS-readline
TAGS-readline: \
- configure-readline
+ configure-readline
@: $(MAKE); $(unstage)
@[ -f ./readline/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34044,7 +34052,7 @@ maybe-install-info-readline: install-info-readline
install-info-readline: \
configure-readline \
- info-readline
+ info-readline
@: $(MAKE); $(unstage)
@[ -f ./readline/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34071,7 +34079,7 @@ maybe-install-pdf-readline: install-pdf-readline
install-pdf-readline: \
configure-readline \
- pdf-readline
+ pdf-readline
@: $(MAKE); $(unstage)
@[ -f ./readline/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34098,7 +34106,7 @@ maybe-install-html-readline: install-html-readline
install-html-readline: \
configure-readline \
- html-readline
+ html-readline
@: $(MAKE); $(unstage)
@[ -f ./readline/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34124,7 +34132,7 @@ maybe-installcheck-readline:
maybe-installcheck-readline: installcheck-readline
installcheck-readline: \
- configure-readline
+ configure-readline
@: $(MAKE); $(unstage)
@[ -f ./readline/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34149,7 +34157,7 @@ maybe-mostlyclean-readline:
@if readline
maybe-mostlyclean-readline: mostlyclean-readline
-mostlyclean-readline:
+mostlyclean-readline:
@: $(MAKE); $(unstage)
@[ -f ./readline/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34174,7 +34182,7 @@ maybe-clean-readline:
@if readline
maybe-clean-readline: clean-readline
-clean-readline:
+clean-readline:
@: $(MAKE); $(unstage)
@[ -f ./readline/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34199,7 +34207,7 @@ maybe-distclean-readline:
@if readline
maybe-distclean-readline: distclean-readline
-distclean-readline:
+distclean-readline:
@: $(MAKE); $(unstage)
@[ -f ./readline/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34224,7 +34232,7 @@ maybe-maintainer-clean-readline:
@if readline
maybe-maintainer-clean-readline: maintainer-clean-readline
-maintainer-clean-readline:
+maintainer-clean-readline:
@: $(MAKE); $(unstage)
@[ -f ./readline/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34253,7 +34261,7 @@ configure-release: stage_current
@endif gcc-bootstrap
@if release
maybe-configure-release: configure-release
-configure-release:
+configure-release:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -34326,7 +34334,7 @@ maybe-info-release:
maybe-info-release: info-release
info-release: \
- configure-release
+ configure-release
@: $(MAKE); $(unstage)
@[ -f ./release/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34352,7 +34360,7 @@ maybe-dvi-release:
maybe-dvi-release: dvi-release
dvi-release: \
- configure-release
+ configure-release
@: $(MAKE); $(unstage)
@[ -f ./release/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34378,7 +34386,7 @@ maybe-pdf-release:
maybe-pdf-release: pdf-release
pdf-release: \
- configure-release
+ configure-release
@: $(MAKE); $(unstage)
@[ -f ./release/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34404,7 +34412,7 @@ maybe-html-release:
maybe-html-release: html-release
html-release: \
- configure-release
+ configure-release
@: $(MAKE); $(unstage)
@[ -f ./release/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34430,7 +34438,7 @@ maybe-TAGS-release:
maybe-TAGS-release: TAGS-release
TAGS-release: \
- configure-release
+ configure-release
@: $(MAKE); $(unstage)
@[ -f ./release/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34457,7 +34465,7 @@ maybe-install-info-release: install-info-release
install-info-release: \
configure-release \
- info-release
+ info-release
@: $(MAKE); $(unstage)
@[ -f ./release/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34484,7 +34492,7 @@ maybe-install-pdf-release: install-pdf-release
install-pdf-release: \
configure-release \
- pdf-release
+ pdf-release
@: $(MAKE); $(unstage)
@[ -f ./release/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34511,7 +34519,7 @@ maybe-install-html-release: install-html-release
install-html-release: \
configure-release \
- html-release
+ html-release
@: $(MAKE); $(unstage)
@[ -f ./release/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34537,7 +34545,7 @@ maybe-installcheck-release:
maybe-installcheck-release: installcheck-release
installcheck-release: \
- configure-release
+ configure-release
@: $(MAKE); $(unstage)
@[ -f ./release/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34562,7 +34570,7 @@ maybe-mostlyclean-release:
@if release
maybe-mostlyclean-release: mostlyclean-release
-mostlyclean-release:
+mostlyclean-release:
@: $(MAKE); $(unstage)
@[ -f ./release/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34587,7 +34595,7 @@ maybe-clean-release:
@if release
maybe-clean-release: clean-release
-clean-release:
+clean-release:
@: $(MAKE); $(unstage)
@[ -f ./release/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34612,7 +34620,7 @@ maybe-distclean-release:
@if release
maybe-distclean-release: distclean-release
-distclean-release:
+distclean-release:
@: $(MAKE); $(unstage)
@[ -f ./release/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34637,7 +34645,7 @@ maybe-maintainer-clean-release:
@if release
maybe-maintainer-clean-release: maintainer-clean-release
-maintainer-clean-release:
+maintainer-clean-release:
@: $(MAKE); $(unstage)
@[ -f ./release/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34666,7 +34674,7 @@ configure-recode: stage_current
@endif gcc-bootstrap
@if recode
maybe-configure-recode: configure-recode
-configure-recode:
+configure-recode:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -34751,7 +34759,7 @@ maybe-info-recode:
maybe-info-recode: info-recode
info-recode: \
- configure-recode
+ configure-recode
@: $(MAKE); $(unstage)
@[ -f ./recode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34777,7 +34785,7 @@ maybe-dvi-recode:
maybe-dvi-recode: dvi-recode
dvi-recode: \
- configure-recode
+ configure-recode
@: $(MAKE); $(unstage)
@[ -f ./recode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34803,7 +34811,7 @@ maybe-pdf-recode:
maybe-pdf-recode: pdf-recode
pdf-recode: \
- configure-recode
+ configure-recode
@: $(MAKE); $(unstage)
@[ -f ./recode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34829,7 +34837,7 @@ maybe-html-recode:
maybe-html-recode: html-recode
html-recode: \
- configure-recode
+ configure-recode
@: $(MAKE); $(unstage)
@[ -f ./recode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34855,7 +34863,7 @@ maybe-TAGS-recode:
maybe-TAGS-recode: TAGS-recode
TAGS-recode: \
- configure-recode
+ configure-recode
@: $(MAKE); $(unstage)
@[ -f ./recode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34882,7 +34890,7 @@ maybe-install-info-recode: install-info-recode
install-info-recode: \
configure-recode \
- info-recode
+ info-recode
@: $(MAKE); $(unstage)
@[ -f ./recode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34909,7 +34917,7 @@ maybe-install-pdf-recode: install-pdf-recode
install-pdf-recode: \
configure-recode \
- pdf-recode
+ pdf-recode
@: $(MAKE); $(unstage)
@[ -f ./recode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34936,7 +34944,7 @@ maybe-install-html-recode: install-html-recode
install-html-recode: \
configure-recode \
- html-recode
+ html-recode
@: $(MAKE); $(unstage)
@[ -f ./recode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34962,7 +34970,7 @@ maybe-installcheck-recode:
maybe-installcheck-recode: installcheck-recode
installcheck-recode: \
- configure-recode
+ configure-recode
@: $(MAKE); $(unstage)
@[ -f ./recode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -34987,7 +34995,7 @@ maybe-mostlyclean-recode:
@if recode
maybe-mostlyclean-recode: mostlyclean-recode
-mostlyclean-recode:
+mostlyclean-recode:
@: $(MAKE); $(unstage)
@[ -f ./recode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35012,7 +35020,7 @@ maybe-clean-recode:
@if recode
maybe-clean-recode: clean-recode
-clean-recode:
+clean-recode:
@: $(MAKE); $(unstage)
@[ -f ./recode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35037,7 +35045,7 @@ maybe-distclean-recode:
@if recode
maybe-distclean-recode: distclean-recode
-distclean-recode:
+distclean-recode:
@: $(MAKE); $(unstage)
@[ -f ./recode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35062,7 +35070,7 @@ maybe-maintainer-clean-recode:
@if recode
maybe-maintainer-clean-recode: maintainer-clean-recode
-maintainer-clean-recode:
+maintainer-clean-recode:
@: $(MAKE); $(unstage)
@[ -f ./recode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35091,7 +35099,7 @@ configure-sed: stage_current
@endif gcc-bootstrap
@if sed
maybe-configure-sed: configure-sed
-configure-sed:
+configure-sed:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -35176,7 +35184,7 @@ maybe-info-sed:
maybe-info-sed: info-sed
info-sed: \
- configure-sed
+ configure-sed
@: $(MAKE); $(unstage)
@[ -f ./sed/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35202,7 +35210,7 @@ maybe-dvi-sed:
maybe-dvi-sed: dvi-sed
dvi-sed: \
- configure-sed
+ configure-sed
@: $(MAKE); $(unstage)
@[ -f ./sed/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35228,7 +35236,7 @@ maybe-pdf-sed:
maybe-pdf-sed: pdf-sed
pdf-sed: \
- configure-sed
+ configure-sed
@: $(MAKE); $(unstage)
@[ -f ./sed/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35254,7 +35262,7 @@ maybe-html-sed:
maybe-html-sed: html-sed
html-sed: \
- configure-sed
+ configure-sed
@: $(MAKE); $(unstage)
@[ -f ./sed/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35280,7 +35288,7 @@ maybe-TAGS-sed:
maybe-TAGS-sed: TAGS-sed
TAGS-sed: \
- configure-sed
+ configure-sed
@: $(MAKE); $(unstage)
@[ -f ./sed/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35307,7 +35315,7 @@ maybe-install-info-sed: install-info-sed
install-info-sed: \
configure-sed \
- info-sed
+ info-sed
@: $(MAKE); $(unstage)
@[ -f ./sed/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35334,7 +35342,7 @@ maybe-install-pdf-sed: install-pdf-sed
install-pdf-sed: \
configure-sed \
- pdf-sed
+ pdf-sed
@: $(MAKE); $(unstage)
@[ -f ./sed/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35361,7 +35369,7 @@ maybe-install-html-sed: install-html-sed
install-html-sed: \
configure-sed \
- html-sed
+ html-sed
@: $(MAKE); $(unstage)
@[ -f ./sed/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35387,7 +35395,7 @@ maybe-installcheck-sed:
maybe-installcheck-sed: installcheck-sed
installcheck-sed: \
- configure-sed
+ configure-sed
@: $(MAKE); $(unstage)
@[ -f ./sed/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35412,7 +35420,7 @@ maybe-mostlyclean-sed:
@if sed
maybe-mostlyclean-sed: mostlyclean-sed
-mostlyclean-sed:
+mostlyclean-sed:
@: $(MAKE); $(unstage)
@[ -f ./sed/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35437,7 +35445,7 @@ maybe-clean-sed:
@if sed
maybe-clean-sed: clean-sed
-clean-sed:
+clean-sed:
@: $(MAKE); $(unstage)
@[ -f ./sed/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35462,7 +35470,7 @@ maybe-distclean-sed:
@if sed
maybe-distclean-sed: distclean-sed
-distclean-sed:
+distclean-sed:
@: $(MAKE); $(unstage)
@[ -f ./sed/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35487,7 +35495,7 @@ maybe-maintainer-clean-sed:
@if sed
maybe-maintainer-clean-sed: maintainer-clean-sed
-maintainer-clean-sed:
+maintainer-clean-sed:
@: $(MAKE); $(unstage)
@[ -f ./sed/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35516,7 +35524,7 @@ configure-send-pr: stage_current
@endif gcc-bootstrap
@if send-pr
maybe-configure-send-pr: configure-send-pr
-configure-send-pr:
+configure-send-pr:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -35601,7 +35609,7 @@ maybe-info-send-pr:
maybe-info-send-pr: info-send-pr
info-send-pr: \
- configure-send-pr
+ configure-send-pr
@: $(MAKE); $(unstage)
@[ -f ./send-pr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35627,7 +35635,7 @@ maybe-dvi-send-pr:
maybe-dvi-send-pr: dvi-send-pr
dvi-send-pr: \
- configure-send-pr
+ configure-send-pr
@: $(MAKE); $(unstage)
@[ -f ./send-pr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35653,7 +35661,7 @@ maybe-pdf-send-pr:
maybe-pdf-send-pr: pdf-send-pr
pdf-send-pr: \
- configure-send-pr
+ configure-send-pr
@: $(MAKE); $(unstage)
@[ -f ./send-pr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35679,7 +35687,7 @@ maybe-html-send-pr:
maybe-html-send-pr: html-send-pr
html-send-pr: \
- configure-send-pr
+ configure-send-pr
@: $(MAKE); $(unstage)
@[ -f ./send-pr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35705,7 +35713,7 @@ maybe-TAGS-send-pr:
maybe-TAGS-send-pr: TAGS-send-pr
TAGS-send-pr: \
- configure-send-pr
+ configure-send-pr
@: $(MAKE); $(unstage)
@[ -f ./send-pr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35732,7 +35740,7 @@ maybe-install-info-send-pr: install-info-send-pr
install-info-send-pr: \
configure-send-pr \
- info-send-pr
+ info-send-pr
@: $(MAKE); $(unstage)
@[ -f ./send-pr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35759,7 +35767,7 @@ maybe-install-pdf-send-pr: install-pdf-send-pr
install-pdf-send-pr: \
configure-send-pr \
- pdf-send-pr
+ pdf-send-pr
@: $(MAKE); $(unstage)
@[ -f ./send-pr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35786,7 +35794,7 @@ maybe-install-html-send-pr: install-html-send-pr
install-html-send-pr: \
configure-send-pr \
- html-send-pr
+ html-send-pr
@: $(MAKE); $(unstage)
@[ -f ./send-pr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35812,7 +35820,7 @@ maybe-installcheck-send-pr:
maybe-installcheck-send-pr: installcheck-send-pr
installcheck-send-pr: \
- configure-send-pr
+ configure-send-pr
@: $(MAKE); $(unstage)
@[ -f ./send-pr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35837,7 +35845,7 @@ maybe-mostlyclean-send-pr:
@if send-pr
maybe-mostlyclean-send-pr: mostlyclean-send-pr
-mostlyclean-send-pr:
+mostlyclean-send-pr:
@: $(MAKE); $(unstage)
@[ -f ./send-pr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35862,7 +35870,7 @@ maybe-clean-send-pr:
@if send-pr
maybe-clean-send-pr: clean-send-pr
-clean-send-pr:
+clean-send-pr:
@: $(MAKE); $(unstage)
@[ -f ./send-pr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35887,7 +35895,7 @@ maybe-distclean-send-pr:
@if send-pr
maybe-distclean-send-pr: distclean-send-pr
-distclean-send-pr:
+distclean-send-pr:
@: $(MAKE); $(unstage)
@[ -f ./send-pr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35912,7 +35920,7 @@ maybe-maintainer-clean-send-pr:
@if send-pr
maybe-maintainer-clean-send-pr: maintainer-clean-send-pr
-maintainer-clean-send-pr:
+maintainer-clean-send-pr:
@: $(MAKE); $(unstage)
@[ -f ./send-pr/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -35941,7 +35949,7 @@ configure-shellutils: stage_current
@endif gcc-bootstrap
@if shellutils
maybe-configure-shellutils: configure-shellutils
-configure-shellutils:
+configure-shellutils:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -36026,7 +36034,7 @@ maybe-info-shellutils:
maybe-info-shellutils: info-shellutils
info-shellutils: \
- configure-shellutils
+ configure-shellutils
@: $(MAKE); $(unstage)
@[ -f ./shellutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36052,7 +36060,7 @@ maybe-dvi-shellutils:
maybe-dvi-shellutils: dvi-shellutils
dvi-shellutils: \
- configure-shellutils
+ configure-shellutils
@: $(MAKE); $(unstage)
@[ -f ./shellutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36078,7 +36086,7 @@ maybe-pdf-shellutils:
maybe-pdf-shellutils: pdf-shellutils
pdf-shellutils: \
- configure-shellutils
+ configure-shellutils
@: $(MAKE); $(unstage)
@[ -f ./shellutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36104,7 +36112,7 @@ maybe-html-shellutils:
maybe-html-shellutils: html-shellutils
html-shellutils: \
- configure-shellutils
+ configure-shellutils
@: $(MAKE); $(unstage)
@[ -f ./shellutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36130,7 +36138,7 @@ maybe-TAGS-shellutils:
maybe-TAGS-shellutils: TAGS-shellutils
TAGS-shellutils: \
- configure-shellutils
+ configure-shellutils
@: $(MAKE); $(unstage)
@[ -f ./shellutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36157,7 +36165,7 @@ maybe-install-info-shellutils: install-info-shellutils
install-info-shellutils: \
configure-shellutils \
- info-shellutils
+ info-shellutils
@: $(MAKE); $(unstage)
@[ -f ./shellutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36184,7 +36192,7 @@ maybe-install-pdf-shellutils: install-pdf-shellutils
install-pdf-shellutils: \
configure-shellutils \
- pdf-shellutils
+ pdf-shellutils
@: $(MAKE); $(unstage)
@[ -f ./shellutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36211,7 +36219,7 @@ maybe-install-html-shellutils: install-html-shellutils
install-html-shellutils: \
configure-shellutils \
- html-shellutils
+ html-shellutils
@: $(MAKE); $(unstage)
@[ -f ./shellutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36237,7 +36245,7 @@ maybe-installcheck-shellutils:
maybe-installcheck-shellutils: installcheck-shellutils
installcheck-shellutils: \
- configure-shellutils
+ configure-shellutils
@: $(MAKE); $(unstage)
@[ -f ./shellutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36262,7 +36270,7 @@ maybe-mostlyclean-shellutils:
@if shellutils
maybe-mostlyclean-shellutils: mostlyclean-shellutils
-mostlyclean-shellutils:
+mostlyclean-shellutils:
@: $(MAKE); $(unstage)
@[ -f ./shellutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36287,7 +36295,7 @@ maybe-clean-shellutils:
@if shellutils
maybe-clean-shellutils: clean-shellutils
-clean-shellutils:
+clean-shellutils:
@: $(MAKE); $(unstage)
@[ -f ./shellutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36312,7 +36320,7 @@ maybe-distclean-shellutils:
@if shellutils
maybe-distclean-shellutils: distclean-shellutils
-distclean-shellutils:
+distclean-shellutils:
@: $(MAKE); $(unstage)
@[ -f ./shellutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36337,7 +36345,7 @@ maybe-maintainer-clean-shellutils:
@if shellutils
maybe-maintainer-clean-shellutils: maintainer-clean-shellutils
-maintainer-clean-shellutils:
+maintainer-clean-shellutils:
@: $(MAKE); $(unstage)
@[ -f ./shellutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36366,7 +36374,7 @@ configure-sid: stage_current
@endif gcc-bootstrap
@if sid
maybe-configure-sid: configure-sid
-configure-sid:
+configure-sid:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -36451,7 +36459,7 @@ maybe-info-sid:
maybe-info-sid: info-sid
info-sid: \
- configure-sid
+ configure-sid
@: $(MAKE); $(unstage)
@[ -f ./sid/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36477,7 +36485,7 @@ maybe-dvi-sid:
maybe-dvi-sid: dvi-sid
dvi-sid: \
- configure-sid
+ configure-sid
@: $(MAKE); $(unstage)
@[ -f ./sid/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36503,7 +36511,7 @@ maybe-pdf-sid:
maybe-pdf-sid: pdf-sid
pdf-sid: \
- configure-sid
+ configure-sid
@: $(MAKE); $(unstage)
@[ -f ./sid/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36529,7 +36537,7 @@ maybe-html-sid:
maybe-html-sid: html-sid
html-sid: \
- configure-sid
+ configure-sid
@: $(MAKE); $(unstage)
@[ -f ./sid/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36555,7 +36563,7 @@ maybe-TAGS-sid:
maybe-TAGS-sid: TAGS-sid
TAGS-sid: \
- configure-sid
+ configure-sid
@: $(MAKE); $(unstage)
@[ -f ./sid/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36582,7 +36590,7 @@ maybe-install-info-sid: install-info-sid
install-info-sid: \
configure-sid \
- info-sid
+ info-sid
@: $(MAKE); $(unstage)
@[ -f ./sid/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36609,7 +36617,7 @@ maybe-install-pdf-sid: install-pdf-sid
install-pdf-sid: \
configure-sid \
- pdf-sid
+ pdf-sid
@: $(MAKE); $(unstage)
@[ -f ./sid/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36636,7 +36644,7 @@ maybe-install-html-sid: install-html-sid
install-html-sid: \
configure-sid \
- html-sid
+ html-sid
@: $(MAKE); $(unstage)
@[ -f ./sid/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36662,7 +36670,7 @@ maybe-installcheck-sid:
maybe-installcheck-sid: installcheck-sid
installcheck-sid: \
- configure-sid
+ configure-sid
@: $(MAKE); $(unstage)
@[ -f ./sid/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36687,7 +36695,7 @@ maybe-mostlyclean-sid:
@if sid
maybe-mostlyclean-sid: mostlyclean-sid
-mostlyclean-sid:
+mostlyclean-sid:
@: $(MAKE); $(unstage)
@[ -f ./sid/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36712,7 +36720,7 @@ maybe-clean-sid:
@if sid
maybe-clean-sid: clean-sid
-clean-sid:
+clean-sid:
@: $(MAKE); $(unstage)
@[ -f ./sid/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36737,7 +36745,7 @@ maybe-distclean-sid:
@if sid
maybe-distclean-sid: distclean-sid
-distclean-sid:
+distclean-sid:
@: $(MAKE); $(unstage)
@[ -f ./sid/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36762,7 +36770,7 @@ maybe-maintainer-clean-sid:
@if sid
maybe-maintainer-clean-sid: maintainer-clean-sid
-maintainer-clean-sid:
+maintainer-clean-sid:
@: $(MAKE); $(unstage)
@[ -f ./sid/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36791,7 +36799,7 @@ configure-sim: stage_current
@endif gcc-bootstrap
@if sim
maybe-configure-sim: configure-sim
-configure-sim:
+configure-sim:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -36876,7 +36884,7 @@ maybe-info-sim:
maybe-info-sim: info-sim
info-sim: \
- configure-sim
+ configure-sim
@: $(MAKE); $(unstage)
@[ -f ./sim/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36902,7 +36910,7 @@ maybe-dvi-sim:
maybe-dvi-sim: dvi-sim
dvi-sim: \
- configure-sim
+ configure-sim
@: $(MAKE); $(unstage)
@[ -f ./sim/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36928,7 +36936,7 @@ maybe-pdf-sim:
maybe-pdf-sim: pdf-sim
pdf-sim: \
- configure-sim
+ configure-sim
@: $(MAKE); $(unstage)
@[ -f ./sim/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36954,7 +36962,7 @@ maybe-html-sim:
maybe-html-sim: html-sim
html-sim: \
- configure-sim
+ configure-sim
@: $(MAKE); $(unstage)
@[ -f ./sim/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -36980,7 +36988,7 @@ maybe-TAGS-sim:
maybe-TAGS-sim: TAGS-sim
TAGS-sim: \
- configure-sim
+ configure-sim
@: $(MAKE); $(unstage)
@[ -f ./sim/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37007,7 +37015,7 @@ maybe-install-info-sim: install-info-sim
install-info-sim: \
configure-sim \
- info-sim
+ info-sim
@: $(MAKE); $(unstage)
@[ -f ./sim/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37034,7 +37042,7 @@ maybe-install-pdf-sim: install-pdf-sim
install-pdf-sim: \
configure-sim \
- pdf-sim
+ pdf-sim
@: $(MAKE); $(unstage)
@[ -f ./sim/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37061,7 +37069,7 @@ maybe-install-html-sim: install-html-sim
install-html-sim: \
configure-sim \
- html-sim
+ html-sim
@: $(MAKE); $(unstage)
@[ -f ./sim/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37087,7 +37095,7 @@ maybe-installcheck-sim:
maybe-installcheck-sim: installcheck-sim
installcheck-sim: \
- configure-sim
+ configure-sim
@: $(MAKE); $(unstage)
@[ -f ./sim/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37112,7 +37120,7 @@ maybe-mostlyclean-sim:
@if sim
maybe-mostlyclean-sim: mostlyclean-sim
-mostlyclean-sim:
+mostlyclean-sim:
@: $(MAKE); $(unstage)
@[ -f ./sim/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37137,7 +37145,7 @@ maybe-clean-sim:
@if sim
maybe-clean-sim: clean-sim
-clean-sim:
+clean-sim:
@: $(MAKE); $(unstage)
@[ -f ./sim/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37162,7 +37170,7 @@ maybe-distclean-sim:
@if sim
maybe-distclean-sim: distclean-sim
-distclean-sim:
+distclean-sim:
@: $(MAKE); $(unstage)
@[ -f ./sim/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37187,7 +37195,7 @@ maybe-maintainer-clean-sim:
@if sim
maybe-maintainer-clean-sim: maintainer-clean-sim
-maintainer-clean-sim:
+maintainer-clean-sim:
@: $(MAKE); $(unstage)
@[ -f ./sim/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37216,7 +37224,7 @@ configure-tar: stage_current
@endif gcc-bootstrap
@if tar
maybe-configure-tar: configure-tar
-configure-tar:
+configure-tar:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -37301,7 +37309,7 @@ maybe-info-tar:
maybe-info-tar: info-tar
info-tar: \
- configure-tar
+ configure-tar
@: $(MAKE); $(unstage)
@[ -f ./tar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37327,7 +37335,7 @@ maybe-dvi-tar:
maybe-dvi-tar: dvi-tar
dvi-tar: \
- configure-tar
+ configure-tar
@: $(MAKE); $(unstage)
@[ -f ./tar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37353,7 +37361,7 @@ maybe-pdf-tar:
maybe-pdf-tar: pdf-tar
pdf-tar: \
- configure-tar
+ configure-tar
@: $(MAKE); $(unstage)
@[ -f ./tar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37379,7 +37387,7 @@ maybe-html-tar:
maybe-html-tar: html-tar
html-tar: \
- configure-tar
+ configure-tar
@: $(MAKE); $(unstage)
@[ -f ./tar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37405,7 +37413,7 @@ maybe-TAGS-tar:
maybe-TAGS-tar: TAGS-tar
TAGS-tar: \
- configure-tar
+ configure-tar
@: $(MAKE); $(unstage)
@[ -f ./tar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37432,7 +37440,7 @@ maybe-install-info-tar: install-info-tar
install-info-tar: \
configure-tar \
- info-tar
+ info-tar
@: $(MAKE); $(unstage)
@[ -f ./tar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37459,7 +37467,7 @@ maybe-install-pdf-tar: install-pdf-tar
install-pdf-tar: \
configure-tar \
- pdf-tar
+ pdf-tar
@: $(MAKE); $(unstage)
@[ -f ./tar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37486,7 +37494,7 @@ maybe-install-html-tar: install-html-tar
install-html-tar: \
configure-tar \
- html-tar
+ html-tar
@: $(MAKE); $(unstage)
@[ -f ./tar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37512,7 +37520,7 @@ maybe-installcheck-tar:
maybe-installcheck-tar: installcheck-tar
installcheck-tar: \
- configure-tar
+ configure-tar
@: $(MAKE); $(unstage)
@[ -f ./tar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37537,7 +37545,7 @@ maybe-mostlyclean-tar:
@if tar
maybe-mostlyclean-tar: mostlyclean-tar
-mostlyclean-tar:
+mostlyclean-tar:
@: $(MAKE); $(unstage)
@[ -f ./tar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37562,7 +37570,7 @@ maybe-clean-tar:
@if tar
maybe-clean-tar: clean-tar
-clean-tar:
+clean-tar:
@: $(MAKE); $(unstage)
@[ -f ./tar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37587,7 +37595,7 @@ maybe-distclean-tar:
@if tar
maybe-distclean-tar: distclean-tar
-distclean-tar:
+distclean-tar:
@: $(MAKE); $(unstage)
@[ -f ./tar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37612,7 +37620,7 @@ maybe-maintainer-clean-tar:
@if tar
maybe-maintainer-clean-tar: maintainer-clean-tar
-maintainer-clean-tar:
+maintainer-clean-tar:
@: $(MAKE); $(unstage)
@[ -f ./tar/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37641,7 +37649,7 @@ configure-texinfo: stage_current
@endif gcc-bootstrap
@if texinfo
maybe-configure-texinfo: configure-texinfo
-configure-texinfo:
+configure-texinfo:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -37720,7 +37728,7 @@ maybe-info-texinfo:
maybe-info-texinfo: info-texinfo
info-texinfo: \
- configure-texinfo
+ configure-texinfo
@: $(MAKE); $(unstage)
@[ -f ./texinfo/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37746,7 +37754,7 @@ maybe-dvi-texinfo:
maybe-dvi-texinfo: dvi-texinfo
dvi-texinfo: \
- configure-texinfo
+ configure-texinfo
@: $(MAKE); $(unstage)
@[ -f ./texinfo/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37772,7 +37780,7 @@ maybe-pdf-texinfo:
maybe-pdf-texinfo: pdf-texinfo
pdf-texinfo: \
- configure-texinfo
+ configure-texinfo
@: $(MAKE); $(unstage)
@[ -f ./texinfo/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37798,7 +37806,7 @@ maybe-html-texinfo:
maybe-html-texinfo: html-texinfo
html-texinfo: \
- configure-texinfo
+ configure-texinfo
@: $(MAKE); $(unstage)
@[ -f ./texinfo/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37824,7 +37832,7 @@ maybe-TAGS-texinfo:
maybe-TAGS-texinfo: TAGS-texinfo
TAGS-texinfo: \
- configure-texinfo
+ configure-texinfo
@: $(MAKE); $(unstage)
@[ -f ./texinfo/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37851,7 +37859,7 @@ maybe-install-info-texinfo: install-info-texinfo
install-info-texinfo: \
configure-texinfo \
- info-texinfo
+ info-texinfo
@: $(MAKE); $(unstage)
@[ -f ./texinfo/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37878,7 +37886,7 @@ maybe-install-pdf-texinfo: install-pdf-texinfo
install-pdf-texinfo: \
configure-texinfo \
- pdf-texinfo
+ pdf-texinfo
@: $(MAKE); $(unstage)
@[ -f ./texinfo/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37905,7 +37913,7 @@ maybe-install-html-texinfo: install-html-texinfo
install-html-texinfo: \
configure-texinfo \
- html-texinfo
+ html-texinfo
@: $(MAKE); $(unstage)
@[ -f ./texinfo/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37931,7 +37939,7 @@ maybe-installcheck-texinfo:
maybe-installcheck-texinfo: installcheck-texinfo
installcheck-texinfo: \
- configure-texinfo
+ configure-texinfo
@: $(MAKE); $(unstage)
@[ -f ./texinfo/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37956,7 +37964,7 @@ maybe-mostlyclean-texinfo:
@if texinfo
maybe-mostlyclean-texinfo: mostlyclean-texinfo
-mostlyclean-texinfo:
+mostlyclean-texinfo:
@: $(MAKE); $(unstage)
@[ -f ./texinfo/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -37981,7 +37989,7 @@ maybe-clean-texinfo:
@if texinfo
maybe-clean-texinfo: clean-texinfo
-clean-texinfo:
+clean-texinfo:
@: $(MAKE); $(unstage)
@[ -f ./texinfo/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38006,7 +38014,7 @@ maybe-distclean-texinfo:
@if texinfo
maybe-distclean-texinfo: distclean-texinfo
-distclean-texinfo:
+distclean-texinfo:
@: $(MAKE); $(unstage)
@[ -f ./texinfo/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38031,7 +38039,7 @@ maybe-maintainer-clean-texinfo:
@if texinfo
maybe-maintainer-clean-texinfo: maintainer-clean-texinfo
-maintainer-clean-texinfo:
+maintainer-clean-texinfo:
@: $(MAKE); $(unstage)
@[ -f ./texinfo/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38060,7 +38068,7 @@ configure-textutils: stage_current
@endif gcc-bootstrap
@if textutils
maybe-configure-textutils: configure-textutils
-configure-textutils:
+configure-textutils:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -38145,7 +38153,7 @@ maybe-info-textutils:
maybe-info-textutils: info-textutils
info-textutils: \
- configure-textutils
+ configure-textutils
@: $(MAKE); $(unstage)
@[ -f ./textutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38171,7 +38179,7 @@ maybe-dvi-textutils:
maybe-dvi-textutils: dvi-textutils
dvi-textutils: \
- configure-textutils
+ configure-textutils
@: $(MAKE); $(unstage)
@[ -f ./textutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38197,7 +38205,7 @@ maybe-pdf-textutils:
maybe-pdf-textutils: pdf-textutils
pdf-textutils: \
- configure-textutils
+ configure-textutils
@: $(MAKE); $(unstage)
@[ -f ./textutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38223,7 +38231,7 @@ maybe-html-textutils:
maybe-html-textutils: html-textutils
html-textutils: \
- configure-textutils
+ configure-textutils
@: $(MAKE); $(unstage)
@[ -f ./textutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38249,7 +38257,7 @@ maybe-TAGS-textutils:
maybe-TAGS-textutils: TAGS-textutils
TAGS-textutils: \
- configure-textutils
+ configure-textutils
@: $(MAKE); $(unstage)
@[ -f ./textutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38276,7 +38284,7 @@ maybe-install-info-textutils: install-info-textutils
install-info-textutils: \
configure-textutils \
- info-textutils
+ info-textutils
@: $(MAKE); $(unstage)
@[ -f ./textutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38303,7 +38311,7 @@ maybe-install-pdf-textutils: install-pdf-textutils
install-pdf-textutils: \
configure-textutils \
- pdf-textutils
+ pdf-textutils
@: $(MAKE); $(unstage)
@[ -f ./textutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38330,7 +38338,7 @@ maybe-install-html-textutils: install-html-textutils
install-html-textutils: \
configure-textutils \
- html-textutils
+ html-textutils
@: $(MAKE); $(unstage)
@[ -f ./textutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38356,7 +38364,7 @@ maybe-installcheck-textutils:
maybe-installcheck-textutils: installcheck-textutils
installcheck-textutils: \
- configure-textutils
+ configure-textutils
@: $(MAKE); $(unstage)
@[ -f ./textutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38381,7 +38389,7 @@ maybe-mostlyclean-textutils:
@if textutils
maybe-mostlyclean-textutils: mostlyclean-textutils
-mostlyclean-textutils:
+mostlyclean-textutils:
@: $(MAKE); $(unstage)
@[ -f ./textutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38406,7 +38414,7 @@ maybe-clean-textutils:
@if textutils
maybe-clean-textutils: clean-textutils
-clean-textutils:
+clean-textutils:
@: $(MAKE); $(unstage)
@[ -f ./textutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38431,7 +38439,7 @@ maybe-distclean-textutils:
@if textutils
maybe-distclean-textutils: distclean-textutils
-distclean-textutils:
+distclean-textutils:
@: $(MAKE); $(unstage)
@[ -f ./textutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38456,7 +38464,7 @@ maybe-maintainer-clean-textutils:
@if textutils
maybe-maintainer-clean-textutils: maintainer-clean-textutils
-maintainer-clean-textutils:
+maintainer-clean-textutils:
@: $(MAKE); $(unstage)
@[ -f ./textutils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38485,7 +38493,7 @@ configure-time: stage_current
@endif gcc-bootstrap
@if time
maybe-configure-time: configure-time
-configure-time:
+configure-time:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -38570,7 +38578,7 @@ maybe-info-time:
maybe-info-time: info-time
info-time: \
- configure-time
+ configure-time
@: $(MAKE); $(unstage)
@[ -f ./time/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38596,7 +38604,7 @@ maybe-dvi-time:
maybe-dvi-time: dvi-time
dvi-time: \
- configure-time
+ configure-time
@: $(MAKE); $(unstage)
@[ -f ./time/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38622,7 +38630,7 @@ maybe-pdf-time:
maybe-pdf-time: pdf-time
pdf-time: \
- configure-time
+ configure-time
@: $(MAKE); $(unstage)
@[ -f ./time/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38648,7 +38656,7 @@ maybe-html-time:
maybe-html-time: html-time
html-time: \
- configure-time
+ configure-time
@: $(MAKE); $(unstage)
@[ -f ./time/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38674,7 +38682,7 @@ maybe-TAGS-time:
maybe-TAGS-time: TAGS-time
TAGS-time: \
- configure-time
+ configure-time
@: $(MAKE); $(unstage)
@[ -f ./time/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38701,7 +38709,7 @@ maybe-install-info-time: install-info-time
install-info-time: \
configure-time \
- info-time
+ info-time
@: $(MAKE); $(unstage)
@[ -f ./time/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38728,7 +38736,7 @@ maybe-install-pdf-time: install-pdf-time
install-pdf-time: \
configure-time \
- pdf-time
+ pdf-time
@: $(MAKE); $(unstage)
@[ -f ./time/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38755,7 +38763,7 @@ maybe-install-html-time: install-html-time
install-html-time: \
configure-time \
- html-time
+ html-time
@: $(MAKE); $(unstage)
@[ -f ./time/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38781,7 +38789,7 @@ maybe-installcheck-time:
maybe-installcheck-time: installcheck-time
installcheck-time: \
- configure-time
+ configure-time
@: $(MAKE); $(unstage)
@[ -f ./time/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38806,7 +38814,7 @@ maybe-mostlyclean-time:
@if time
maybe-mostlyclean-time: mostlyclean-time
-mostlyclean-time:
+mostlyclean-time:
@: $(MAKE); $(unstage)
@[ -f ./time/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38831,7 +38839,7 @@ maybe-clean-time:
@if time
maybe-clean-time: clean-time
-clean-time:
+clean-time:
@: $(MAKE); $(unstage)
@[ -f ./time/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38856,7 +38864,7 @@ maybe-distclean-time:
@if time
maybe-distclean-time: distclean-time
-distclean-time:
+distclean-time:
@: $(MAKE); $(unstage)
@[ -f ./time/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38881,7 +38889,7 @@ maybe-maintainer-clean-time:
@if time
maybe-maintainer-clean-time: maintainer-clean-time
-maintainer-clean-time:
+maintainer-clean-time:
@: $(MAKE); $(unstage)
@[ -f ./time/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -38910,7 +38918,7 @@ configure-uudecode: stage_current
@endif gcc-bootstrap
@if uudecode
maybe-configure-uudecode: configure-uudecode
-configure-uudecode:
+configure-uudecode:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -38995,7 +39003,7 @@ maybe-info-uudecode:
maybe-info-uudecode: info-uudecode
info-uudecode: \
- configure-uudecode
+ configure-uudecode
@: $(MAKE); $(unstage)
@[ -f ./uudecode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39021,7 +39029,7 @@ maybe-dvi-uudecode:
maybe-dvi-uudecode: dvi-uudecode
dvi-uudecode: \
- configure-uudecode
+ configure-uudecode
@: $(MAKE); $(unstage)
@[ -f ./uudecode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39047,7 +39055,7 @@ maybe-pdf-uudecode:
maybe-pdf-uudecode: pdf-uudecode
pdf-uudecode: \
- configure-uudecode
+ configure-uudecode
@: $(MAKE); $(unstage)
@[ -f ./uudecode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39073,7 +39081,7 @@ maybe-html-uudecode:
maybe-html-uudecode: html-uudecode
html-uudecode: \
- configure-uudecode
+ configure-uudecode
@: $(MAKE); $(unstage)
@[ -f ./uudecode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39099,7 +39107,7 @@ maybe-TAGS-uudecode:
maybe-TAGS-uudecode: TAGS-uudecode
TAGS-uudecode: \
- configure-uudecode
+ configure-uudecode
@: $(MAKE); $(unstage)
@[ -f ./uudecode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39126,7 +39134,7 @@ maybe-install-info-uudecode: install-info-uudecode
install-info-uudecode: \
configure-uudecode \
- info-uudecode
+ info-uudecode
@: $(MAKE); $(unstage)
@[ -f ./uudecode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39153,7 +39161,7 @@ maybe-install-pdf-uudecode: install-pdf-uudecode
install-pdf-uudecode: \
configure-uudecode \
- pdf-uudecode
+ pdf-uudecode
@: $(MAKE); $(unstage)
@[ -f ./uudecode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39180,7 +39188,7 @@ maybe-install-html-uudecode: install-html-uudecode
install-html-uudecode: \
configure-uudecode \
- html-uudecode
+ html-uudecode
@: $(MAKE); $(unstage)
@[ -f ./uudecode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39206,7 +39214,7 @@ maybe-installcheck-uudecode:
maybe-installcheck-uudecode: installcheck-uudecode
installcheck-uudecode: \
- configure-uudecode
+ configure-uudecode
@: $(MAKE); $(unstage)
@[ -f ./uudecode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39231,7 +39239,7 @@ maybe-mostlyclean-uudecode:
@if uudecode
maybe-mostlyclean-uudecode: mostlyclean-uudecode
-mostlyclean-uudecode:
+mostlyclean-uudecode:
@: $(MAKE); $(unstage)
@[ -f ./uudecode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39256,7 +39264,7 @@ maybe-clean-uudecode:
@if uudecode
maybe-clean-uudecode: clean-uudecode
-clean-uudecode:
+clean-uudecode:
@: $(MAKE); $(unstage)
@[ -f ./uudecode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39281,7 +39289,7 @@ maybe-distclean-uudecode:
@if uudecode
maybe-distclean-uudecode: distclean-uudecode
-distclean-uudecode:
+distclean-uudecode:
@: $(MAKE); $(unstage)
@[ -f ./uudecode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39306,7 +39314,7 @@ maybe-maintainer-clean-uudecode:
@if uudecode
maybe-maintainer-clean-uudecode: maintainer-clean-uudecode
-maintainer-clean-uudecode:
+maintainer-clean-uudecode:
@: $(MAKE); $(unstage)
@[ -f ./uudecode/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39335,7 +39343,7 @@ configure-wdiff: stage_current
@endif gcc-bootstrap
@if wdiff
maybe-configure-wdiff: configure-wdiff
-configure-wdiff:
+configure-wdiff:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -39420,7 +39428,7 @@ maybe-info-wdiff:
maybe-info-wdiff: info-wdiff
info-wdiff: \
- configure-wdiff
+ configure-wdiff
@: $(MAKE); $(unstage)
@[ -f ./wdiff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39446,7 +39454,7 @@ maybe-dvi-wdiff:
maybe-dvi-wdiff: dvi-wdiff
dvi-wdiff: \
- configure-wdiff
+ configure-wdiff
@: $(MAKE); $(unstage)
@[ -f ./wdiff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39472,7 +39480,7 @@ maybe-pdf-wdiff:
maybe-pdf-wdiff: pdf-wdiff
pdf-wdiff: \
- configure-wdiff
+ configure-wdiff
@: $(MAKE); $(unstage)
@[ -f ./wdiff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39498,7 +39506,7 @@ maybe-html-wdiff:
maybe-html-wdiff: html-wdiff
html-wdiff: \
- configure-wdiff
+ configure-wdiff
@: $(MAKE); $(unstage)
@[ -f ./wdiff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39524,7 +39532,7 @@ maybe-TAGS-wdiff:
maybe-TAGS-wdiff: TAGS-wdiff
TAGS-wdiff: \
- configure-wdiff
+ configure-wdiff
@: $(MAKE); $(unstage)
@[ -f ./wdiff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39551,7 +39559,7 @@ maybe-install-info-wdiff: install-info-wdiff
install-info-wdiff: \
configure-wdiff \
- info-wdiff
+ info-wdiff
@: $(MAKE); $(unstage)
@[ -f ./wdiff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39578,7 +39586,7 @@ maybe-install-pdf-wdiff: install-pdf-wdiff
install-pdf-wdiff: \
configure-wdiff \
- pdf-wdiff
+ pdf-wdiff
@: $(MAKE); $(unstage)
@[ -f ./wdiff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39605,7 +39613,7 @@ maybe-install-html-wdiff: install-html-wdiff
install-html-wdiff: \
configure-wdiff \
- html-wdiff
+ html-wdiff
@: $(MAKE); $(unstage)
@[ -f ./wdiff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39631,7 +39639,7 @@ maybe-installcheck-wdiff:
maybe-installcheck-wdiff: installcheck-wdiff
installcheck-wdiff: \
- configure-wdiff
+ configure-wdiff
@: $(MAKE); $(unstage)
@[ -f ./wdiff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39656,7 +39664,7 @@ maybe-mostlyclean-wdiff:
@if wdiff
maybe-mostlyclean-wdiff: mostlyclean-wdiff
-mostlyclean-wdiff:
+mostlyclean-wdiff:
@: $(MAKE); $(unstage)
@[ -f ./wdiff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39681,7 +39689,7 @@ maybe-clean-wdiff:
@if wdiff
maybe-clean-wdiff: clean-wdiff
-clean-wdiff:
+clean-wdiff:
@: $(MAKE); $(unstage)
@[ -f ./wdiff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39706,7 +39714,7 @@ maybe-distclean-wdiff:
@if wdiff
maybe-distclean-wdiff: distclean-wdiff
-distclean-wdiff:
+distclean-wdiff:
@: $(MAKE); $(unstage)
@[ -f ./wdiff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39731,7 +39739,7 @@ maybe-maintainer-clean-wdiff:
@if wdiff
maybe-maintainer-clean-wdiff: maintainer-clean-wdiff
-maintainer-clean-wdiff:
+maintainer-clean-wdiff:
@: $(MAKE); $(unstage)
@[ -f ./wdiff/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39760,7 +39768,7 @@ configure-zip: stage_current
@endif gcc-bootstrap
@if zip
maybe-configure-zip: configure-zip
-configure-zip:
+configure-zip:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -39848,7 +39856,7 @@ maybe-info-zip:
maybe-info-zip: info-zip
info-zip: \
- configure-zip
+ configure-zip
@: $(MAKE); $(unstage)
@[ -f ./zip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39874,7 +39882,7 @@ maybe-dvi-zip:
maybe-dvi-zip: dvi-zip
dvi-zip: \
- configure-zip
+ configure-zip
@: $(MAKE); $(unstage)
@[ -f ./zip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39900,7 +39908,7 @@ maybe-pdf-zip:
maybe-pdf-zip: pdf-zip
pdf-zip: \
- configure-zip
+ configure-zip
@: $(MAKE); $(unstage)
@[ -f ./zip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39926,7 +39934,7 @@ maybe-html-zip:
maybe-html-zip: html-zip
html-zip: \
- configure-zip
+ configure-zip
@: $(MAKE); $(unstage)
@[ -f ./zip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39952,7 +39960,7 @@ maybe-TAGS-zip:
maybe-TAGS-zip: TAGS-zip
TAGS-zip: \
- configure-zip
+ configure-zip
@: $(MAKE); $(unstage)
@[ -f ./zip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -39979,7 +39987,7 @@ maybe-install-info-zip: install-info-zip
install-info-zip: \
configure-zip \
- info-zip
+ info-zip
@: $(MAKE); $(unstage)
@[ -f ./zip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -40006,7 +40014,7 @@ maybe-install-pdf-zip: install-pdf-zip
install-pdf-zip: \
configure-zip \
- pdf-zip
+ pdf-zip
@: $(MAKE); $(unstage)
@[ -f ./zip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -40033,7 +40041,7 @@ maybe-install-html-zip: install-html-zip
install-html-zip: \
configure-zip \
- html-zip
+ html-zip
@: $(MAKE); $(unstage)
@[ -f ./zip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -40059,7 +40067,7 @@ maybe-installcheck-zip:
maybe-installcheck-zip: installcheck-zip
installcheck-zip: \
- configure-zip
+ configure-zip
@: $(MAKE); $(unstage)
@[ -f ./zip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -40084,7 +40092,7 @@ maybe-mostlyclean-zip:
@if zip
maybe-mostlyclean-zip: mostlyclean-zip
-mostlyclean-zip:
+mostlyclean-zip:
@: $(MAKE); $(unstage)
@[ -f ./zip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -40109,7 +40117,7 @@ maybe-clean-zip:
@if zip
maybe-clean-zip: clean-zip
-clean-zip:
+clean-zip:
@: $(MAKE); $(unstage)
@[ -f ./zip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -40134,7 +40142,7 @@ maybe-distclean-zip:
@if zip
maybe-distclean-zip: distclean-zip
-distclean-zip:
+distclean-zip:
@: $(MAKE); $(unstage)
@[ -f ./zip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -40159,7 +40167,7 @@ maybe-maintainer-clean-zip:
@if zip
maybe-maintainer-clean-zip: maintainer-clean-zip
-maintainer-clean-zip:
+maintainer-clean-zip:
@: $(MAKE); $(unstage)
@[ -f ./zip/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -40188,7 +40196,7 @@ configure-zlib: stage_current
@endif gcc-bootstrap
@if zlib
maybe-configure-zlib: configure-zlib
-configure-zlib:
+configure-zlib:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
@@ -40715,7 +40723,7 @@ maybe-info-zlib:
maybe-info-zlib: info-zlib
info-zlib: \
- configure-zlib
+ configure-zlib
@[ -f ./zlib/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -40740,7 +40748,7 @@ maybe-dvi-zlib:
maybe-dvi-zlib: dvi-zlib
dvi-zlib: \
- configure-zlib
+ configure-zlib
@[ -f ./zlib/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -40765,7 +40773,7 @@ maybe-pdf-zlib:
maybe-pdf-zlib: pdf-zlib
pdf-zlib: \
- configure-zlib
+ configure-zlib
@[ -f ./zlib/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -40790,7 +40798,7 @@ maybe-html-zlib:
maybe-html-zlib: html-zlib
html-zlib: \
- configure-zlib
+ configure-zlib
@[ -f ./zlib/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -40815,7 +40823,7 @@ maybe-TAGS-zlib:
maybe-TAGS-zlib: TAGS-zlib
TAGS-zlib: \
- configure-zlib
+ configure-zlib
@[ -f ./zlib/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -40841,7 +40849,7 @@ maybe-install-info-zlib: install-info-zlib
install-info-zlib: \
configure-zlib \
- info-zlib
+ info-zlib
@[ -f ./zlib/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -40867,7 +40875,7 @@ maybe-install-pdf-zlib: install-pdf-zlib
install-pdf-zlib: \
configure-zlib \
- pdf-zlib
+ pdf-zlib
@[ -f ./zlib/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -40893,7 +40901,7 @@ maybe-install-html-zlib: install-html-zlib
install-html-zlib: \
configure-zlib \
- html-zlib
+ html-zlib
@[ -f ./zlib/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -40918,7 +40926,7 @@ maybe-installcheck-zlib:
maybe-installcheck-zlib: installcheck-zlib
installcheck-zlib: \
- configure-zlib
+ configure-zlib
@[ -f ./zlib/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -40942,7 +40950,7 @@ maybe-mostlyclean-zlib:
@if zlib
maybe-mostlyclean-zlib: mostlyclean-zlib
-mostlyclean-zlib:
+mostlyclean-zlib:
@[ -f ./zlib/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -40966,7 +40974,7 @@ maybe-clean-zlib:
@if zlib
maybe-clean-zlib: clean-zlib
-clean-zlib:
+clean-zlib:
@[ -f ./zlib/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -40990,7 +40998,7 @@ maybe-distclean-zlib:
@if zlib
maybe-distclean-zlib: distclean-zlib
-distclean-zlib:
+distclean-zlib:
@[ -f ./zlib/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -41014,7 +41022,7 @@ maybe-maintainer-clean-zlib:
@if zlib
maybe-maintainer-clean-zlib: maintainer-clean-zlib
-maintainer-clean-zlib:
+maintainer-clean-zlib:
@[ -f ./zlib/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -41042,7 +41050,7 @@ configure-gdb: stage_current
@endif gcc-bootstrap
@if gdb
maybe-configure-gdb: configure-gdb
-configure-gdb:
+configure-gdb:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -41127,7 +41135,7 @@ maybe-info-gdb:
maybe-info-gdb: info-gdb
info-gdb: \
- configure-gdb
+ configure-gdb
@: $(MAKE); $(unstage)
@[ -f ./gdb/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41153,7 +41161,7 @@ maybe-dvi-gdb:
maybe-dvi-gdb: dvi-gdb
dvi-gdb: \
- configure-gdb
+ configure-gdb
@: $(MAKE); $(unstage)
@[ -f ./gdb/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41179,7 +41187,7 @@ maybe-pdf-gdb:
maybe-pdf-gdb: pdf-gdb
pdf-gdb: \
- configure-gdb
+ configure-gdb
@: $(MAKE); $(unstage)
@[ -f ./gdb/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41205,7 +41213,7 @@ maybe-html-gdb:
maybe-html-gdb: html-gdb
html-gdb: \
- configure-gdb
+ configure-gdb
@: $(MAKE); $(unstage)
@[ -f ./gdb/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41231,7 +41239,7 @@ maybe-TAGS-gdb:
maybe-TAGS-gdb: TAGS-gdb
TAGS-gdb: \
- configure-gdb
+ configure-gdb
@: $(MAKE); $(unstage)
@[ -f ./gdb/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41258,7 +41266,7 @@ maybe-install-info-gdb: install-info-gdb
install-info-gdb: \
configure-gdb \
- info-gdb
+ info-gdb
@: $(MAKE); $(unstage)
@[ -f ./gdb/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41285,7 +41293,7 @@ maybe-install-pdf-gdb: install-pdf-gdb
install-pdf-gdb: \
configure-gdb \
- pdf-gdb
+ pdf-gdb
@: $(MAKE); $(unstage)
@[ -f ./gdb/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41312,7 +41320,7 @@ maybe-install-html-gdb: install-html-gdb
install-html-gdb: \
configure-gdb \
- html-gdb
+ html-gdb
@: $(MAKE); $(unstage)
@[ -f ./gdb/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41338,7 +41346,7 @@ maybe-installcheck-gdb:
maybe-installcheck-gdb: installcheck-gdb
installcheck-gdb: \
- configure-gdb
+ configure-gdb
@: $(MAKE); $(unstage)
@[ -f ./gdb/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41363,7 +41371,7 @@ maybe-mostlyclean-gdb:
@if gdb
maybe-mostlyclean-gdb: mostlyclean-gdb
-mostlyclean-gdb:
+mostlyclean-gdb:
@: $(MAKE); $(unstage)
@[ -f ./gdb/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41388,7 +41396,7 @@ maybe-clean-gdb:
@if gdb
maybe-clean-gdb: clean-gdb
-clean-gdb:
+clean-gdb:
@: $(MAKE); $(unstage)
@[ -f ./gdb/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41413,7 +41421,7 @@ maybe-distclean-gdb:
@if gdb
maybe-distclean-gdb: distclean-gdb
-distclean-gdb:
+distclean-gdb:
@: $(MAKE); $(unstage)
@[ -f ./gdb/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41438,7 +41446,7 @@ maybe-maintainer-clean-gdb:
@if gdb
maybe-maintainer-clean-gdb: maintainer-clean-gdb
-maintainer-clean-gdb:
+maintainer-clean-gdb:
@: $(MAKE); $(unstage)
@[ -f ./gdb/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41467,7 +41475,7 @@ configure-expect: stage_current
@endif gcc-bootstrap
@if expect
maybe-configure-expect: configure-expect
-configure-expect:
+configure-expect:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -41552,7 +41560,7 @@ maybe-info-expect:
maybe-info-expect: info-expect
info-expect: \
- configure-expect
+ configure-expect
@: $(MAKE); $(unstage)
@[ -f ./expect/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41578,7 +41586,7 @@ maybe-dvi-expect:
maybe-dvi-expect: dvi-expect
dvi-expect: \
- configure-expect
+ configure-expect
@: $(MAKE); $(unstage)
@[ -f ./expect/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41604,7 +41612,7 @@ maybe-pdf-expect:
maybe-pdf-expect: pdf-expect
pdf-expect: \
- configure-expect
+ configure-expect
@: $(MAKE); $(unstage)
@[ -f ./expect/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41630,7 +41638,7 @@ maybe-html-expect:
maybe-html-expect: html-expect
html-expect: \
- configure-expect
+ configure-expect
@: $(MAKE); $(unstage)
@[ -f ./expect/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41656,7 +41664,7 @@ maybe-TAGS-expect:
maybe-TAGS-expect: TAGS-expect
TAGS-expect: \
- configure-expect
+ configure-expect
@: $(MAKE); $(unstage)
@[ -f ./expect/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41683,7 +41691,7 @@ maybe-install-info-expect: install-info-expect
install-info-expect: \
configure-expect \
- info-expect
+ info-expect
@: $(MAKE); $(unstage)
@[ -f ./expect/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41710,7 +41718,7 @@ maybe-install-pdf-expect: install-pdf-expect
install-pdf-expect: \
configure-expect \
- pdf-expect
+ pdf-expect
@: $(MAKE); $(unstage)
@[ -f ./expect/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41737,7 +41745,7 @@ maybe-install-html-expect: install-html-expect
install-html-expect: \
configure-expect \
- html-expect
+ html-expect
@: $(MAKE); $(unstage)
@[ -f ./expect/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41763,7 +41771,7 @@ maybe-installcheck-expect:
maybe-installcheck-expect: installcheck-expect
installcheck-expect: \
- configure-expect
+ configure-expect
@: $(MAKE); $(unstage)
@[ -f ./expect/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41788,7 +41796,7 @@ maybe-mostlyclean-expect:
@if expect
maybe-mostlyclean-expect: mostlyclean-expect
-mostlyclean-expect:
+mostlyclean-expect:
@: $(MAKE); $(unstage)
@[ -f ./expect/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41813,7 +41821,7 @@ maybe-clean-expect:
@if expect
maybe-clean-expect: clean-expect
-clean-expect:
+clean-expect:
@: $(MAKE); $(unstage)
@[ -f ./expect/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41838,7 +41846,7 @@ maybe-distclean-expect:
@if expect
maybe-distclean-expect: distclean-expect
-distclean-expect:
+distclean-expect:
@: $(MAKE); $(unstage)
@[ -f ./expect/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41863,7 +41871,7 @@ maybe-maintainer-clean-expect:
@if expect
maybe-maintainer-clean-expect: maintainer-clean-expect
-maintainer-clean-expect:
+maintainer-clean-expect:
@: $(MAKE); $(unstage)
@[ -f ./expect/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -41892,7 +41900,7 @@ configure-guile: stage_current
@endif gcc-bootstrap
@if guile
maybe-configure-guile: configure-guile
-configure-guile:
+configure-guile:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -41977,7 +41985,7 @@ maybe-info-guile:
maybe-info-guile: info-guile
info-guile: \
- configure-guile
+ configure-guile
@: $(MAKE); $(unstage)
@[ -f ./guile/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42003,7 +42011,7 @@ maybe-dvi-guile:
maybe-dvi-guile: dvi-guile
dvi-guile: \
- configure-guile
+ configure-guile
@: $(MAKE); $(unstage)
@[ -f ./guile/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42029,7 +42037,7 @@ maybe-pdf-guile:
maybe-pdf-guile: pdf-guile
pdf-guile: \
- configure-guile
+ configure-guile
@: $(MAKE); $(unstage)
@[ -f ./guile/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42055,7 +42063,7 @@ maybe-html-guile:
maybe-html-guile: html-guile
html-guile: \
- configure-guile
+ configure-guile
@: $(MAKE); $(unstage)
@[ -f ./guile/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42081,7 +42089,7 @@ maybe-TAGS-guile:
maybe-TAGS-guile: TAGS-guile
TAGS-guile: \
- configure-guile
+ configure-guile
@: $(MAKE); $(unstage)
@[ -f ./guile/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42108,7 +42116,7 @@ maybe-install-info-guile: install-info-guile
install-info-guile: \
configure-guile \
- info-guile
+ info-guile
@: $(MAKE); $(unstage)
@[ -f ./guile/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42135,7 +42143,7 @@ maybe-install-pdf-guile: install-pdf-guile
install-pdf-guile: \
configure-guile \
- pdf-guile
+ pdf-guile
@: $(MAKE); $(unstage)
@[ -f ./guile/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42162,7 +42170,7 @@ maybe-install-html-guile: install-html-guile
install-html-guile: \
configure-guile \
- html-guile
+ html-guile
@: $(MAKE); $(unstage)
@[ -f ./guile/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42188,7 +42196,7 @@ maybe-installcheck-guile:
maybe-installcheck-guile: installcheck-guile
installcheck-guile: \
- configure-guile
+ configure-guile
@: $(MAKE); $(unstage)
@[ -f ./guile/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42213,7 +42221,7 @@ maybe-mostlyclean-guile:
@if guile
maybe-mostlyclean-guile: mostlyclean-guile
-mostlyclean-guile:
+mostlyclean-guile:
@: $(MAKE); $(unstage)
@[ -f ./guile/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42238,7 +42246,7 @@ maybe-clean-guile:
@if guile
maybe-clean-guile: clean-guile
-clean-guile:
+clean-guile:
@: $(MAKE); $(unstage)
@[ -f ./guile/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42263,7 +42271,7 @@ maybe-distclean-guile:
@if guile
maybe-distclean-guile: distclean-guile
-distclean-guile:
+distclean-guile:
@: $(MAKE); $(unstage)
@[ -f ./guile/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42288,7 +42296,7 @@ maybe-maintainer-clean-guile:
@if guile
maybe-maintainer-clean-guile: maintainer-clean-guile
-maintainer-clean-guile:
+maintainer-clean-guile:
@: $(MAKE); $(unstage)
@[ -f ./guile/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42317,7 +42325,7 @@ configure-tk: stage_current
@endif gcc-bootstrap
@if tk
maybe-configure-tk: configure-tk
-configure-tk:
+configure-tk:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -42402,7 +42410,7 @@ maybe-info-tk:
maybe-info-tk: info-tk
info-tk: \
- configure-tk
+ configure-tk
@: $(MAKE); $(unstage)
@[ -f ./tk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42428,7 +42436,7 @@ maybe-dvi-tk:
maybe-dvi-tk: dvi-tk
dvi-tk: \
- configure-tk
+ configure-tk
@: $(MAKE); $(unstage)
@[ -f ./tk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42454,7 +42462,7 @@ maybe-pdf-tk:
maybe-pdf-tk: pdf-tk
pdf-tk: \
- configure-tk
+ configure-tk
@: $(MAKE); $(unstage)
@[ -f ./tk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42480,7 +42488,7 @@ maybe-html-tk:
maybe-html-tk: html-tk
html-tk: \
- configure-tk
+ configure-tk
@: $(MAKE); $(unstage)
@[ -f ./tk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42506,7 +42514,7 @@ maybe-TAGS-tk:
maybe-TAGS-tk: TAGS-tk
TAGS-tk: \
- configure-tk
+ configure-tk
@: $(MAKE); $(unstage)
@[ -f ./tk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42533,7 +42541,7 @@ maybe-install-info-tk: install-info-tk
install-info-tk: \
configure-tk \
- info-tk
+ info-tk
@: $(MAKE); $(unstage)
@[ -f ./tk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42560,7 +42568,7 @@ maybe-install-pdf-tk: install-pdf-tk
install-pdf-tk: \
configure-tk \
- pdf-tk
+ pdf-tk
@: $(MAKE); $(unstage)
@[ -f ./tk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42587,7 +42595,7 @@ maybe-install-html-tk: install-html-tk
install-html-tk: \
configure-tk \
- html-tk
+ html-tk
@: $(MAKE); $(unstage)
@[ -f ./tk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42613,7 +42621,7 @@ maybe-installcheck-tk:
maybe-installcheck-tk: installcheck-tk
installcheck-tk: \
- configure-tk
+ configure-tk
@: $(MAKE); $(unstage)
@[ -f ./tk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42638,7 +42646,7 @@ maybe-mostlyclean-tk:
@if tk
maybe-mostlyclean-tk: mostlyclean-tk
-mostlyclean-tk:
+mostlyclean-tk:
@: $(MAKE); $(unstage)
@[ -f ./tk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42663,7 +42671,7 @@ maybe-clean-tk:
@if tk
maybe-clean-tk: clean-tk
-clean-tk:
+clean-tk:
@: $(MAKE); $(unstage)
@[ -f ./tk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42688,7 +42696,7 @@ maybe-distclean-tk:
@if tk
maybe-distclean-tk: distclean-tk
-distclean-tk:
+distclean-tk:
@: $(MAKE); $(unstage)
@[ -f ./tk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42713,7 +42721,7 @@ maybe-maintainer-clean-tk:
@if tk
maybe-maintainer-clean-tk: maintainer-clean-tk
-maintainer-clean-tk:
+maintainer-clean-tk:
@: $(MAKE); $(unstage)
@[ -f ./tk/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42742,7 +42750,7 @@ configure-libtermcap: stage_current
@endif gcc-bootstrap
@if libtermcap
maybe-configure-libtermcap: configure-libtermcap
-configure-libtermcap:
+configure-libtermcap:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -42821,7 +42829,7 @@ maybe-info-libtermcap:
maybe-info-libtermcap: info-libtermcap
info-libtermcap: \
- configure-libtermcap
+ configure-libtermcap
@: $(MAKE); $(unstage)
@[ -f ./libtermcap/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42847,7 +42855,7 @@ maybe-dvi-libtermcap:
maybe-dvi-libtermcap: dvi-libtermcap
dvi-libtermcap: \
- configure-libtermcap
+ configure-libtermcap
@: $(MAKE); $(unstage)
@[ -f ./libtermcap/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42873,7 +42881,7 @@ maybe-pdf-libtermcap:
maybe-pdf-libtermcap: pdf-libtermcap
pdf-libtermcap: \
- configure-libtermcap
+ configure-libtermcap
@: $(MAKE); $(unstage)
@[ -f ./libtermcap/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42899,7 +42907,7 @@ maybe-html-libtermcap:
maybe-html-libtermcap: html-libtermcap
html-libtermcap: \
- configure-libtermcap
+ configure-libtermcap
@: $(MAKE); $(unstage)
@[ -f ./libtermcap/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42925,7 +42933,7 @@ maybe-TAGS-libtermcap:
maybe-TAGS-libtermcap: TAGS-libtermcap
TAGS-libtermcap: \
- configure-libtermcap
+ configure-libtermcap
@: $(MAKE); $(unstage)
@[ -f ./libtermcap/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42952,7 +42960,7 @@ maybe-install-info-libtermcap: install-info-libtermcap
install-info-libtermcap: \
configure-libtermcap \
- info-libtermcap
+ info-libtermcap
@: $(MAKE); $(unstage)
@[ -f ./libtermcap/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -42979,7 +42987,7 @@ maybe-install-pdf-libtermcap: install-pdf-libtermcap
install-pdf-libtermcap: \
configure-libtermcap \
- pdf-libtermcap
+ pdf-libtermcap
@: $(MAKE); $(unstage)
@[ -f ./libtermcap/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43006,7 +43014,7 @@ maybe-install-html-libtermcap: install-html-libtermcap
install-html-libtermcap: \
configure-libtermcap \
- html-libtermcap
+ html-libtermcap
@: $(MAKE); $(unstage)
@[ -f ./libtermcap/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43032,7 +43040,7 @@ maybe-installcheck-libtermcap:
maybe-installcheck-libtermcap: installcheck-libtermcap
installcheck-libtermcap: \
- configure-libtermcap
+ configure-libtermcap
@: $(MAKE); $(unstage)
@[ -f ./libtermcap/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43101,7 +43109,7 @@ configure-utils: stage_current
@endif gcc-bootstrap
@if utils
maybe-configure-utils: configure-utils
-configure-utils:
+configure-utils:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43180,7 +43188,7 @@ maybe-info-utils:
maybe-info-utils: info-utils
info-utils: \
- configure-utils
+ configure-utils
@: $(MAKE); $(unstage)
@[ -f ./utils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43206,7 +43214,7 @@ maybe-dvi-utils:
maybe-dvi-utils: dvi-utils
dvi-utils: \
- configure-utils
+ configure-utils
@: $(MAKE); $(unstage)
@[ -f ./utils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43232,7 +43240,7 @@ maybe-pdf-utils:
maybe-pdf-utils: pdf-utils
pdf-utils: \
- configure-utils
+ configure-utils
@: $(MAKE); $(unstage)
@[ -f ./utils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43258,7 +43266,7 @@ maybe-html-utils:
maybe-html-utils: html-utils
html-utils: \
- configure-utils
+ configure-utils
@: $(MAKE); $(unstage)
@[ -f ./utils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43284,7 +43292,7 @@ maybe-TAGS-utils:
maybe-TAGS-utils: TAGS-utils
TAGS-utils: \
- configure-utils
+ configure-utils
@: $(MAKE); $(unstage)
@[ -f ./utils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43311,7 +43319,7 @@ maybe-install-info-utils: install-info-utils
install-info-utils: \
configure-utils \
- info-utils
+ info-utils
@: $(MAKE); $(unstage)
@[ -f ./utils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43338,7 +43346,7 @@ maybe-install-pdf-utils: install-pdf-utils
install-pdf-utils: \
configure-utils \
- pdf-utils
+ pdf-utils
@: $(MAKE); $(unstage)
@[ -f ./utils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43365,7 +43373,7 @@ maybe-install-html-utils: install-html-utils
install-html-utils: \
configure-utils \
- html-utils
+ html-utils
@: $(MAKE); $(unstage)
@[ -f ./utils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43391,7 +43399,7 @@ maybe-installcheck-utils:
maybe-installcheck-utils: installcheck-utils
installcheck-utils: \
- configure-utils
+ configure-utils
@: $(MAKE); $(unstage)
@[ -f ./utils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43416,7 +43424,7 @@ maybe-mostlyclean-utils:
@if utils
maybe-mostlyclean-utils: mostlyclean-utils
-mostlyclean-utils:
+mostlyclean-utils:
@: $(MAKE); $(unstage)
@[ -f ./utils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43441,7 +43449,7 @@ maybe-clean-utils:
@if utils
maybe-clean-utils: clean-utils
-clean-utils:
+clean-utils:
@: $(MAKE); $(unstage)
@[ -f ./utils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43466,7 +43474,7 @@ maybe-distclean-utils:
@if utils
maybe-distclean-utils: distclean-utils
-distclean-utils:
+distclean-utils:
@: $(MAKE); $(unstage)
@[ -f ./utils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43491,7 +43499,7 @@ maybe-maintainer-clean-utils:
@if utils
maybe-maintainer-clean-utils: maintainer-clean-utils
-maintainer-clean-utils:
+maintainer-clean-utils:
@: $(MAKE); $(unstage)
@[ -f ./utils/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43520,7 +43528,7 @@ configure-gnattools: stage_current
@endif gcc-bootstrap
@if gnattools
maybe-configure-gnattools: configure-gnattools
-configure-gnattools:
+configure-gnattools:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43605,7 +43613,7 @@ maybe-info-gnattools:
maybe-info-gnattools: info-gnattools
info-gnattools: \
- configure-gnattools
+ configure-gnattools
@: $(MAKE); $(unstage)
@[ -f ./gnattools/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43631,7 +43639,7 @@ maybe-dvi-gnattools:
maybe-dvi-gnattools: dvi-gnattools
dvi-gnattools: \
- configure-gnattools
+ configure-gnattools
@: $(MAKE); $(unstage)
@[ -f ./gnattools/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43657,7 +43665,7 @@ maybe-pdf-gnattools:
maybe-pdf-gnattools: pdf-gnattools
pdf-gnattools: \
- configure-gnattools
+ configure-gnattools
@: $(MAKE); $(unstage)
@[ -f ./gnattools/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43683,7 +43691,7 @@ maybe-html-gnattools:
maybe-html-gnattools: html-gnattools
html-gnattools: \
- configure-gnattools
+ configure-gnattools
@: $(MAKE); $(unstage)
@[ -f ./gnattools/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43709,7 +43717,7 @@ maybe-TAGS-gnattools:
maybe-TAGS-gnattools: TAGS-gnattools
TAGS-gnattools: \
- configure-gnattools
+ configure-gnattools
@: $(MAKE); $(unstage)
@[ -f ./gnattools/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43736,7 +43744,7 @@ maybe-install-info-gnattools: install-info-gnattools
install-info-gnattools: \
configure-gnattools \
- info-gnattools
+ info-gnattools
@: $(MAKE); $(unstage)
@[ -f ./gnattools/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43763,7 +43771,7 @@ maybe-install-pdf-gnattools: install-pdf-gnattools
install-pdf-gnattools: \
configure-gnattools \
- pdf-gnattools
+ pdf-gnattools
@: $(MAKE); $(unstage)
@[ -f ./gnattools/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43790,7 +43798,7 @@ maybe-install-html-gnattools: install-html-gnattools
install-html-gnattools: \
configure-gnattools \
- html-gnattools
+ html-gnattools
@: $(MAKE); $(unstage)
@[ -f ./gnattools/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43816,7 +43824,7 @@ maybe-installcheck-gnattools:
maybe-installcheck-gnattools: installcheck-gnattools
installcheck-gnattools: \
- configure-gnattools
+ configure-gnattools
@: $(MAKE); $(unstage)
@[ -f ./gnattools/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43841,7 +43849,7 @@ maybe-mostlyclean-gnattools:
@if gnattools
maybe-mostlyclean-gnattools: mostlyclean-gnattools
-mostlyclean-gnattools:
+mostlyclean-gnattools:
@: $(MAKE); $(unstage)
@[ -f ./gnattools/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43866,7 +43874,7 @@ maybe-clean-gnattools:
@if gnattools
maybe-clean-gnattools: clean-gnattools
-clean-gnattools:
+clean-gnattools:
@: $(MAKE); $(unstage)
@[ -f ./gnattools/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43891,7 +43899,7 @@ maybe-distclean-gnattools:
@if gnattools
maybe-distclean-gnattools: distclean-gnattools
-distclean-gnattools:
+distclean-gnattools:
@: $(MAKE); $(unstage)
@[ -f ./gnattools/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43916,7 +43924,7 @@ maybe-maintainer-clean-gnattools:
@if gnattools
maybe-maintainer-clean-gnattools: maintainer-clean-gnattools
-maintainer-clean-gnattools:
+maintainer-clean-gnattools:
@: $(MAKE); $(unstage)
@[ -f ./gnattools/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
@@ -43945,7 +43953,7 @@ configure-lto-plugin: stage_current
@endif gcc-bootstrap
@if lto-plugin
maybe-configure-lto-plugin: configure-lto-plugin
-configure-lto-plugin:
+configure-lto-plugin:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
test ! -f $(HOST_SUBDIR)/lto-plugin/Makefile || exit 0; \
@@ -44484,7 +44492,7 @@ maybe-info-lto-plugin:
maybe-info-lto-plugin: info-lto-plugin
info-lto-plugin: \
- configure-lto-plugin
+ configure-lto-plugin
@[ -f ./lto-plugin/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -44509,7 +44517,7 @@ maybe-dvi-lto-plugin:
maybe-dvi-lto-plugin: dvi-lto-plugin
dvi-lto-plugin: \
- configure-lto-plugin
+ configure-lto-plugin
@[ -f ./lto-plugin/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -44534,7 +44542,7 @@ maybe-pdf-lto-plugin:
maybe-pdf-lto-plugin: pdf-lto-plugin
pdf-lto-plugin: \
- configure-lto-plugin
+ configure-lto-plugin
@[ -f ./lto-plugin/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -44559,7 +44567,7 @@ maybe-html-lto-plugin:
maybe-html-lto-plugin: html-lto-plugin
html-lto-plugin: \
- configure-lto-plugin
+ configure-lto-plugin
@[ -f ./lto-plugin/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -44584,7 +44592,7 @@ maybe-TAGS-lto-plugin:
maybe-TAGS-lto-plugin: TAGS-lto-plugin
TAGS-lto-plugin: \
- configure-lto-plugin
+ configure-lto-plugin
@[ -f ./lto-plugin/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -44610,7 +44618,7 @@ maybe-install-info-lto-plugin: install-info-lto-plugin
install-info-lto-plugin: \
configure-lto-plugin \
- info-lto-plugin
+ info-lto-plugin
@[ -f ./lto-plugin/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -44636,7 +44644,7 @@ maybe-install-pdf-lto-plugin: install-pdf-lto-plugin
install-pdf-lto-plugin: \
configure-lto-plugin \
- pdf-lto-plugin
+ pdf-lto-plugin
@[ -f ./lto-plugin/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -44662,7 +44670,7 @@ maybe-install-html-lto-plugin: install-html-lto-plugin
install-html-lto-plugin: \
configure-lto-plugin \
- html-lto-plugin
+ html-lto-plugin
@[ -f ./lto-plugin/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -44687,7 +44695,7 @@ maybe-installcheck-lto-plugin:
maybe-installcheck-lto-plugin: installcheck-lto-plugin
installcheck-lto-plugin: \
- configure-lto-plugin
+ configure-lto-plugin
@[ -f ./lto-plugin/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -44711,7 +44719,7 @@ maybe-mostlyclean-lto-plugin:
@if lto-plugin
maybe-mostlyclean-lto-plugin: mostlyclean-lto-plugin
-mostlyclean-lto-plugin:
+mostlyclean-lto-plugin:
@[ -f ./lto-plugin/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -44735,7 +44743,7 @@ maybe-clean-lto-plugin:
@if lto-plugin
maybe-clean-lto-plugin: clean-lto-plugin
-clean-lto-plugin:
+clean-lto-plugin:
@[ -f ./lto-plugin/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -44759,7 +44767,7 @@ maybe-distclean-lto-plugin:
@if lto-plugin
maybe-distclean-lto-plugin: distclean-lto-plugin
-distclean-lto-plugin:
+distclean-lto-plugin:
@[ -f ./lto-plugin/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -44783,7 +44791,7 @@ maybe-maintainer-clean-lto-plugin:
@if lto-plugin
maybe-maintainer-clean-lto-plugin: maintainer-clean-lto-plugin
-maintainer-clean-lto-plugin:
+maintainer-clean-lto-plugin:
@[ -f ./lto-plugin/Makefile ] || exit 0; \
r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -44818,7 +44826,7 @@ configure-target-libstdc++-v3: stage_current
@endif gcc-bootstrap
@if target-libstdc++-v3
maybe-configure-target-libstdc++-v3: configure-target-libstdc++-v3
-configure-target-libstdc++-v3:
+configure-target-libstdc++-v3:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
echo "Checking multilib configuration for libstdc++-v3..."; \
@@ -45444,7 +45452,7 @@ maybe-info-target-libstdc++-v3:
maybe-info-target-libstdc++-v3: info-target-libstdc++-v3
info-target-libstdc++-v3: \
- configure-target-libstdc++-v3
+ configure-target-libstdc++-v3
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45470,7 +45478,7 @@ maybe-dvi-target-libstdc++-v3:
maybe-dvi-target-libstdc++-v3: dvi-target-libstdc++-v3
dvi-target-libstdc++-v3: \
- configure-target-libstdc++-v3
+ configure-target-libstdc++-v3
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45496,7 +45504,7 @@ maybe-pdf-target-libstdc++-v3:
maybe-pdf-target-libstdc++-v3: pdf-target-libstdc++-v3
pdf-target-libstdc++-v3: \
- configure-target-libstdc++-v3
+ configure-target-libstdc++-v3
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45522,7 +45530,7 @@ maybe-html-target-libstdc++-v3:
maybe-html-target-libstdc++-v3: html-target-libstdc++-v3
html-target-libstdc++-v3: \
- configure-target-libstdc++-v3
+ configure-target-libstdc++-v3
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45548,7 +45556,7 @@ maybe-TAGS-target-libstdc++-v3:
maybe-TAGS-target-libstdc++-v3: TAGS-target-libstdc++-v3
TAGS-target-libstdc++-v3: \
- configure-target-libstdc++-v3
+ configure-target-libstdc++-v3
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45575,7 +45583,7 @@ maybe-install-info-target-libstdc++-v3: install-info-target-libstdc++-v3
install-info-target-libstdc++-v3: \
configure-target-libstdc++-v3 \
- info-target-libstdc++-v3
+ info-target-libstdc++-v3
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45602,7 +45610,7 @@ maybe-install-pdf-target-libstdc++-v3: install-pdf-target-libstdc++-v3
install-pdf-target-libstdc++-v3: \
configure-target-libstdc++-v3 \
- pdf-target-libstdc++-v3
+ pdf-target-libstdc++-v3
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45629,7 +45637,7 @@ maybe-install-html-target-libstdc++-v3: install-html-target-libstdc++-v3
install-html-target-libstdc++-v3: \
configure-target-libstdc++-v3 \
- html-target-libstdc++-v3
+ html-target-libstdc++-v3
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45655,7 +45663,7 @@ maybe-installcheck-target-libstdc++-v3:
maybe-installcheck-target-libstdc++-v3: installcheck-target-libstdc++-v3
installcheck-target-libstdc++-v3: \
- configure-target-libstdc++-v3
+ configure-target-libstdc++-v3
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45680,7 +45688,7 @@ maybe-mostlyclean-target-libstdc++-v3:
@if target-libstdc++-v3
maybe-mostlyclean-target-libstdc++-v3: mostlyclean-target-libstdc++-v3
-mostlyclean-target-libstdc++-v3:
+mostlyclean-target-libstdc++-v3:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45705,7 +45713,7 @@ maybe-clean-target-libstdc++-v3:
@if target-libstdc++-v3
maybe-clean-target-libstdc++-v3: clean-target-libstdc++-v3
-clean-target-libstdc++-v3:
+clean-target-libstdc++-v3:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45730,7 +45738,7 @@ maybe-distclean-target-libstdc++-v3:
@if target-libstdc++-v3
maybe-distclean-target-libstdc++-v3: distclean-target-libstdc++-v3
-distclean-target-libstdc++-v3:
+distclean-target-libstdc++-v3:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45755,7 +45763,7 @@ maybe-maintainer-clean-target-libstdc++-v3:
@if target-libstdc++-v3
maybe-maintainer-clean-target-libstdc++-v3: maintainer-clean-target-libstdc++-v3
-maintainer-clean-target-libstdc++-v3:
+maintainer-clean-target-libstdc++-v3:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45786,7 +45794,7 @@ configure-target-libmudflap: stage_current
@endif gcc-bootstrap
@if target-libmudflap
maybe-configure-target-libmudflap: configure-target-libmudflap
-configure-target-libmudflap:
+configure-target-libmudflap:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -45886,7 +45894,7 @@ maybe-info-target-libmudflap:
maybe-info-target-libmudflap: info-target-libmudflap
info-target-libmudflap: \
- configure-target-libmudflap
+ configure-target-libmudflap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libmudflap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45912,7 +45920,7 @@ maybe-dvi-target-libmudflap:
maybe-dvi-target-libmudflap: dvi-target-libmudflap
dvi-target-libmudflap: \
- configure-target-libmudflap
+ configure-target-libmudflap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libmudflap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45938,7 +45946,7 @@ maybe-pdf-target-libmudflap:
maybe-pdf-target-libmudflap: pdf-target-libmudflap
pdf-target-libmudflap: \
- configure-target-libmudflap
+ configure-target-libmudflap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libmudflap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45964,7 +45972,7 @@ maybe-html-target-libmudflap:
maybe-html-target-libmudflap: html-target-libmudflap
html-target-libmudflap: \
- configure-target-libmudflap
+ configure-target-libmudflap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libmudflap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -45990,7 +45998,7 @@ maybe-TAGS-target-libmudflap:
maybe-TAGS-target-libmudflap: TAGS-target-libmudflap
TAGS-target-libmudflap: \
- configure-target-libmudflap
+ configure-target-libmudflap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libmudflap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46017,7 +46025,7 @@ maybe-install-info-target-libmudflap: install-info-target-libmudflap
install-info-target-libmudflap: \
configure-target-libmudflap \
- info-target-libmudflap
+ info-target-libmudflap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libmudflap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46044,7 +46052,7 @@ maybe-install-pdf-target-libmudflap: install-pdf-target-libmudflap
install-pdf-target-libmudflap: \
configure-target-libmudflap \
- pdf-target-libmudflap
+ pdf-target-libmudflap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libmudflap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46071,7 +46079,7 @@ maybe-install-html-target-libmudflap: install-html-target-libmudflap
install-html-target-libmudflap: \
configure-target-libmudflap \
- html-target-libmudflap
+ html-target-libmudflap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libmudflap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46097,7 +46105,7 @@ maybe-installcheck-target-libmudflap:
maybe-installcheck-target-libmudflap: installcheck-target-libmudflap
installcheck-target-libmudflap: \
- configure-target-libmudflap
+ configure-target-libmudflap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libmudflap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46122,7 +46130,7 @@ maybe-mostlyclean-target-libmudflap:
@if target-libmudflap
maybe-mostlyclean-target-libmudflap: mostlyclean-target-libmudflap
-mostlyclean-target-libmudflap:
+mostlyclean-target-libmudflap:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libmudflap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46147,7 +46155,7 @@ maybe-clean-target-libmudflap:
@if target-libmudflap
maybe-clean-target-libmudflap: clean-target-libmudflap
-clean-target-libmudflap:
+clean-target-libmudflap:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libmudflap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46172,7 +46180,7 @@ maybe-distclean-target-libmudflap:
@if target-libmudflap
maybe-distclean-target-libmudflap: distclean-target-libmudflap
-distclean-target-libmudflap:
+distclean-target-libmudflap:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libmudflap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46197,7 +46205,7 @@ maybe-maintainer-clean-target-libmudflap:
@if target-libmudflap
maybe-maintainer-clean-target-libmudflap: maintainer-clean-target-libmudflap
-maintainer-clean-target-libmudflap:
+maintainer-clean-target-libmudflap:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libmudflap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46228,7 +46236,7 @@ configure-target-libssp: stage_current
@endif gcc-bootstrap
@if target-libssp
maybe-configure-target-libssp: configure-target-libssp
-configure-target-libssp:
+configure-target-libssp:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -46328,7 +46336,7 @@ maybe-info-target-libssp:
maybe-info-target-libssp: info-target-libssp
info-target-libssp: \
- configure-target-libssp
+ configure-target-libssp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46354,7 +46362,7 @@ maybe-dvi-target-libssp:
maybe-dvi-target-libssp: dvi-target-libssp
dvi-target-libssp: \
- configure-target-libssp
+ configure-target-libssp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46380,7 +46388,7 @@ maybe-pdf-target-libssp:
maybe-pdf-target-libssp: pdf-target-libssp
pdf-target-libssp: \
- configure-target-libssp
+ configure-target-libssp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46406,7 +46414,7 @@ maybe-html-target-libssp:
maybe-html-target-libssp: html-target-libssp
html-target-libssp: \
- configure-target-libssp
+ configure-target-libssp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46432,7 +46440,7 @@ maybe-TAGS-target-libssp:
maybe-TAGS-target-libssp: TAGS-target-libssp
TAGS-target-libssp: \
- configure-target-libssp
+ configure-target-libssp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46459,7 +46467,7 @@ maybe-install-info-target-libssp: install-info-target-libssp
install-info-target-libssp: \
configure-target-libssp \
- info-target-libssp
+ info-target-libssp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46486,7 +46494,7 @@ maybe-install-pdf-target-libssp: install-pdf-target-libssp
install-pdf-target-libssp: \
configure-target-libssp \
- pdf-target-libssp
+ pdf-target-libssp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46513,7 +46521,7 @@ maybe-install-html-target-libssp: install-html-target-libssp
install-html-target-libssp: \
configure-target-libssp \
- html-target-libssp
+ html-target-libssp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46539,7 +46547,7 @@ maybe-installcheck-target-libssp:
maybe-installcheck-target-libssp: installcheck-target-libssp
installcheck-target-libssp: \
- configure-target-libssp
+ configure-target-libssp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46564,7 +46572,7 @@ maybe-mostlyclean-target-libssp:
@if target-libssp
maybe-mostlyclean-target-libssp: mostlyclean-target-libssp
-mostlyclean-target-libssp:
+mostlyclean-target-libssp:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46589,7 +46597,7 @@ maybe-clean-target-libssp:
@if target-libssp
maybe-clean-target-libssp: clean-target-libssp
-clean-target-libssp:
+clean-target-libssp:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46614,7 +46622,7 @@ maybe-distclean-target-libssp:
@if target-libssp
maybe-distclean-target-libssp: distclean-target-libssp
-distclean-target-libssp:
+distclean-target-libssp:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46639,7 +46647,7 @@ maybe-maintainer-clean-target-libssp:
@if target-libssp
maybe-maintainer-clean-target-libssp: maintainer-clean-target-libssp
-maintainer-clean-target-libssp:
+maintainer-clean-target-libssp:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46670,7 +46678,7 @@ configure-target-newlib: stage_current
@endif gcc-bootstrap
@if target-newlib
maybe-configure-target-newlib: configure-target-newlib
-configure-target-newlib:
+configure-target-newlib:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -46770,7 +46778,7 @@ maybe-info-target-newlib:
maybe-info-target-newlib: info-target-newlib
info-target-newlib: \
- configure-target-newlib
+ configure-target-newlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46796,7 +46804,7 @@ maybe-dvi-target-newlib:
maybe-dvi-target-newlib: dvi-target-newlib
dvi-target-newlib: \
- configure-target-newlib
+ configure-target-newlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46822,7 +46830,7 @@ maybe-pdf-target-newlib:
maybe-pdf-target-newlib: pdf-target-newlib
pdf-target-newlib: \
- configure-target-newlib
+ configure-target-newlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46848,7 +46856,7 @@ maybe-html-target-newlib:
maybe-html-target-newlib: html-target-newlib
html-target-newlib: \
- configure-target-newlib
+ configure-target-newlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46874,7 +46882,7 @@ maybe-TAGS-target-newlib:
maybe-TAGS-target-newlib: TAGS-target-newlib
TAGS-target-newlib: \
- configure-target-newlib
+ configure-target-newlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46901,7 +46909,7 @@ maybe-install-info-target-newlib: install-info-target-newlib
install-info-target-newlib: \
configure-target-newlib \
- info-target-newlib
+ info-target-newlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46928,7 +46936,7 @@ maybe-install-pdf-target-newlib: install-pdf-target-newlib
install-pdf-target-newlib: \
configure-target-newlib \
- pdf-target-newlib
+ pdf-target-newlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46955,7 +46963,7 @@ maybe-install-html-target-newlib: install-html-target-newlib
install-html-target-newlib: \
configure-target-newlib \
- html-target-newlib
+ html-target-newlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -46981,7 +46989,7 @@ maybe-installcheck-target-newlib:
maybe-installcheck-target-newlib: installcheck-target-newlib
installcheck-target-newlib: \
- configure-target-newlib
+ configure-target-newlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47006,7 +47014,7 @@ maybe-mostlyclean-target-newlib:
@if target-newlib
maybe-mostlyclean-target-newlib: mostlyclean-target-newlib
-mostlyclean-target-newlib:
+mostlyclean-target-newlib:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47031,7 +47039,7 @@ maybe-clean-target-newlib:
@if target-newlib
maybe-clean-target-newlib: clean-target-newlib
-clean-target-newlib:
+clean-target-newlib:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47056,7 +47064,7 @@ maybe-distclean-target-newlib:
@if target-newlib
maybe-distclean-target-newlib: distclean-target-newlib
-distclean-target-newlib:
+distclean-target-newlib:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47081,7 +47089,7 @@ maybe-maintainer-clean-target-newlib:
@if target-newlib
maybe-maintainer-clean-target-newlib: maintainer-clean-target-newlib
-maintainer-clean-target-newlib:
+maintainer-clean-target-newlib:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47112,7 +47120,7 @@ configure-target-libgcc: stage_current
@endif gcc-bootstrap
@if target-libgcc
maybe-configure-target-libgcc: configure-target-libgcc
-configure-target-libgcc:
+configure-target-libgcc:
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
echo "Checking multilib configuration for libgcc..."; \
@@ -47733,7 +47741,7 @@ maybe-info-target-libgcc:
maybe-info-target-libgcc: info-target-libgcc
info-target-libgcc: \
- configure-target-libgcc
+ configure-target-libgcc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47759,7 +47767,7 @@ maybe-dvi-target-libgcc:
maybe-dvi-target-libgcc: dvi-target-libgcc
dvi-target-libgcc: \
- configure-target-libgcc
+ configure-target-libgcc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47785,7 +47793,7 @@ maybe-pdf-target-libgcc:
maybe-pdf-target-libgcc: pdf-target-libgcc
pdf-target-libgcc: \
- configure-target-libgcc
+ configure-target-libgcc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47811,7 +47819,7 @@ maybe-html-target-libgcc:
maybe-html-target-libgcc: html-target-libgcc
html-target-libgcc: \
- configure-target-libgcc
+ configure-target-libgcc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47837,7 +47845,7 @@ maybe-TAGS-target-libgcc:
maybe-TAGS-target-libgcc: TAGS-target-libgcc
TAGS-target-libgcc: \
- configure-target-libgcc
+ configure-target-libgcc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47864,7 +47872,7 @@ maybe-install-info-target-libgcc: install-info-target-libgcc
install-info-target-libgcc: \
configure-target-libgcc \
- info-target-libgcc
+ info-target-libgcc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47891,7 +47899,7 @@ maybe-install-pdf-target-libgcc: install-pdf-target-libgcc
install-pdf-target-libgcc: \
configure-target-libgcc \
- pdf-target-libgcc
+ pdf-target-libgcc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47918,7 +47926,7 @@ maybe-install-html-target-libgcc: install-html-target-libgcc
install-html-target-libgcc: \
configure-target-libgcc \
- html-target-libgcc
+ html-target-libgcc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47944,7 +47952,7 @@ maybe-installcheck-target-libgcc:
maybe-installcheck-target-libgcc: installcheck-target-libgcc
installcheck-target-libgcc: \
- configure-target-libgcc
+ configure-target-libgcc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47969,7 +47977,7 @@ maybe-mostlyclean-target-libgcc:
@if target-libgcc
maybe-mostlyclean-target-libgcc: mostlyclean-target-libgcc
-mostlyclean-target-libgcc:
+mostlyclean-target-libgcc:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -47994,7 +48002,7 @@ maybe-clean-target-libgcc:
@if target-libgcc
maybe-clean-target-libgcc: clean-target-libgcc
-clean-target-libgcc:
+clean-target-libgcc:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48019,7 +48027,7 @@ maybe-distclean-target-libgcc:
@if target-libgcc
maybe-distclean-target-libgcc: distclean-target-libgcc
-distclean-target-libgcc:
+distclean-target-libgcc:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48044,7 +48052,7 @@ maybe-maintainer-clean-target-libgcc:
@if target-libgcc
maybe-maintainer-clean-target-libgcc: maintainer-clean-target-libgcc
-maintainer-clean-target-libgcc:
+maintainer-clean-target-libgcc:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48075,7 +48083,7 @@ configure-target-libgfortran: stage_current
@endif gcc-bootstrap
@if target-libgfortran
maybe-configure-target-libgfortran: configure-target-libgfortran
-configure-target-libgfortran:
+configure-target-libgfortran:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -48175,7 +48183,7 @@ maybe-info-target-libgfortran:
maybe-info-target-libgfortran: info-target-libgfortran
info-target-libgfortran: \
- configure-target-libgfortran
+ configure-target-libgfortran
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48201,7 +48209,7 @@ maybe-dvi-target-libgfortran:
maybe-dvi-target-libgfortran: dvi-target-libgfortran
dvi-target-libgfortran: \
- configure-target-libgfortran
+ configure-target-libgfortran
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48227,7 +48235,7 @@ maybe-pdf-target-libgfortran:
maybe-pdf-target-libgfortran: pdf-target-libgfortran
pdf-target-libgfortran: \
- configure-target-libgfortran
+ configure-target-libgfortran
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48253,7 +48261,7 @@ maybe-html-target-libgfortran:
maybe-html-target-libgfortran: html-target-libgfortran
html-target-libgfortran: \
- configure-target-libgfortran
+ configure-target-libgfortran
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48279,7 +48287,7 @@ maybe-TAGS-target-libgfortran:
maybe-TAGS-target-libgfortran: TAGS-target-libgfortran
TAGS-target-libgfortran: \
- configure-target-libgfortran
+ configure-target-libgfortran
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48306,7 +48314,7 @@ maybe-install-info-target-libgfortran: install-info-target-libgfortran
install-info-target-libgfortran: \
configure-target-libgfortran \
- info-target-libgfortran
+ info-target-libgfortran
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48333,7 +48341,7 @@ maybe-install-pdf-target-libgfortran: install-pdf-target-libgfortran
install-pdf-target-libgfortran: \
configure-target-libgfortran \
- pdf-target-libgfortran
+ pdf-target-libgfortran
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48360,7 +48368,7 @@ maybe-install-html-target-libgfortran: install-html-target-libgfortran
install-html-target-libgfortran: \
configure-target-libgfortran \
- html-target-libgfortran
+ html-target-libgfortran
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48386,7 +48394,7 @@ maybe-installcheck-target-libgfortran:
maybe-installcheck-target-libgfortran: installcheck-target-libgfortran
installcheck-target-libgfortran: \
- configure-target-libgfortran
+ configure-target-libgfortran
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48411,7 +48419,7 @@ maybe-mostlyclean-target-libgfortran:
@if target-libgfortran
maybe-mostlyclean-target-libgfortran: mostlyclean-target-libgfortran
-mostlyclean-target-libgfortran:
+mostlyclean-target-libgfortran:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48436,7 +48444,7 @@ maybe-clean-target-libgfortran:
@if target-libgfortran
maybe-clean-target-libgfortran: clean-target-libgfortran
-clean-target-libgfortran:
+clean-target-libgfortran:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48461,7 +48469,7 @@ maybe-distclean-target-libgfortran:
@if target-libgfortran
maybe-distclean-target-libgfortran: distclean-target-libgfortran
-distclean-target-libgfortran:
+distclean-target-libgfortran:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48486,7 +48494,7 @@ maybe-maintainer-clean-target-libgfortran:
@if target-libgfortran
maybe-maintainer-clean-target-libgfortran: maintainer-clean-target-libgfortran
-maintainer-clean-target-libgfortran:
+maintainer-clean-target-libgfortran:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48517,7 +48525,7 @@ configure-target-libobjc: stage_current
@endif gcc-bootstrap
@if target-libobjc
maybe-configure-target-libobjc: configure-target-libobjc
-configure-target-libobjc:
+configure-target-libobjc:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -48617,7 +48625,7 @@ maybe-info-target-libobjc:
maybe-info-target-libobjc: info-target-libobjc
info-target-libobjc: \
- configure-target-libobjc
+ configure-target-libobjc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48643,7 +48651,7 @@ maybe-dvi-target-libobjc:
maybe-dvi-target-libobjc: dvi-target-libobjc
dvi-target-libobjc: \
- configure-target-libobjc
+ configure-target-libobjc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48669,7 +48677,7 @@ maybe-pdf-target-libobjc:
maybe-pdf-target-libobjc: pdf-target-libobjc
pdf-target-libobjc: \
- configure-target-libobjc
+ configure-target-libobjc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48695,7 +48703,7 @@ maybe-html-target-libobjc:
maybe-html-target-libobjc: html-target-libobjc
html-target-libobjc: \
- configure-target-libobjc
+ configure-target-libobjc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48721,7 +48729,7 @@ maybe-TAGS-target-libobjc:
maybe-TAGS-target-libobjc: TAGS-target-libobjc
TAGS-target-libobjc: \
- configure-target-libobjc
+ configure-target-libobjc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48748,7 +48756,7 @@ maybe-install-info-target-libobjc: install-info-target-libobjc
install-info-target-libobjc: \
configure-target-libobjc \
- info-target-libobjc
+ info-target-libobjc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48775,7 +48783,7 @@ maybe-install-pdf-target-libobjc: install-pdf-target-libobjc
install-pdf-target-libobjc: \
configure-target-libobjc \
- pdf-target-libobjc
+ pdf-target-libobjc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48802,7 +48810,7 @@ maybe-install-html-target-libobjc: install-html-target-libobjc
install-html-target-libobjc: \
configure-target-libobjc \
- html-target-libobjc
+ html-target-libobjc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48828,7 +48836,7 @@ maybe-installcheck-target-libobjc:
maybe-installcheck-target-libobjc: installcheck-target-libobjc
installcheck-target-libobjc: \
- configure-target-libobjc
+ configure-target-libobjc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48853,7 +48861,7 @@ maybe-mostlyclean-target-libobjc:
@if target-libobjc
maybe-mostlyclean-target-libobjc: mostlyclean-target-libobjc
-mostlyclean-target-libobjc:
+mostlyclean-target-libobjc:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48878,7 +48886,7 @@ maybe-clean-target-libobjc:
@if target-libobjc
maybe-clean-target-libobjc: clean-target-libobjc
-clean-target-libobjc:
+clean-target-libobjc:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48903,7 +48911,7 @@ maybe-distclean-target-libobjc:
@if target-libobjc
maybe-distclean-target-libobjc: distclean-target-libobjc
-distclean-target-libobjc:
+distclean-target-libobjc:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48928,7 +48936,7 @@ maybe-maintainer-clean-target-libobjc:
@if target-libobjc
maybe-maintainer-clean-target-libobjc: maintainer-clean-target-libobjc
-maintainer-clean-target-libobjc:
+maintainer-clean-target-libobjc:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libobjc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -48959,7 +48967,7 @@ configure-target-libtermcap: stage_current
@endif gcc-bootstrap
@if target-libtermcap
maybe-configure-target-libtermcap: configure-target-libtermcap
-configure-target-libtermcap:
+configure-target-libtermcap:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -49054,7 +49062,7 @@ maybe-info-target-libtermcap:
maybe-info-target-libtermcap: info-target-libtermcap
info-target-libtermcap: \
- configure-target-libtermcap
+ configure-target-libtermcap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libtermcap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49080,7 +49088,7 @@ maybe-dvi-target-libtermcap:
maybe-dvi-target-libtermcap: dvi-target-libtermcap
dvi-target-libtermcap: \
- configure-target-libtermcap
+ configure-target-libtermcap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libtermcap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49106,7 +49114,7 @@ maybe-pdf-target-libtermcap:
maybe-pdf-target-libtermcap: pdf-target-libtermcap
pdf-target-libtermcap: \
- configure-target-libtermcap
+ configure-target-libtermcap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libtermcap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49132,7 +49140,7 @@ maybe-html-target-libtermcap:
maybe-html-target-libtermcap: html-target-libtermcap
html-target-libtermcap: \
- configure-target-libtermcap
+ configure-target-libtermcap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libtermcap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49158,7 +49166,7 @@ maybe-TAGS-target-libtermcap:
maybe-TAGS-target-libtermcap: TAGS-target-libtermcap
TAGS-target-libtermcap: \
- configure-target-libtermcap
+ configure-target-libtermcap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libtermcap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49185,7 +49193,7 @@ maybe-install-info-target-libtermcap: install-info-target-libtermcap
install-info-target-libtermcap: \
configure-target-libtermcap \
- info-target-libtermcap
+ info-target-libtermcap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libtermcap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49212,7 +49220,7 @@ maybe-install-pdf-target-libtermcap: install-pdf-target-libtermcap
install-pdf-target-libtermcap: \
configure-target-libtermcap \
- pdf-target-libtermcap
+ pdf-target-libtermcap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libtermcap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49239,7 +49247,7 @@ maybe-install-html-target-libtermcap: install-html-target-libtermcap
install-html-target-libtermcap: \
configure-target-libtermcap \
- html-target-libtermcap
+ html-target-libtermcap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libtermcap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49265,7 +49273,7 @@ maybe-installcheck-target-libtermcap:
maybe-installcheck-target-libtermcap: installcheck-target-libtermcap
installcheck-target-libtermcap: \
- configure-target-libtermcap
+ configure-target-libtermcap
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libtermcap/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49336,7 +49344,7 @@ configure-target-winsup: stage_current
@endif gcc-bootstrap
@if target-winsup
maybe-configure-target-winsup: configure-target-winsup
-configure-target-winsup:
+configure-target-winsup:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -49436,7 +49444,7 @@ maybe-info-target-winsup:
maybe-info-target-winsup: info-target-winsup
info-target-winsup: \
- configure-target-winsup
+ configure-target-winsup
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49462,7 +49470,7 @@ maybe-dvi-target-winsup:
maybe-dvi-target-winsup: dvi-target-winsup
dvi-target-winsup: \
- configure-target-winsup
+ configure-target-winsup
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49488,7 +49496,7 @@ maybe-pdf-target-winsup:
maybe-pdf-target-winsup: pdf-target-winsup
pdf-target-winsup: \
- configure-target-winsup
+ configure-target-winsup
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49514,7 +49522,7 @@ maybe-html-target-winsup:
maybe-html-target-winsup: html-target-winsup
html-target-winsup: \
- configure-target-winsup
+ configure-target-winsup
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49540,7 +49548,7 @@ maybe-TAGS-target-winsup:
maybe-TAGS-target-winsup: TAGS-target-winsup
TAGS-target-winsup: \
- configure-target-winsup
+ configure-target-winsup
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49567,7 +49575,7 @@ maybe-install-info-target-winsup: install-info-target-winsup
install-info-target-winsup: \
configure-target-winsup \
- info-target-winsup
+ info-target-winsup
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49594,7 +49602,7 @@ maybe-install-pdf-target-winsup: install-pdf-target-winsup
install-pdf-target-winsup: \
configure-target-winsup \
- pdf-target-winsup
+ pdf-target-winsup
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49621,7 +49629,7 @@ maybe-install-html-target-winsup: install-html-target-winsup
install-html-target-winsup: \
configure-target-winsup \
- html-target-winsup
+ html-target-winsup
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49647,7 +49655,7 @@ maybe-installcheck-target-winsup:
maybe-installcheck-target-winsup: installcheck-target-winsup
installcheck-target-winsup: \
- configure-target-winsup
+ configure-target-winsup
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49672,7 +49680,7 @@ maybe-mostlyclean-target-winsup:
@if target-winsup
maybe-mostlyclean-target-winsup: mostlyclean-target-winsup
-mostlyclean-target-winsup:
+mostlyclean-target-winsup:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49697,7 +49705,7 @@ maybe-clean-target-winsup:
@if target-winsup
maybe-clean-target-winsup: clean-target-winsup
-clean-target-winsup:
+clean-target-winsup:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49722,7 +49730,7 @@ maybe-distclean-target-winsup:
@if target-winsup
maybe-distclean-target-winsup: distclean-target-winsup
-distclean-target-winsup:
+distclean-target-winsup:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49747,7 +49755,7 @@ maybe-maintainer-clean-target-winsup:
@if target-winsup
maybe-maintainer-clean-target-winsup: maintainer-clean-target-winsup
-maintainer-clean-target-winsup:
+maintainer-clean-target-winsup:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49778,7 +49786,7 @@ configure-target-libgloss: stage_current
@endif gcc-bootstrap
@if target-libgloss
maybe-configure-target-libgloss: configure-target-libgloss
-configure-target-libgloss:
+configure-target-libgloss:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -49873,7 +49881,7 @@ maybe-info-target-libgloss:
maybe-info-target-libgloss: info-target-libgloss
info-target-libgloss: \
- configure-target-libgloss
+ configure-target-libgloss
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49899,7 +49907,7 @@ maybe-dvi-target-libgloss:
maybe-dvi-target-libgloss: dvi-target-libgloss
dvi-target-libgloss: \
- configure-target-libgloss
+ configure-target-libgloss
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49925,7 +49933,7 @@ maybe-pdf-target-libgloss:
maybe-pdf-target-libgloss: pdf-target-libgloss
pdf-target-libgloss: \
- configure-target-libgloss
+ configure-target-libgloss
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49951,7 +49959,7 @@ maybe-html-target-libgloss:
maybe-html-target-libgloss: html-target-libgloss
html-target-libgloss: \
- configure-target-libgloss
+ configure-target-libgloss
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -49977,7 +49985,7 @@ maybe-TAGS-target-libgloss:
maybe-TAGS-target-libgloss: TAGS-target-libgloss
TAGS-target-libgloss: \
- configure-target-libgloss
+ configure-target-libgloss
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50004,7 +50012,7 @@ maybe-install-info-target-libgloss: install-info-target-libgloss
install-info-target-libgloss: \
configure-target-libgloss \
- info-target-libgloss
+ info-target-libgloss
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50031,7 +50039,7 @@ maybe-install-pdf-target-libgloss: install-pdf-target-libgloss
install-pdf-target-libgloss: \
configure-target-libgloss \
- pdf-target-libgloss
+ pdf-target-libgloss
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50058,7 +50066,7 @@ maybe-install-html-target-libgloss: install-html-target-libgloss
install-html-target-libgloss: \
configure-target-libgloss \
- html-target-libgloss
+ html-target-libgloss
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50084,7 +50092,7 @@ maybe-installcheck-target-libgloss:
maybe-installcheck-target-libgloss: installcheck-target-libgloss
installcheck-target-libgloss: \
- configure-target-libgloss
+ configure-target-libgloss
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50109,7 +50117,7 @@ maybe-mostlyclean-target-libgloss:
@if target-libgloss
maybe-mostlyclean-target-libgloss: mostlyclean-target-libgloss
-mostlyclean-target-libgloss:
+mostlyclean-target-libgloss:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50134,7 +50142,7 @@ maybe-clean-target-libgloss:
@if target-libgloss
maybe-clean-target-libgloss: clean-target-libgloss
-clean-target-libgloss:
+clean-target-libgloss:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50159,7 +50167,7 @@ maybe-distclean-target-libgloss:
@if target-libgloss
maybe-distclean-target-libgloss: distclean-target-libgloss
-distclean-target-libgloss:
+distclean-target-libgloss:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50184,7 +50192,7 @@ maybe-maintainer-clean-target-libgloss:
@if target-libgloss
maybe-maintainer-clean-target-libgloss: maintainer-clean-target-libgloss
-maintainer-clean-target-libgloss:
+maintainer-clean-target-libgloss:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50215,7 +50223,7 @@ configure-target-libiberty: stage_current
@endif gcc-bootstrap
@if target-libiberty
maybe-configure-target-libiberty: configure-target-libiberty
-configure-target-libiberty:
+configure-target-libiberty:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -50315,7 +50323,7 @@ maybe-info-target-libiberty:
maybe-info-target-libiberty: info-target-libiberty
info-target-libiberty: \
- configure-target-libiberty
+ configure-target-libiberty
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libiberty/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50341,7 +50349,7 @@ maybe-dvi-target-libiberty:
maybe-dvi-target-libiberty: dvi-target-libiberty
dvi-target-libiberty: \
- configure-target-libiberty
+ configure-target-libiberty
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libiberty/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50367,7 +50375,7 @@ maybe-pdf-target-libiberty:
maybe-pdf-target-libiberty: pdf-target-libiberty
pdf-target-libiberty: \
- configure-target-libiberty
+ configure-target-libiberty
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libiberty/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50393,7 +50401,7 @@ maybe-html-target-libiberty:
maybe-html-target-libiberty: html-target-libiberty
html-target-libiberty: \
- configure-target-libiberty
+ configure-target-libiberty
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libiberty/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50419,7 +50427,7 @@ maybe-TAGS-target-libiberty:
maybe-TAGS-target-libiberty: TAGS-target-libiberty
TAGS-target-libiberty: \
- configure-target-libiberty
+ configure-target-libiberty
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libiberty/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50446,7 +50454,7 @@ maybe-install-info-target-libiberty: install-info-target-libiberty
install-info-target-libiberty: \
configure-target-libiberty \
- info-target-libiberty
+ info-target-libiberty
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libiberty/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50473,7 +50481,7 @@ maybe-install-pdf-target-libiberty: install-pdf-target-libiberty
install-pdf-target-libiberty: \
configure-target-libiberty \
- pdf-target-libiberty
+ pdf-target-libiberty
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libiberty/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50500,7 +50508,7 @@ maybe-install-html-target-libiberty: install-html-target-libiberty
install-html-target-libiberty: \
configure-target-libiberty \
- html-target-libiberty
+ html-target-libiberty
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libiberty/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50526,7 +50534,7 @@ maybe-installcheck-target-libiberty:
maybe-installcheck-target-libiberty: installcheck-target-libiberty
installcheck-target-libiberty: \
- configure-target-libiberty
+ configure-target-libiberty
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libiberty/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50551,7 +50559,7 @@ maybe-mostlyclean-target-libiberty:
@if target-libiberty
maybe-mostlyclean-target-libiberty: mostlyclean-target-libiberty
-mostlyclean-target-libiberty:
+mostlyclean-target-libiberty:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libiberty/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50576,7 +50584,7 @@ maybe-clean-target-libiberty:
@if target-libiberty
maybe-clean-target-libiberty: clean-target-libiberty
-clean-target-libiberty:
+clean-target-libiberty:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libiberty/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50601,7 +50609,7 @@ maybe-distclean-target-libiberty:
@if target-libiberty
maybe-distclean-target-libiberty: distclean-target-libiberty
-distclean-target-libiberty:
+distclean-target-libiberty:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libiberty/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50626,7 +50634,7 @@ maybe-maintainer-clean-target-libiberty:
@if target-libiberty
maybe-maintainer-clean-target-libiberty: maintainer-clean-target-libiberty
-maintainer-clean-target-libiberty:
+maintainer-clean-target-libiberty:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libiberty/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50657,7 +50665,7 @@ configure-target-gperf: stage_current
@endif gcc-bootstrap
@if target-gperf
maybe-configure-target-gperf: configure-target-gperf
-configure-target-gperf:
+configure-target-gperf:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -50757,7 +50765,7 @@ maybe-info-target-gperf:
maybe-info-target-gperf: info-target-gperf
info-target-gperf: \
- configure-target-gperf
+ configure-target-gperf
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/gperf/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50783,7 +50791,7 @@ maybe-dvi-target-gperf:
maybe-dvi-target-gperf: dvi-target-gperf
dvi-target-gperf: \
- configure-target-gperf
+ configure-target-gperf
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/gperf/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50809,7 +50817,7 @@ maybe-pdf-target-gperf:
maybe-pdf-target-gperf: pdf-target-gperf
pdf-target-gperf: \
- configure-target-gperf
+ configure-target-gperf
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/gperf/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50835,7 +50843,7 @@ maybe-html-target-gperf:
maybe-html-target-gperf: html-target-gperf
html-target-gperf: \
- configure-target-gperf
+ configure-target-gperf
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/gperf/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50861,7 +50869,7 @@ maybe-TAGS-target-gperf:
maybe-TAGS-target-gperf: TAGS-target-gperf
TAGS-target-gperf: \
- configure-target-gperf
+ configure-target-gperf
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/gperf/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50888,7 +50896,7 @@ maybe-install-info-target-gperf: install-info-target-gperf
install-info-target-gperf: \
configure-target-gperf \
- info-target-gperf
+ info-target-gperf
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/gperf/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50915,7 +50923,7 @@ maybe-install-pdf-target-gperf: install-pdf-target-gperf
install-pdf-target-gperf: \
configure-target-gperf \
- pdf-target-gperf
+ pdf-target-gperf
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/gperf/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50942,7 +50950,7 @@ maybe-install-html-target-gperf: install-html-target-gperf
install-html-target-gperf: \
configure-target-gperf \
- html-target-gperf
+ html-target-gperf
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/gperf/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50968,7 +50976,7 @@ maybe-installcheck-target-gperf:
maybe-installcheck-target-gperf: installcheck-target-gperf
installcheck-target-gperf: \
- configure-target-gperf
+ configure-target-gperf
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/gperf/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -50993,7 +51001,7 @@ maybe-mostlyclean-target-gperf:
@if target-gperf
maybe-mostlyclean-target-gperf: mostlyclean-target-gperf
-mostlyclean-target-gperf:
+mostlyclean-target-gperf:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/gperf/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51018,7 +51026,7 @@ maybe-clean-target-gperf:
@if target-gperf
maybe-clean-target-gperf: clean-target-gperf
-clean-target-gperf:
+clean-target-gperf:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/gperf/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51043,7 +51051,7 @@ maybe-distclean-target-gperf:
@if target-gperf
maybe-distclean-target-gperf: distclean-target-gperf
-distclean-target-gperf:
+distclean-target-gperf:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/gperf/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51068,7 +51076,7 @@ maybe-maintainer-clean-target-gperf:
@if target-gperf
maybe-maintainer-clean-target-gperf: maintainer-clean-target-gperf
-maintainer-clean-target-gperf:
+maintainer-clean-target-gperf:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/gperf/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51099,7 +51107,7 @@ configure-target-examples: stage_current
@endif gcc-bootstrap
@if target-examples
maybe-configure-target-examples: configure-target-examples
-configure-target-examples:
+configure-target-examples:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -51189,7 +51197,7 @@ maybe-info-target-examples:
maybe-info-target-examples: info-target-examples
info-target-examples: \
- configure-target-examples
+ configure-target-examples
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/examples/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51215,7 +51223,7 @@ maybe-dvi-target-examples:
maybe-dvi-target-examples: dvi-target-examples
dvi-target-examples: \
- configure-target-examples
+ configure-target-examples
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/examples/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51241,7 +51249,7 @@ maybe-pdf-target-examples:
maybe-pdf-target-examples: pdf-target-examples
pdf-target-examples: \
- configure-target-examples
+ configure-target-examples
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/examples/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51267,7 +51275,7 @@ maybe-html-target-examples:
maybe-html-target-examples: html-target-examples
html-target-examples: \
- configure-target-examples
+ configure-target-examples
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/examples/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51293,7 +51301,7 @@ maybe-TAGS-target-examples:
maybe-TAGS-target-examples: TAGS-target-examples
TAGS-target-examples: \
- configure-target-examples
+ configure-target-examples
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/examples/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51320,7 +51328,7 @@ maybe-install-info-target-examples: install-info-target-examples
install-info-target-examples: \
configure-target-examples \
- info-target-examples
+ info-target-examples
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/examples/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51347,7 +51355,7 @@ maybe-install-pdf-target-examples: install-pdf-target-examples
install-pdf-target-examples: \
configure-target-examples \
- pdf-target-examples
+ pdf-target-examples
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/examples/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51374,7 +51382,7 @@ maybe-install-html-target-examples: install-html-target-examples
install-html-target-examples: \
configure-target-examples \
- html-target-examples
+ html-target-examples
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/examples/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51400,7 +51408,7 @@ maybe-installcheck-target-examples:
maybe-installcheck-target-examples: installcheck-target-examples
installcheck-target-examples: \
- configure-target-examples
+ configure-target-examples
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/examples/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51425,7 +51433,7 @@ maybe-mostlyclean-target-examples:
@if target-examples
maybe-mostlyclean-target-examples: mostlyclean-target-examples
-mostlyclean-target-examples:
+mostlyclean-target-examples:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/examples/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51450,7 +51458,7 @@ maybe-clean-target-examples:
@if target-examples
maybe-clean-target-examples: clean-target-examples
-clean-target-examples:
+clean-target-examples:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/examples/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51475,7 +51483,7 @@ maybe-distclean-target-examples:
@if target-examples
maybe-distclean-target-examples: distclean-target-examples
-distclean-target-examples:
+distclean-target-examples:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/examples/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51500,7 +51508,7 @@ maybe-maintainer-clean-target-examples:
@if target-examples
maybe-maintainer-clean-target-examples: maintainer-clean-target-examples
-maintainer-clean-target-examples:
+maintainer-clean-target-examples:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/examples/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51531,7 +51539,7 @@ configure-target-libffi: stage_current
@endif gcc-bootstrap
@if target-libffi
maybe-configure-target-libffi: configure-target-libffi
-configure-target-libffi:
+configure-target-libffi:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -51631,7 +51639,7 @@ maybe-info-target-libffi:
maybe-info-target-libffi: info-target-libffi
info-target-libffi: \
- configure-target-libffi
+ configure-target-libffi
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51657,7 +51665,7 @@ maybe-dvi-target-libffi:
maybe-dvi-target-libffi: dvi-target-libffi
dvi-target-libffi: \
- configure-target-libffi
+ configure-target-libffi
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51683,7 +51691,7 @@ maybe-pdf-target-libffi:
maybe-pdf-target-libffi: pdf-target-libffi
pdf-target-libffi: \
- configure-target-libffi
+ configure-target-libffi
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51709,7 +51717,7 @@ maybe-html-target-libffi:
maybe-html-target-libffi: html-target-libffi
html-target-libffi: \
- configure-target-libffi
+ configure-target-libffi
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51735,7 +51743,7 @@ maybe-TAGS-target-libffi:
maybe-TAGS-target-libffi: TAGS-target-libffi
TAGS-target-libffi: \
- configure-target-libffi
+ configure-target-libffi
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51762,7 +51770,7 @@ maybe-install-info-target-libffi: install-info-target-libffi
install-info-target-libffi: \
configure-target-libffi \
- info-target-libffi
+ info-target-libffi
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51789,7 +51797,7 @@ maybe-install-pdf-target-libffi: install-pdf-target-libffi
install-pdf-target-libffi: \
configure-target-libffi \
- pdf-target-libffi
+ pdf-target-libffi
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51816,7 +51824,7 @@ maybe-install-html-target-libffi: install-html-target-libffi
install-html-target-libffi: \
configure-target-libffi \
- html-target-libffi
+ html-target-libffi
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51842,7 +51850,7 @@ maybe-installcheck-target-libffi:
maybe-installcheck-target-libffi: installcheck-target-libffi
installcheck-target-libffi: \
- configure-target-libffi
+ configure-target-libffi
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51867,7 +51875,7 @@ maybe-mostlyclean-target-libffi:
@if target-libffi
maybe-mostlyclean-target-libffi: mostlyclean-target-libffi
-mostlyclean-target-libffi:
+mostlyclean-target-libffi:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51892,7 +51900,7 @@ maybe-clean-target-libffi:
@if target-libffi
maybe-clean-target-libffi: clean-target-libffi
-clean-target-libffi:
+clean-target-libffi:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51917,7 +51925,7 @@ maybe-distclean-target-libffi:
@if target-libffi
maybe-distclean-target-libffi: distclean-target-libffi
-distclean-target-libffi:
+distclean-target-libffi:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51942,7 +51950,7 @@ maybe-maintainer-clean-target-libffi:
@if target-libffi
maybe-maintainer-clean-target-libffi: maintainer-clean-target-libffi
-maintainer-clean-target-libffi:
+maintainer-clean-target-libffi:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -51973,7 +51981,7 @@ configure-target-libjava: stage_current
@endif gcc-bootstrap
@if target-libjava
maybe-configure-target-libjava: configure-target-libjava
-configure-target-libjava:
+configure-target-libjava:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -52073,7 +52081,7 @@ maybe-info-target-libjava:
maybe-info-target-libjava: info-target-libjava
info-target-libjava: \
- configure-target-libjava
+ configure-target-libjava
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52099,7 +52107,7 @@ maybe-dvi-target-libjava:
maybe-dvi-target-libjava: dvi-target-libjava
dvi-target-libjava: \
- configure-target-libjava
+ configure-target-libjava
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52125,7 +52133,7 @@ maybe-pdf-target-libjava:
maybe-pdf-target-libjava: pdf-target-libjava
pdf-target-libjava: \
- configure-target-libjava
+ configure-target-libjava
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52151,7 +52159,7 @@ maybe-html-target-libjava:
maybe-html-target-libjava: html-target-libjava
html-target-libjava: \
- configure-target-libjava
+ configure-target-libjava
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52177,7 +52185,7 @@ maybe-TAGS-target-libjava:
maybe-TAGS-target-libjava: TAGS-target-libjava
TAGS-target-libjava: \
- configure-target-libjava
+ configure-target-libjava
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52204,7 +52212,7 @@ maybe-install-info-target-libjava: install-info-target-libjava
install-info-target-libjava: \
configure-target-libjava \
- info-target-libjava
+ info-target-libjava
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52231,7 +52239,7 @@ maybe-install-pdf-target-libjava: install-pdf-target-libjava
install-pdf-target-libjava: \
configure-target-libjava \
- pdf-target-libjava
+ pdf-target-libjava
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52258,7 +52266,7 @@ maybe-install-html-target-libjava: install-html-target-libjava
install-html-target-libjava: \
configure-target-libjava \
- html-target-libjava
+ html-target-libjava
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52284,7 +52292,7 @@ maybe-installcheck-target-libjava:
maybe-installcheck-target-libjava: installcheck-target-libjava
installcheck-target-libjava: \
- configure-target-libjava
+ configure-target-libjava
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52309,7 +52317,7 @@ maybe-mostlyclean-target-libjava:
@if target-libjava
maybe-mostlyclean-target-libjava: mostlyclean-target-libjava
-mostlyclean-target-libjava:
+mostlyclean-target-libjava:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52334,7 +52342,7 @@ maybe-clean-target-libjava:
@if target-libjava
maybe-clean-target-libjava: clean-target-libjava
-clean-target-libjava:
+clean-target-libjava:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52359,7 +52367,7 @@ maybe-distclean-target-libjava:
@if target-libjava
maybe-distclean-target-libjava: distclean-target-libjava
-distclean-target-libjava:
+distclean-target-libjava:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52384,7 +52392,7 @@ maybe-maintainer-clean-target-libjava:
@if target-libjava
maybe-maintainer-clean-target-libjava: maintainer-clean-target-libjava
-maintainer-clean-target-libjava:
+maintainer-clean-target-libjava:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52415,7 +52423,7 @@ configure-target-zlib: stage_current
@endif gcc-bootstrap
@if target-zlib
maybe-configure-target-zlib: configure-target-zlib
-configure-target-zlib:
+configure-target-zlib:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -52515,7 +52523,7 @@ maybe-info-target-zlib:
maybe-info-target-zlib: info-target-zlib
info-target-zlib: \
- configure-target-zlib
+ configure-target-zlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52541,7 +52549,7 @@ maybe-dvi-target-zlib:
maybe-dvi-target-zlib: dvi-target-zlib
dvi-target-zlib: \
- configure-target-zlib
+ configure-target-zlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52567,7 +52575,7 @@ maybe-pdf-target-zlib:
maybe-pdf-target-zlib: pdf-target-zlib
pdf-target-zlib: \
- configure-target-zlib
+ configure-target-zlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52593,7 +52601,7 @@ maybe-html-target-zlib:
maybe-html-target-zlib: html-target-zlib
html-target-zlib: \
- configure-target-zlib
+ configure-target-zlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52619,7 +52627,7 @@ maybe-TAGS-target-zlib:
maybe-TAGS-target-zlib: TAGS-target-zlib
TAGS-target-zlib: \
- configure-target-zlib
+ configure-target-zlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52646,7 +52654,7 @@ maybe-install-info-target-zlib: install-info-target-zlib
install-info-target-zlib: \
configure-target-zlib \
- info-target-zlib
+ info-target-zlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52673,7 +52681,7 @@ maybe-install-pdf-target-zlib: install-pdf-target-zlib
install-pdf-target-zlib: \
configure-target-zlib \
- pdf-target-zlib
+ pdf-target-zlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52700,7 +52708,7 @@ maybe-install-html-target-zlib: install-html-target-zlib
install-html-target-zlib: \
configure-target-zlib \
- html-target-zlib
+ html-target-zlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52726,7 +52734,7 @@ maybe-installcheck-target-zlib:
maybe-installcheck-target-zlib: installcheck-target-zlib
installcheck-target-zlib: \
- configure-target-zlib
+ configure-target-zlib
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52751,7 +52759,7 @@ maybe-mostlyclean-target-zlib:
@if target-zlib
maybe-mostlyclean-target-zlib: mostlyclean-target-zlib
-mostlyclean-target-zlib:
+mostlyclean-target-zlib:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52776,7 +52784,7 @@ maybe-clean-target-zlib:
@if target-zlib
maybe-clean-target-zlib: clean-target-zlib
-clean-target-zlib:
+clean-target-zlib:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52801,7 +52809,7 @@ maybe-distclean-target-zlib:
@if target-zlib
maybe-distclean-target-zlib: distclean-target-zlib
-distclean-target-zlib:
+distclean-target-zlib:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52826,7 +52834,7 @@ maybe-maintainer-clean-target-zlib:
@if target-zlib
maybe-maintainer-clean-target-zlib: maintainer-clean-target-zlib
-maintainer-clean-target-zlib:
+maintainer-clean-target-zlib:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52857,7 +52865,7 @@ configure-target-boehm-gc: stage_current
@endif gcc-bootstrap
@if target-boehm-gc
maybe-configure-target-boehm-gc: configure-target-boehm-gc
-configure-target-boehm-gc:
+configure-target-boehm-gc:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -52957,7 +52965,7 @@ maybe-info-target-boehm-gc:
maybe-info-target-boehm-gc: info-target-boehm-gc
info-target-boehm-gc: \
- configure-target-boehm-gc
+ configure-target-boehm-gc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/boehm-gc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -52983,7 +52991,7 @@ maybe-dvi-target-boehm-gc:
maybe-dvi-target-boehm-gc: dvi-target-boehm-gc
dvi-target-boehm-gc: \
- configure-target-boehm-gc
+ configure-target-boehm-gc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/boehm-gc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53009,7 +53017,7 @@ maybe-pdf-target-boehm-gc:
maybe-pdf-target-boehm-gc: pdf-target-boehm-gc
pdf-target-boehm-gc: \
- configure-target-boehm-gc
+ configure-target-boehm-gc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/boehm-gc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53035,7 +53043,7 @@ maybe-html-target-boehm-gc:
maybe-html-target-boehm-gc: html-target-boehm-gc
html-target-boehm-gc: \
- configure-target-boehm-gc
+ configure-target-boehm-gc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/boehm-gc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53061,7 +53069,7 @@ maybe-TAGS-target-boehm-gc:
maybe-TAGS-target-boehm-gc: TAGS-target-boehm-gc
TAGS-target-boehm-gc: \
- configure-target-boehm-gc
+ configure-target-boehm-gc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/boehm-gc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53088,7 +53096,7 @@ maybe-install-info-target-boehm-gc: install-info-target-boehm-gc
install-info-target-boehm-gc: \
configure-target-boehm-gc \
- info-target-boehm-gc
+ info-target-boehm-gc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/boehm-gc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53115,7 +53123,7 @@ maybe-install-pdf-target-boehm-gc: install-pdf-target-boehm-gc
install-pdf-target-boehm-gc: \
configure-target-boehm-gc \
- pdf-target-boehm-gc
+ pdf-target-boehm-gc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/boehm-gc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53142,7 +53150,7 @@ maybe-install-html-target-boehm-gc: install-html-target-boehm-gc
install-html-target-boehm-gc: \
configure-target-boehm-gc \
- html-target-boehm-gc
+ html-target-boehm-gc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/boehm-gc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53168,7 +53176,7 @@ maybe-installcheck-target-boehm-gc:
maybe-installcheck-target-boehm-gc: installcheck-target-boehm-gc
installcheck-target-boehm-gc: \
- configure-target-boehm-gc
+ configure-target-boehm-gc
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/boehm-gc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53193,7 +53201,7 @@ maybe-mostlyclean-target-boehm-gc:
@if target-boehm-gc
maybe-mostlyclean-target-boehm-gc: mostlyclean-target-boehm-gc
-mostlyclean-target-boehm-gc:
+mostlyclean-target-boehm-gc:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/boehm-gc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53218,7 +53226,7 @@ maybe-clean-target-boehm-gc:
@if target-boehm-gc
maybe-clean-target-boehm-gc: clean-target-boehm-gc
-clean-target-boehm-gc:
+clean-target-boehm-gc:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/boehm-gc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53243,7 +53251,7 @@ maybe-distclean-target-boehm-gc:
@if target-boehm-gc
maybe-distclean-target-boehm-gc: distclean-target-boehm-gc
-distclean-target-boehm-gc:
+distclean-target-boehm-gc:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/boehm-gc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53268,7 +53276,7 @@ maybe-maintainer-clean-target-boehm-gc:
@if target-boehm-gc
maybe-maintainer-clean-target-boehm-gc: maintainer-clean-target-boehm-gc
-maintainer-clean-target-boehm-gc:
+maintainer-clean-target-boehm-gc:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/boehm-gc/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53299,7 +53307,7 @@ configure-target-qthreads: stage_current
@endif gcc-bootstrap
@if target-qthreads
maybe-configure-target-qthreads: configure-target-qthreads
-configure-target-qthreads:
+configure-target-qthreads:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -53399,7 +53407,7 @@ maybe-info-target-qthreads:
maybe-info-target-qthreads: info-target-qthreads
info-target-qthreads: \
- configure-target-qthreads
+ configure-target-qthreads
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/qthreads/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53425,7 +53433,7 @@ maybe-dvi-target-qthreads:
maybe-dvi-target-qthreads: dvi-target-qthreads
dvi-target-qthreads: \
- configure-target-qthreads
+ configure-target-qthreads
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/qthreads/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53451,7 +53459,7 @@ maybe-pdf-target-qthreads:
maybe-pdf-target-qthreads: pdf-target-qthreads
pdf-target-qthreads: \
- configure-target-qthreads
+ configure-target-qthreads
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/qthreads/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53477,7 +53485,7 @@ maybe-html-target-qthreads:
maybe-html-target-qthreads: html-target-qthreads
html-target-qthreads: \
- configure-target-qthreads
+ configure-target-qthreads
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/qthreads/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53503,7 +53511,7 @@ maybe-TAGS-target-qthreads:
maybe-TAGS-target-qthreads: TAGS-target-qthreads
TAGS-target-qthreads: \
- configure-target-qthreads
+ configure-target-qthreads
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/qthreads/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53530,7 +53538,7 @@ maybe-install-info-target-qthreads: install-info-target-qthreads
install-info-target-qthreads: \
configure-target-qthreads \
- info-target-qthreads
+ info-target-qthreads
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/qthreads/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53557,7 +53565,7 @@ maybe-install-pdf-target-qthreads: install-pdf-target-qthreads
install-pdf-target-qthreads: \
configure-target-qthreads \
- pdf-target-qthreads
+ pdf-target-qthreads
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/qthreads/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53584,7 +53592,7 @@ maybe-install-html-target-qthreads: install-html-target-qthreads
install-html-target-qthreads: \
configure-target-qthreads \
- html-target-qthreads
+ html-target-qthreads
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/qthreads/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53610,7 +53618,7 @@ maybe-installcheck-target-qthreads:
maybe-installcheck-target-qthreads: installcheck-target-qthreads
installcheck-target-qthreads: \
- configure-target-qthreads
+ configure-target-qthreads
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/qthreads/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53635,7 +53643,7 @@ maybe-mostlyclean-target-qthreads:
@if target-qthreads
maybe-mostlyclean-target-qthreads: mostlyclean-target-qthreads
-mostlyclean-target-qthreads:
+mostlyclean-target-qthreads:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/qthreads/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53660,7 +53668,7 @@ maybe-clean-target-qthreads:
@if target-qthreads
maybe-clean-target-qthreads: clean-target-qthreads
-clean-target-qthreads:
+clean-target-qthreads:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/qthreads/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53685,7 +53693,7 @@ maybe-distclean-target-qthreads:
@if target-qthreads
maybe-distclean-target-qthreads: distclean-target-qthreads
-distclean-target-qthreads:
+distclean-target-qthreads:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/qthreads/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53710,7 +53718,7 @@ maybe-maintainer-clean-target-qthreads:
@if target-qthreads
maybe-maintainer-clean-target-qthreads: maintainer-clean-target-qthreads
-maintainer-clean-target-qthreads:
+maintainer-clean-target-qthreads:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/qthreads/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53741,7 +53749,7 @@ configure-target-rda: stage_current
@endif gcc-bootstrap
@if target-rda
maybe-configure-target-rda: configure-target-rda
-configure-target-rda:
+configure-target-rda:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -53841,7 +53849,7 @@ maybe-info-target-rda:
maybe-info-target-rda: info-target-rda
info-target-rda: \
- configure-target-rda
+ configure-target-rda
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53867,7 +53875,7 @@ maybe-dvi-target-rda:
maybe-dvi-target-rda: dvi-target-rda
dvi-target-rda: \
- configure-target-rda
+ configure-target-rda
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53893,7 +53901,7 @@ maybe-pdf-target-rda:
maybe-pdf-target-rda: pdf-target-rda
pdf-target-rda: \
- configure-target-rda
+ configure-target-rda
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53919,7 +53927,7 @@ maybe-html-target-rda:
maybe-html-target-rda: html-target-rda
html-target-rda: \
- configure-target-rda
+ configure-target-rda
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53945,7 +53953,7 @@ maybe-TAGS-target-rda:
maybe-TAGS-target-rda: TAGS-target-rda
TAGS-target-rda: \
- configure-target-rda
+ configure-target-rda
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53972,7 +53980,7 @@ maybe-install-info-target-rda: install-info-target-rda
install-info-target-rda: \
configure-target-rda \
- info-target-rda
+ info-target-rda
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -53999,7 +54007,7 @@ maybe-install-pdf-target-rda: install-pdf-target-rda
install-pdf-target-rda: \
configure-target-rda \
- pdf-target-rda
+ pdf-target-rda
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54026,7 +54034,7 @@ maybe-install-html-target-rda: install-html-target-rda
install-html-target-rda: \
configure-target-rda \
- html-target-rda
+ html-target-rda
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54052,7 +54060,7 @@ maybe-installcheck-target-rda:
maybe-installcheck-target-rda: installcheck-target-rda
installcheck-target-rda: \
- configure-target-rda
+ configure-target-rda
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54077,7 +54085,7 @@ maybe-mostlyclean-target-rda:
@if target-rda
maybe-mostlyclean-target-rda: mostlyclean-target-rda
-mostlyclean-target-rda:
+mostlyclean-target-rda:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54102,7 +54110,7 @@ maybe-clean-target-rda:
@if target-rda
maybe-clean-target-rda: clean-target-rda
-clean-target-rda:
+clean-target-rda:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54127,7 +54135,7 @@ maybe-distclean-target-rda:
@if target-rda
maybe-distclean-target-rda: distclean-target-rda
-distclean-target-rda:
+distclean-target-rda:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54152,7 +54160,7 @@ maybe-maintainer-clean-target-rda:
@if target-rda
maybe-maintainer-clean-target-rda: maintainer-clean-target-rda
-maintainer-clean-target-rda:
+maintainer-clean-target-rda:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54183,7 +54191,7 @@ configure-target-libada: stage_current
@endif gcc-bootstrap
@if target-libada
maybe-configure-target-libada: configure-target-libada
-configure-target-libada:
+configure-target-libada:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -54283,7 +54291,7 @@ maybe-info-target-libada:
maybe-info-target-libada: info-target-libada
info-target-libada: \
- configure-target-libada
+ configure-target-libada
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54309,7 +54317,7 @@ maybe-dvi-target-libada:
maybe-dvi-target-libada: dvi-target-libada
dvi-target-libada: \
- configure-target-libada
+ configure-target-libada
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54335,7 +54343,7 @@ maybe-pdf-target-libada:
maybe-pdf-target-libada: pdf-target-libada
pdf-target-libada: \
- configure-target-libada
+ configure-target-libada
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54361,7 +54369,7 @@ maybe-html-target-libada:
maybe-html-target-libada: html-target-libada
html-target-libada: \
- configure-target-libada
+ configure-target-libada
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54387,7 +54395,7 @@ maybe-TAGS-target-libada:
maybe-TAGS-target-libada: TAGS-target-libada
TAGS-target-libada: \
- configure-target-libada
+ configure-target-libada
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54414,7 +54422,7 @@ maybe-install-info-target-libada: install-info-target-libada
install-info-target-libada: \
configure-target-libada \
- info-target-libada
+ info-target-libada
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54441,7 +54449,7 @@ maybe-install-pdf-target-libada: install-pdf-target-libada
install-pdf-target-libada: \
configure-target-libada \
- pdf-target-libada
+ pdf-target-libada
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54468,7 +54476,7 @@ maybe-install-html-target-libada: install-html-target-libada
install-html-target-libada: \
configure-target-libada \
- html-target-libada
+ html-target-libada
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54494,7 +54502,7 @@ maybe-installcheck-target-libada:
maybe-installcheck-target-libada: installcheck-target-libada
installcheck-target-libada: \
- configure-target-libada
+ configure-target-libada
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54519,7 +54527,7 @@ maybe-mostlyclean-target-libada:
@if target-libada
maybe-mostlyclean-target-libada: mostlyclean-target-libada
-mostlyclean-target-libada:
+mostlyclean-target-libada:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54544,7 +54552,7 @@ maybe-clean-target-libada:
@if target-libada
maybe-clean-target-libada: clean-target-libada
-clean-target-libada:
+clean-target-libada:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54569,7 +54577,7 @@ maybe-distclean-target-libada:
@if target-libada
maybe-distclean-target-libada: distclean-target-libada
-distclean-target-libada:
+distclean-target-libada:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54594,7 +54602,7 @@ maybe-maintainer-clean-target-libada:
@if target-libada
maybe-maintainer-clean-target-libada: maintainer-clean-target-libada
-maintainer-clean-target-libada:
+maintainer-clean-target-libada:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54625,7 +54633,7 @@ configure-target-libgomp: stage_current
@endif gcc-bootstrap
@if target-libgomp
maybe-configure-target-libgomp: configure-target-libgomp
-configure-target-libgomp:
+configure-target-libgomp:
@: $(MAKE); $(unstage)
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -54725,7 +54733,7 @@ maybe-info-target-libgomp:
maybe-info-target-libgomp: info-target-libgomp
info-target-libgomp: \
- configure-target-libgomp
+ configure-target-libgomp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54751,7 +54759,7 @@ maybe-dvi-target-libgomp:
maybe-dvi-target-libgomp: dvi-target-libgomp
dvi-target-libgomp: \
- configure-target-libgomp
+ configure-target-libgomp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54777,7 +54785,7 @@ maybe-pdf-target-libgomp:
maybe-pdf-target-libgomp: pdf-target-libgomp
pdf-target-libgomp: \
- configure-target-libgomp
+ configure-target-libgomp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54803,7 +54811,7 @@ maybe-html-target-libgomp:
maybe-html-target-libgomp: html-target-libgomp
html-target-libgomp: \
- configure-target-libgomp
+ configure-target-libgomp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54829,7 +54837,7 @@ maybe-TAGS-target-libgomp:
maybe-TAGS-target-libgomp: TAGS-target-libgomp
TAGS-target-libgomp: \
- configure-target-libgomp
+ configure-target-libgomp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54856,7 +54864,7 @@ maybe-install-info-target-libgomp: install-info-target-libgomp
install-info-target-libgomp: \
configure-target-libgomp \
- info-target-libgomp
+ info-target-libgomp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54883,7 +54891,7 @@ maybe-install-pdf-target-libgomp: install-pdf-target-libgomp
install-pdf-target-libgomp: \
configure-target-libgomp \
- pdf-target-libgomp
+ pdf-target-libgomp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54910,7 +54918,7 @@ maybe-install-html-target-libgomp: install-html-target-libgomp
install-html-target-libgomp: \
configure-target-libgomp \
- html-target-libgomp
+ html-target-libgomp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54936,7 +54944,7 @@ maybe-installcheck-target-libgomp:
maybe-installcheck-target-libgomp: installcheck-target-libgomp
installcheck-target-libgomp: \
- configure-target-libgomp
+ configure-target-libgomp
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54961,7 +54969,7 @@ maybe-mostlyclean-target-libgomp:
@if target-libgomp
maybe-mostlyclean-target-libgomp: mostlyclean-target-libgomp
-mostlyclean-target-libgomp:
+mostlyclean-target-libgomp:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -54986,7 +54994,7 @@ maybe-clean-target-libgomp:
@if target-libgomp
maybe-clean-target-libgomp: clean-target-libgomp
-clean-target-libgomp:
+clean-target-libgomp:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -55011,7 +55019,7 @@ maybe-distclean-target-libgomp:
@if target-libgomp
maybe-distclean-target-libgomp: distclean-target-libgomp
-distclean-target-libgomp:
+distclean-target-libgomp:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -55036,7 +55044,7 @@ maybe-maintainer-clean-target-libgomp:
@if target-libgomp
maybe-maintainer-clean-target-libgomp: maintainer-clean-target-libgomp
-maintainer-clean-target-libgomp:
+maintainer-clean-target-libgomp:
@: $(MAKE); $(unstage)
@[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0 ; \
r=`${PWD_COMMAND}`; export r; \
@@ -55202,7 +55210,7 @@ LEAN = false
# reliable.
# 'touch' doesn't work right on some platforms.
-STAMP = echo timestamp >
+STAMP = echo timestamp >
# We only want to compare .o files, so set this!
objext = .o
@@ -55218,103 +55226,103 @@ stage1-start::
@if bfd
@cd $(HOST_SUBDIR); [ -d stage1-bfd ] || \
mkdir stage1-bfd; \
- mv stage1-bfd bfd
+ mv stage1-bfd bfd
@endif bfd
@if opcodes
@cd $(HOST_SUBDIR); [ -d stage1-opcodes ] || \
mkdir stage1-opcodes; \
- mv stage1-opcodes opcodes
+ mv stage1-opcodes opcodes
@endif opcodes
@if binutils
@cd $(HOST_SUBDIR); [ -d stage1-binutils ] || \
mkdir stage1-binutils; \
- mv stage1-binutils binutils
+ mv stage1-binutils binutils
@endif binutils
@if gas
@cd $(HOST_SUBDIR); [ -d stage1-gas ] || \
mkdir stage1-gas; \
- mv stage1-gas gas
+ mv stage1-gas gas
@endif gas
@if gcc
@cd $(HOST_SUBDIR); [ -d stage1-gcc ] || \
mkdir stage1-gcc; \
- mv stage1-gcc gcc
+ mv stage1-gcc gcc
@endif gcc
@if gmp
@cd $(HOST_SUBDIR); [ -d stage1-gmp ] || \
mkdir stage1-gmp; \
- mv stage1-gmp gmp
+ mv stage1-gmp gmp
@endif gmp
@if mpfr
@cd $(HOST_SUBDIR); [ -d stage1-mpfr ] || \
mkdir stage1-mpfr; \
- mv stage1-mpfr mpfr
+ mv stage1-mpfr mpfr
@endif mpfr
@if mpc
@cd $(HOST_SUBDIR); [ -d stage1-mpc ] || \
mkdir stage1-mpc; \
- mv stage1-mpc mpc
+ mv stage1-mpc mpc
@endif mpc
@if ppl
@cd $(HOST_SUBDIR); [ -d stage1-ppl ] || \
mkdir stage1-ppl; \
- mv stage1-ppl ppl
+ mv stage1-ppl ppl
@endif ppl
@if cloog
@cd $(HOST_SUBDIR); [ -d stage1-cloog ] || \
mkdir stage1-cloog; \
- mv stage1-cloog cloog
+ mv stage1-cloog cloog
@endif cloog
@if libelf
@cd $(HOST_SUBDIR); [ -d stage1-libelf ] || \
mkdir stage1-libelf; \
- mv stage1-libelf libelf
+ mv stage1-libelf libelf
@endif libelf
@if gold
@cd $(HOST_SUBDIR); [ -d stage1-gold ] || \
mkdir stage1-gold; \
- mv stage1-gold gold
+ mv stage1-gold gold
@endif gold
@if intl
@cd $(HOST_SUBDIR); [ -d stage1-intl ] || \
mkdir stage1-intl; \
- mv stage1-intl intl
+ mv stage1-intl intl
@endif intl
@if ld
@cd $(HOST_SUBDIR); [ -d stage1-ld ] || \
mkdir stage1-ld; \
- mv stage1-ld ld
+ mv stage1-ld ld
@endif ld
@if libcpp
@cd $(HOST_SUBDIR); [ -d stage1-libcpp ] || \
mkdir stage1-libcpp; \
- mv stage1-libcpp libcpp
+ mv stage1-libcpp libcpp
@endif libcpp
@if libdecnumber
@cd $(HOST_SUBDIR); [ -d stage1-libdecnumber ] || \
mkdir stage1-libdecnumber; \
- mv stage1-libdecnumber libdecnumber
+ mv stage1-libdecnumber libdecnumber
@endif libdecnumber
@if libiberty
@cd $(HOST_SUBDIR); [ -d stage1-libiberty ] || \
mkdir stage1-libiberty; \
- mv stage1-libiberty libiberty
+ mv stage1-libiberty libiberty
@endif libiberty
@if zlib
@cd $(HOST_SUBDIR); [ -d stage1-zlib ] || \
mkdir stage1-zlib; \
- mv stage1-zlib zlib
+ mv stage1-zlib zlib
@endif zlib
@if lto-plugin
@cd $(HOST_SUBDIR); [ -d stage1-lto-plugin ] || \
mkdir stage1-lto-plugin; \
- mv stage1-lto-plugin lto-plugin
+ mv stage1-lto-plugin lto-plugin
@endif lto-plugin
@[ -d stage1-$(TARGET_SUBDIR) ] || \
mkdir stage1-$(TARGET_SUBDIR); \
- mv stage1-$(TARGET_SUBDIR) $(TARGET_SUBDIR)
+ mv stage1-$(TARGET_SUBDIR) $(TARGET_SUBDIR)
-stage1-end::
+stage1-end::
@if bfd
@if test -d $(HOST_SUBDIR)/bfd ; then \
cd $(HOST_SUBDIR); mv bfd stage1-bfd ; \
@@ -55419,7 +55427,7 @@ stage1-end::
# remade, but not reconfigured. The next stage (if any) will not be
# reconfigured either.
.PHONY: stage1-bubble
-stage1-bubble::
+stage1-bubble::
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
if test -f stage1-lean ; then \
@@ -55445,7 +55453,7 @@ do-clean: clean-stage1
distclean-stage1::
@: $(MAKE); $(stage)
@test "`cat stage_last`" != stage1 || rm -f stage_last
- rm -rf stage1-*
+ rm -rf stage1-*
@endif gcc-bootstrap
@@ -55462,122 +55470,122 @@ stage2-start::
@cd $(HOST_SUBDIR); [ -d stage2-bfd ] || \
mkdir stage2-bfd; \
mv stage2-bfd bfd ; \
- mv stage1-bfd prev-bfd || test -f stage1-lean
+ mv stage1-bfd prev-bfd || test -f stage1-lean
@endif bfd
@if opcodes
@cd $(HOST_SUBDIR); [ -d stage2-opcodes ] || \
mkdir stage2-opcodes; \
mv stage2-opcodes opcodes ; \
- mv stage1-opcodes prev-opcodes || test -f stage1-lean
+ mv stage1-opcodes prev-opcodes || test -f stage1-lean
@endif opcodes
@if binutils
@cd $(HOST_SUBDIR); [ -d stage2-binutils ] || \
mkdir stage2-binutils; \
mv stage2-binutils binutils ; \
- mv stage1-binutils prev-binutils || test -f stage1-lean
+ mv stage1-binutils prev-binutils || test -f stage1-lean
@endif binutils
@if gas
@cd $(HOST_SUBDIR); [ -d stage2-gas ] || \
mkdir stage2-gas; \
mv stage2-gas gas ; \
- mv stage1-gas prev-gas || test -f stage1-lean
+ mv stage1-gas prev-gas || test -f stage1-lean
@endif gas
@if gcc
@cd $(HOST_SUBDIR); [ -d stage2-gcc ] || \
mkdir stage2-gcc; \
mv stage2-gcc gcc ; \
- mv stage1-gcc prev-gcc || test -f stage1-lean
+ mv stage1-gcc prev-gcc || test -f stage1-lean
@endif gcc
@if gmp
@cd $(HOST_SUBDIR); [ -d stage2-gmp ] || \
mkdir stage2-gmp; \
mv stage2-gmp gmp ; \
- mv stage1-gmp prev-gmp || test -f stage1-lean
+ mv stage1-gmp prev-gmp || test -f stage1-lean
@endif gmp
@if mpfr
@cd $(HOST_SUBDIR); [ -d stage2-mpfr ] || \
mkdir stage2-mpfr; \
mv stage2-mpfr mpfr ; \
- mv stage1-mpfr prev-mpfr || test -f stage1-lean
+ mv stage1-mpfr prev-mpfr || test -f stage1-lean
@endif mpfr
@if mpc
@cd $(HOST_SUBDIR); [ -d stage2-mpc ] || \
mkdir stage2-mpc; \
mv stage2-mpc mpc ; \
- mv stage1-mpc prev-mpc || test -f stage1-lean
+ mv stage1-mpc prev-mpc || test -f stage1-lean
@endif mpc
@if ppl
@cd $(HOST_SUBDIR); [ -d stage2-ppl ] || \
mkdir stage2-ppl; \
mv stage2-ppl ppl ; \
- mv stage1-ppl prev-ppl || test -f stage1-lean
+ mv stage1-ppl prev-ppl || test -f stage1-lean
@endif ppl
@if cloog
@cd $(HOST_SUBDIR); [ -d stage2-cloog ] || \
mkdir stage2-cloog; \
mv stage2-cloog cloog ; \
- mv stage1-cloog prev-cloog || test -f stage1-lean
+ mv stage1-cloog prev-cloog || test -f stage1-lean
@endif cloog
@if libelf
@cd $(HOST_SUBDIR); [ -d stage2-libelf ] || \
mkdir stage2-libelf; \
mv stage2-libelf libelf ; \
- mv stage1-libelf prev-libelf || test -f stage1-lean
+ mv stage1-libelf prev-libelf || test -f stage1-lean
@endif libelf
@if gold
@cd $(HOST_SUBDIR); [ -d stage2-gold ] || \
mkdir stage2-gold; \
mv stage2-gold gold ; \
- mv stage1-gold prev-gold || test -f stage1-lean
+ mv stage1-gold prev-gold || test -f stage1-lean
@endif gold
@if intl
@cd $(HOST_SUBDIR); [ -d stage2-intl ] || \
mkdir stage2-intl; \
mv stage2-intl intl ; \
- mv stage1-intl prev-intl || test -f stage1-lean
+ mv stage1-intl prev-intl || test -f stage1-lean
@endif intl
@if ld
@cd $(HOST_SUBDIR); [ -d stage2-ld ] || \
mkdir stage2-ld; \
mv stage2-ld ld ; \
- mv stage1-ld prev-ld || test -f stage1-lean
+ mv stage1-ld prev-ld || test -f stage1-lean
@endif ld
@if libcpp
@cd $(HOST_SUBDIR); [ -d stage2-libcpp ] || \
mkdir stage2-libcpp; \
mv stage2-libcpp libcpp ; \
- mv stage1-libcpp prev-libcpp || test -f stage1-lean
+ mv stage1-libcpp prev-libcpp || test -f stage1-lean
@endif libcpp
@if libdecnumber
@cd $(HOST_SUBDIR); [ -d stage2-libdecnumber ] || \
mkdir stage2-libdecnumber; \
mv stage2-libdecnumber libdecnumber ; \
- mv stage1-libdecnumber prev-libdecnumber || test -f stage1-lean
+ mv stage1-libdecnumber prev-libdecnumber || test -f stage1-lean
@endif libdecnumber
@if libiberty
@cd $(HOST_SUBDIR); [ -d stage2-libiberty ] || \
mkdir stage2-libiberty; \
mv stage2-libiberty libiberty ; \
- mv stage1-libiberty prev-libiberty || test -f stage1-lean
+ mv stage1-libiberty prev-libiberty || test -f stage1-lean
@endif libiberty
@if zlib
@cd $(HOST_SUBDIR); [ -d stage2-zlib ] || \
mkdir stage2-zlib; \
mv stage2-zlib zlib ; \
- mv stage1-zlib prev-zlib || test -f stage1-lean
+ mv stage1-zlib prev-zlib || test -f stage1-lean
@endif zlib
@if lto-plugin
@cd $(HOST_SUBDIR); [ -d stage2-lto-plugin ] || \
mkdir stage2-lto-plugin; \
mv stage2-lto-plugin lto-plugin ; \
- mv stage1-lto-plugin prev-lto-plugin || test -f stage1-lean
+ mv stage1-lto-plugin prev-lto-plugin || test -f stage1-lean
@endif lto-plugin
@[ -d stage2-$(TARGET_SUBDIR) ] || \
mkdir stage2-$(TARGET_SUBDIR); \
mv stage2-$(TARGET_SUBDIR) $(TARGET_SUBDIR) ; \
- mv stage1-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage1-lean
+ mv stage1-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage1-lean
-stage2-end::
+stage2-end::
@if bfd
@if test -d $(HOST_SUBDIR)/bfd ; then \
cd $(HOST_SUBDIR); mv bfd stage2-bfd ; \
@@ -55746,12 +55754,12 @@ bootstrap2-lean:
# Rules to wipe a stage and all the following ones, also used for cleanstrap
-distclean-stage1:: distclean-stage2
+distclean-stage1:: distclean-stage2
.PHONY: distclean-stage2
distclean-stage2::
@: $(MAKE); $(stage)
@test "`cat stage_last`" != stage2 || rm -f stage_last
- rm -rf stage2-*
+ rm -rf stage2-*
@endif gcc-bootstrap
@@ -55768,122 +55776,122 @@ stage3-start::
@cd $(HOST_SUBDIR); [ -d stage3-bfd ] || \
mkdir stage3-bfd; \
mv stage3-bfd bfd ; \
- mv stage2-bfd prev-bfd || test -f stage2-lean
+ mv stage2-bfd prev-bfd || test -f stage2-lean
@endif bfd
@if opcodes
@cd $(HOST_SUBDIR); [ -d stage3-opcodes ] || \
mkdir stage3-opcodes; \
mv stage3-opcodes opcodes ; \
- mv stage2-opcodes prev-opcodes || test -f stage2-lean
+ mv stage2-opcodes prev-opcodes || test -f stage2-lean
@endif opcodes
@if binutils
@cd $(HOST_SUBDIR); [ -d stage3-binutils ] || \
mkdir stage3-binutils; \
mv stage3-binutils binutils ; \
- mv stage2-binutils prev-binutils || test -f stage2-lean
+ mv stage2-binutils prev-binutils || test -f stage2-lean
@endif binutils
@if gas
@cd $(HOST_SUBDIR); [ -d stage3-gas ] || \
mkdir stage3-gas; \
mv stage3-gas gas ; \
- mv stage2-gas prev-gas || test -f stage2-lean
+ mv stage2-gas prev-gas || test -f stage2-lean
@endif gas
@if gcc
@cd $(HOST_SUBDIR); [ -d stage3-gcc ] || \
mkdir stage3-gcc; \
mv stage3-gcc gcc ; \
- mv stage2-gcc prev-gcc || test -f stage2-lean
+ mv stage2-gcc prev-gcc || test -f stage2-lean
@endif gcc
@if gmp
@cd $(HOST_SUBDIR); [ -d stage3-gmp ] || \
mkdir stage3-gmp; \
mv stage3-gmp gmp ; \
- mv stage2-gmp prev-gmp || test -f stage2-lean
+ mv stage2-gmp prev-gmp || test -f stage2-lean
@endif gmp
@if mpfr
@cd $(HOST_SUBDIR); [ -d stage3-mpfr ] || \
mkdir stage3-mpfr; \
mv stage3-mpfr mpfr ; \
- mv stage2-mpfr prev-mpfr || test -f stage2-lean
+ mv stage2-mpfr prev-mpfr || test -f stage2-lean
@endif mpfr
@if mpc
@cd $(HOST_SUBDIR); [ -d stage3-mpc ] || \
mkdir stage3-mpc; \
mv stage3-mpc mpc ; \
- mv stage2-mpc prev-mpc || test -f stage2-lean
+ mv stage2-mpc prev-mpc || test -f stage2-lean
@endif mpc
@if ppl
@cd $(HOST_SUBDIR); [ -d stage3-ppl ] || \
mkdir stage3-ppl; \
mv stage3-ppl ppl ; \
- mv stage2-ppl prev-ppl || test -f stage2-lean
+ mv stage2-ppl prev-ppl || test -f stage2-lean
@endif ppl
@if cloog
@cd $(HOST_SUBDIR); [ -d stage3-cloog ] || \
mkdir stage3-cloog; \
mv stage3-cloog cloog ; \
- mv stage2-cloog prev-cloog || test -f stage2-lean
+ mv stage2-cloog prev-cloog || test -f stage2-lean
@endif cloog
@if libelf
@cd $(HOST_SUBDIR); [ -d stage3-libelf ] || \
mkdir stage3-libelf; \
mv stage3-libelf libelf ; \
- mv stage2-libelf prev-libelf || test -f stage2-lean
+ mv stage2-libelf prev-libelf || test -f stage2-lean
@endif libelf
@if gold
@cd $(HOST_SUBDIR); [ -d stage3-gold ] || \
mkdir stage3-gold; \
mv stage3-gold gold ; \
- mv stage2-gold prev-gold || test -f stage2-lean
+ mv stage2-gold prev-gold || test -f stage2-lean
@endif gold
@if intl
@cd $(HOST_SUBDIR); [ -d stage3-intl ] || \
mkdir stage3-intl; \
mv stage3-intl intl ; \
- mv stage2-intl prev-intl || test -f stage2-lean
+ mv stage2-intl prev-intl || test -f stage2-lean
@endif intl
@if ld
@cd $(HOST_SUBDIR); [ -d stage3-ld ] || \
mkdir stage3-ld; \
mv stage3-ld ld ; \
- mv stage2-ld prev-ld || test -f stage2-lean
+ mv stage2-ld prev-ld || test -f stage2-lean
@endif ld
@if libcpp
@cd $(HOST_SUBDIR); [ -d stage3-libcpp ] || \
mkdir stage3-libcpp; \
mv stage3-libcpp libcpp ; \
- mv stage2-libcpp prev-libcpp || test -f stage2-lean
+ mv stage2-libcpp prev-libcpp || test -f stage2-lean
@endif libcpp
@if libdecnumber
@cd $(HOST_SUBDIR); [ -d stage3-libdecnumber ] || \
mkdir stage3-libdecnumber; \
mv stage3-libdecnumber libdecnumber ; \
- mv stage2-libdecnumber prev-libdecnumber || test -f stage2-lean
+ mv stage2-libdecnumber prev-libdecnumber || test -f stage2-lean
@endif libdecnumber
@if libiberty
@cd $(HOST_SUBDIR); [ -d stage3-libiberty ] || \
mkdir stage3-libiberty; \
mv stage3-libiberty libiberty ; \
- mv stage2-libiberty prev-libiberty || test -f stage2-lean
+ mv stage2-libiberty prev-libiberty || test -f stage2-lean
@endif libiberty
@if zlib
@cd $(HOST_SUBDIR); [ -d stage3-zlib ] || \
mkdir stage3-zlib; \
mv stage3-zlib zlib ; \
- mv stage2-zlib prev-zlib || test -f stage2-lean
+ mv stage2-zlib prev-zlib || test -f stage2-lean
@endif zlib
@if lto-plugin
@cd $(HOST_SUBDIR); [ -d stage3-lto-plugin ] || \
mkdir stage3-lto-plugin; \
mv stage3-lto-plugin lto-plugin ; \
- mv stage2-lto-plugin prev-lto-plugin || test -f stage2-lean
+ mv stage2-lto-plugin prev-lto-plugin || test -f stage2-lean
@endif lto-plugin
@[ -d stage3-$(TARGET_SUBDIR) ] || \
mkdir stage3-$(TARGET_SUBDIR); \
mv stage3-$(TARGET_SUBDIR) $(TARGET_SUBDIR) ; \
- mv stage2-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage2-lean
+ mv stage2-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage2-lean
-stage3-end::
+stage3-end::
@if bfd
@if test -d $(HOST_SUBDIR)/bfd ; then \
cd $(HOST_SUBDIR); mv bfd stage3-bfd ; \
@@ -56096,12 +56104,12 @@ bootstrap-lean:
# Rules to wipe a stage and all the following ones, also used for cleanstrap
-distclean-stage2:: distclean-stage3
+distclean-stage2:: distclean-stage3
.PHONY: distclean-stage3
distclean-stage3::
@: $(MAKE); $(stage)
@test "`cat stage_last`" != stage3 || rm -f stage_last
- rm -rf stage3-* compare
+ rm -rf stage3-* compare
.PHONY: cleanstrap
@@ -56130,122 +56138,122 @@ stage4-start::
@cd $(HOST_SUBDIR); [ -d stage4-bfd ] || \
mkdir stage4-bfd; \
mv stage4-bfd bfd ; \
- mv stage3-bfd prev-bfd || test -f stage3-lean
+ mv stage3-bfd prev-bfd || test -f stage3-lean
@endif bfd
@if opcodes
@cd $(HOST_SUBDIR); [ -d stage4-opcodes ] || \
mkdir stage4-opcodes; \
mv stage4-opcodes opcodes ; \
- mv stage3-opcodes prev-opcodes || test -f stage3-lean
+ mv stage3-opcodes prev-opcodes || test -f stage3-lean
@endif opcodes
@if binutils
@cd $(HOST_SUBDIR); [ -d stage4-binutils ] || \
mkdir stage4-binutils; \
mv stage4-binutils binutils ; \
- mv stage3-binutils prev-binutils || test -f stage3-lean
+ mv stage3-binutils prev-binutils || test -f stage3-lean
@endif binutils
@if gas
@cd $(HOST_SUBDIR); [ -d stage4-gas ] || \
mkdir stage4-gas; \
mv stage4-gas gas ; \
- mv stage3-gas prev-gas || test -f stage3-lean
+ mv stage3-gas prev-gas || test -f stage3-lean
@endif gas
@if gcc
@cd $(HOST_SUBDIR); [ -d stage4-gcc ] || \
mkdir stage4-gcc; \
mv stage4-gcc gcc ; \
- mv stage3-gcc prev-gcc || test -f stage3-lean
+ mv stage3-gcc prev-gcc || test -f stage3-lean
@endif gcc
@if gmp
@cd $(HOST_SUBDIR); [ -d stage4-gmp ] || \
mkdir stage4-gmp; \
mv stage4-gmp gmp ; \
- mv stage3-gmp prev-gmp || test -f stage3-lean
+ mv stage3-gmp prev-gmp || test -f stage3-lean
@endif gmp
@if mpfr
@cd $(HOST_SUBDIR); [ -d stage4-mpfr ] || \
mkdir stage4-mpfr; \
mv stage4-mpfr mpfr ; \
- mv stage3-mpfr prev-mpfr || test -f stage3-lean
+ mv stage3-mpfr prev-mpfr || test -f stage3-lean
@endif mpfr
@if mpc
@cd $(HOST_SUBDIR); [ -d stage4-mpc ] || \
mkdir stage4-mpc; \
mv stage4-mpc mpc ; \
- mv stage3-mpc prev-mpc || test -f stage3-lean
+ mv stage3-mpc prev-mpc || test -f stage3-lean
@endif mpc
@if ppl
@cd $(HOST_SUBDIR); [ -d stage4-ppl ] || \
mkdir stage4-ppl; \
mv stage4-ppl ppl ; \
- mv stage3-ppl prev-ppl || test -f stage3-lean
+ mv stage3-ppl prev-ppl || test -f stage3-lean
@endif ppl
@if cloog
@cd $(HOST_SUBDIR); [ -d stage4-cloog ] || \
mkdir stage4-cloog; \
mv stage4-cloog cloog ; \
- mv stage3-cloog prev-cloog || test -f stage3-lean
+ mv stage3-cloog prev-cloog || test -f stage3-lean
@endif cloog
@if libelf
@cd $(HOST_SUBDIR); [ -d stage4-libelf ] || \
mkdir stage4-libelf; \
mv stage4-libelf libelf ; \
- mv stage3-libelf prev-libelf || test -f stage3-lean
+ mv stage3-libelf prev-libelf || test -f stage3-lean
@endif libelf
@if gold
@cd $(HOST_SUBDIR); [ -d stage4-gold ] || \
mkdir stage4-gold; \
mv stage4-gold gold ; \
- mv stage3-gold prev-gold || test -f stage3-lean
+ mv stage3-gold prev-gold || test -f stage3-lean
@endif gold
@if intl
@cd $(HOST_SUBDIR); [ -d stage4-intl ] || \
mkdir stage4-intl; \
mv stage4-intl intl ; \
- mv stage3-intl prev-intl || test -f stage3-lean
+ mv stage3-intl prev-intl || test -f stage3-lean
@endif intl
@if ld
@cd $(HOST_SUBDIR); [ -d stage4-ld ] || \
mkdir stage4-ld; \
mv stage4-ld ld ; \
- mv stage3-ld prev-ld || test -f stage3-lean
+ mv stage3-ld prev-ld || test -f stage3-lean
@endif ld
@if libcpp
@cd $(HOST_SUBDIR); [ -d stage4-libcpp ] || \
mkdir stage4-libcpp; \
mv stage4-libcpp libcpp ; \
- mv stage3-libcpp prev-libcpp || test -f stage3-lean
+ mv stage3-libcpp prev-libcpp || test -f stage3-lean
@endif libcpp
@if libdecnumber
@cd $(HOST_SUBDIR); [ -d stage4-libdecnumber ] || \
mkdir stage4-libdecnumber; \
mv stage4-libdecnumber libdecnumber ; \
- mv stage3-libdecnumber prev-libdecnumber || test -f stage3-lean
+ mv stage3-libdecnumber prev-libdecnumber || test -f stage3-lean
@endif libdecnumber
@if libiberty
@cd $(HOST_SUBDIR); [ -d stage4-libiberty ] || \
mkdir stage4-libiberty; \
mv stage4-libiberty libiberty ; \
- mv stage3-libiberty prev-libiberty || test -f stage3-lean
+ mv stage3-libiberty prev-libiberty || test -f stage3-lean
@endif libiberty
@if zlib
@cd $(HOST_SUBDIR); [ -d stage4-zlib ] || \
mkdir stage4-zlib; \
mv stage4-zlib zlib ; \
- mv stage3-zlib prev-zlib || test -f stage3-lean
+ mv stage3-zlib prev-zlib || test -f stage3-lean
@endif zlib
@if lto-plugin
@cd $(HOST_SUBDIR); [ -d stage4-lto-plugin ] || \
mkdir stage4-lto-plugin; \
mv stage4-lto-plugin lto-plugin ; \
- mv stage3-lto-plugin prev-lto-plugin || test -f stage3-lean
+ mv stage3-lto-plugin prev-lto-plugin || test -f stage3-lean
@endif lto-plugin
@[ -d stage4-$(TARGET_SUBDIR) ] || \
mkdir stage4-$(TARGET_SUBDIR); \
mv stage4-$(TARGET_SUBDIR) $(TARGET_SUBDIR) ; \
- mv stage3-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage3-lean
+ mv stage3-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage3-lean
-stage4-end::
+stage4-end::
@if bfd
@if test -d $(HOST_SUBDIR)/bfd ; then \
cd $(HOST_SUBDIR); mv bfd stage4-bfd ; \
@@ -56458,12 +56466,12 @@ bootstrap4-lean:
# Rules to wipe a stage and all the following ones, also used for cleanstrap
-distclean-stage3:: distclean-stage4
+distclean-stage3:: distclean-stage4
.PHONY: distclean-stage4
distclean-stage4::
@: $(MAKE); $(stage)
@test "`cat stage_last`" != stage4 || rm -f stage_last
- rm -rf stage4-* compare3
+ rm -rf stage4-* compare3
@endif gcc-bootstrap
@@ -56480,122 +56488,122 @@ stageprofile-start::
@cd $(HOST_SUBDIR); [ -d stageprofile-bfd ] || \
mkdir stageprofile-bfd; \
mv stageprofile-bfd bfd ; \
- mv stage1-bfd prev-bfd || test -f stage1-lean
+ mv stage1-bfd prev-bfd || test -f stage1-lean
@endif bfd
@if opcodes
@cd $(HOST_SUBDIR); [ -d stageprofile-opcodes ] || \
mkdir stageprofile-opcodes; \
mv stageprofile-opcodes opcodes ; \
- mv stage1-opcodes prev-opcodes || test -f stage1-lean
+ mv stage1-opcodes prev-opcodes || test -f stage1-lean
@endif opcodes
@if binutils
@cd $(HOST_SUBDIR); [ -d stageprofile-binutils ] || \
mkdir stageprofile-binutils; \
mv stageprofile-binutils binutils ; \
- mv stage1-binutils prev-binutils || test -f stage1-lean
+ mv stage1-binutils prev-binutils || test -f stage1-lean
@endif binutils
@if gas
@cd $(HOST_SUBDIR); [ -d stageprofile-gas ] || \
mkdir stageprofile-gas; \
mv stageprofile-gas gas ; \
- mv stage1-gas prev-gas || test -f stage1-lean
+ mv stage1-gas prev-gas || test -f stage1-lean
@endif gas
@if gcc
@cd $(HOST_SUBDIR); [ -d stageprofile-gcc ] || \
mkdir stageprofile-gcc; \
mv stageprofile-gcc gcc ; \
- mv stage1-gcc prev-gcc || test -f stage1-lean
+ mv stage1-gcc prev-gcc || test -f stage1-lean
@endif gcc
@if gmp
@cd $(HOST_SUBDIR); [ -d stageprofile-gmp ] || \
mkdir stageprofile-gmp; \
mv stageprofile-gmp gmp ; \
- mv stage1-gmp prev-gmp || test -f stage1-lean
+ mv stage1-gmp prev-gmp || test -f stage1-lean
@endif gmp
@if mpfr
@cd $(HOST_SUBDIR); [ -d stageprofile-mpfr ] || \
mkdir stageprofile-mpfr; \
mv stageprofile-mpfr mpfr ; \
- mv stage1-mpfr prev-mpfr || test -f stage1-lean
+ mv stage1-mpfr prev-mpfr || test -f stage1-lean
@endif mpfr
@if mpc
@cd $(HOST_SUBDIR); [ -d stageprofile-mpc ] || \
mkdir stageprofile-mpc; \
mv stageprofile-mpc mpc ; \
- mv stage1-mpc prev-mpc || test -f stage1-lean
+ mv stage1-mpc prev-mpc || test -f stage1-lean
@endif mpc
@if ppl
@cd $(HOST_SUBDIR); [ -d stageprofile-ppl ] || \
mkdir stageprofile-ppl; \
mv stageprofile-ppl ppl ; \
- mv stage1-ppl prev-ppl || test -f stage1-lean
+ mv stage1-ppl prev-ppl || test -f stage1-lean
@endif ppl
@if cloog
@cd $(HOST_SUBDIR); [ -d stageprofile-cloog ] || \
mkdir stageprofile-cloog; \
mv stageprofile-cloog cloog ; \
- mv stage1-cloog prev-cloog || test -f stage1-lean
+ mv stage1-cloog prev-cloog || test -f stage1-lean
@endif cloog
@if libelf
@cd $(HOST_SUBDIR); [ -d stageprofile-libelf ] || \
mkdir stageprofile-libelf; \
mv stageprofile-libelf libelf ; \
- mv stage1-libelf prev-libelf || test -f stage1-lean
+ mv stage1-libelf prev-libelf || test -f stage1-lean
@endif libelf
@if gold
@cd $(HOST_SUBDIR); [ -d stageprofile-gold ] || \
mkdir stageprofile-gold; \
mv stageprofile-gold gold ; \
- mv stage1-gold prev-gold || test -f stage1-lean
+ mv stage1-gold prev-gold || test -f stage1-lean
@endif gold
@if intl
@cd $(HOST_SUBDIR); [ -d stageprofile-intl ] || \
mkdir stageprofile-intl; \
mv stageprofile-intl intl ; \
- mv stage1-intl prev-intl || test -f stage1-lean
+ mv stage1-intl prev-intl || test -f stage1-lean
@endif intl
@if ld
@cd $(HOST_SUBDIR); [ -d stageprofile-ld ] || \
mkdir stageprofile-ld; \
mv stageprofile-ld ld ; \
- mv stage1-ld prev-ld || test -f stage1-lean
+ mv stage1-ld prev-ld || test -f stage1-lean
@endif ld
@if libcpp
@cd $(HOST_SUBDIR); [ -d stageprofile-libcpp ] || \
mkdir stageprofile-libcpp; \
mv stageprofile-libcpp libcpp ; \
- mv stage1-libcpp prev-libcpp || test -f stage1-lean
+ mv stage1-libcpp prev-libcpp || test -f stage1-lean
@endif libcpp
@if libdecnumber
@cd $(HOST_SUBDIR); [ -d stageprofile-libdecnumber ] || \
mkdir stageprofile-libdecnumber; \
mv stageprofile-libdecnumber libdecnumber ; \
- mv stage1-libdecnumber prev-libdecnumber || test -f stage1-lean
+ mv stage1-libdecnumber prev-libdecnumber || test -f stage1-lean
@endif libdecnumber
@if libiberty
@cd $(HOST_SUBDIR); [ -d stageprofile-libiberty ] || \
mkdir stageprofile-libiberty; \
mv stageprofile-libiberty libiberty ; \
- mv stage1-libiberty prev-libiberty || test -f stage1-lean
+ mv stage1-libiberty prev-libiberty || test -f stage1-lean
@endif libiberty
@if zlib
@cd $(HOST_SUBDIR); [ -d stageprofile-zlib ] || \
mkdir stageprofile-zlib; \
mv stageprofile-zlib zlib ; \
- mv stage1-zlib prev-zlib || test -f stage1-lean
+ mv stage1-zlib prev-zlib || test -f stage1-lean
@endif zlib
@if lto-plugin
@cd $(HOST_SUBDIR); [ -d stageprofile-lto-plugin ] || \
mkdir stageprofile-lto-plugin; \
mv stageprofile-lto-plugin lto-plugin ; \
- mv stage1-lto-plugin prev-lto-plugin || test -f stage1-lean
+ mv stage1-lto-plugin prev-lto-plugin || test -f stage1-lean
@endif lto-plugin
@[ -d stageprofile-$(TARGET_SUBDIR) ] || \
mkdir stageprofile-$(TARGET_SUBDIR); \
mv stageprofile-$(TARGET_SUBDIR) $(TARGET_SUBDIR) ; \
- mv stage1-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage1-lean
+ mv stage1-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage1-lean
-stageprofile-end::
+stageprofile-end::
@if bfd
@if test -d $(HOST_SUBDIR)/bfd ; then \
cd $(HOST_SUBDIR); mv bfd stageprofile-bfd ; \
@@ -56741,12 +56749,12 @@ do-clean: clean-stageprofile
# Rules to wipe a stage and all the following ones, also used for cleanstrap
-distclean-stage1:: distclean-stageprofile
+distclean-stage1:: distclean-stageprofile
.PHONY: distclean-stageprofile
distclean-stageprofile::
@: $(MAKE); $(stage)
@test "`cat stage_last`" != stageprofile || rm -f stage_last
- rm -rf stageprofile-*
+ rm -rf stageprofile-*
@endif gcc-bootstrap
@@ -56763,122 +56771,122 @@ stagefeedback-start::
@cd $(HOST_SUBDIR); [ -d stagefeedback-bfd ] || \
mkdir stagefeedback-bfd; \
mv stagefeedback-bfd bfd ; \
- mv stageprofile-bfd prev-bfd || test -f stageprofile-lean
+ mv stageprofile-bfd prev-bfd || test -f stageprofile-lean
@endif bfd
@if opcodes
@cd $(HOST_SUBDIR); [ -d stagefeedback-opcodes ] || \
mkdir stagefeedback-opcodes; \
mv stagefeedback-opcodes opcodes ; \
- mv stageprofile-opcodes prev-opcodes || test -f stageprofile-lean
+ mv stageprofile-opcodes prev-opcodes || test -f stageprofile-lean
@endif opcodes
@if binutils
@cd $(HOST_SUBDIR); [ -d stagefeedback-binutils ] || \
mkdir stagefeedback-binutils; \
mv stagefeedback-binutils binutils ; \
- mv stageprofile-binutils prev-binutils || test -f stageprofile-lean
+ mv stageprofile-binutils prev-binutils || test -f stageprofile-lean
@endif binutils
@if gas
@cd $(HOST_SUBDIR); [ -d stagefeedback-gas ] || \
mkdir stagefeedback-gas; \
mv stagefeedback-gas gas ; \
- mv stageprofile-gas prev-gas || test -f stageprofile-lean
+ mv stageprofile-gas prev-gas || test -f stageprofile-lean
@endif gas
@if gcc
@cd $(HOST_SUBDIR); [ -d stagefeedback-gcc ] || \
mkdir stagefeedback-gcc; \
mv stagefeedback-gcc gcc ; \
- mv stageprofile-gcc prev-gcc || test -f stageprofile-lean
+ mv stageprofile-gcc prev-gcc || test -f stageprofile-lean
@endif gcc
@if gmp
@cd $(HOST_SUBDIR); [ -d stagefeedback-gmp ] || \
mkdir stagefeedback-gmp; \
mv stagefeedback-gmp gmp ; \
- mv stageprofile-gmp prev-gmp || test -f stageprofile-lean
+ mv stageprofile-gmp prev-gmp || test -f stageprofile-lean
@endif gmp
@if mpfr
@cd $(HOST_SUBDIR); [ -d stagefeedback-mpfr ] || \
mkdir stagefeedback-mpfr; \
mv stagefeedback-mpfr mpfr ; \
- mv stageprofile-mpfr prev-mpfr || test -f stageprofile-lean
+ mv stageprofile-mpfr prev-mpfr || test -f stageprofile-lean
@endif mpfr
@if mpc
@cd $(HOST_SUBDIR); [ -d stagefeedback-mpc ] || \
mkdir stagefeedback-mpc; \
mv stagefeedback-mpc mpc ; \
- mv stageprofile-mpc prev-mpc || test -f stageprofile-lean
+ mv stageprofile-mpc prev-mpc || test -f stageprofile-lean
@endif mpc
@if ppl
@cd $(HOST_SUBDIR); [ -d stagefeedback-ppl ] || \
mkdir stagefeedback-ppl; \
mv stagefeedback-ppl ppl ; \
- mv stageprofile-ppl prev-ppl || test -f stageprofile-lean
+ mv stageprofile-ppl prev-ppl || test -f stageprofile-lean
@endif ppl
@if cloog
@cd $(HOST_SUBDIR); [ -d stagefeedback-cloog ] || \
mkdir stagefeedback-cloog; \
mv stagefeedback-cloog cloog ; \
- mv stageprofile-cloog prev-cloog || test -f stageprofile-lean
+ mv stageprofile-cloog prev-cloog || test -f stageprofile-lean
@endif cloog
@if libelf
@cd $(HOST_SUBDIR); [ -d stagefeedback-libelf ] || \
mkdir stagefeedback-libelf; \
mv stagefeedback-libelf libelf ; \
- mv stageprofile-libelf prev-libelf || test -f stageprofile-lean
+ mv stageprofile-libelf prev-libelf || test -f stageprofile-lean
@endif libelf
@if gold
@cd $(HOST_SUBDIR); [ -d stagefeedback-gold ] || \
mkdir stagefeedback-gold; \
mv stagefeedback-gold gold ; \
- mv stageprofile-gold prev-gold || test -f stageprofile-lean
+ mv stageprofile-gold prev-gold || test -f stageprofile-lean
@endif gold
@if intl
@cd $(HOST_SUBDIR); [ -d stagefeedback-intl ] || \
mkdir stagefeedback-intl; \
mv stagefeedback-intl intl ; \
- mv stageprofile-intl prev-intl || test -f stageprofile-lean
+ mv stageprofile-intl prev-intl || test -f stageprofile-lean
@endif intl
@if ld
@cd $(HOST_SUBDIR); [ -d stagefeedback-ld ] || \
mkdir stagefeedback-ld; \
mv stagefeedback-ld ld ; \
- mv stageprofile-ld prev-ld || test -f stageprofile-lean
+ mv stageprofile-ld prev-ld || test -f stageprofile-lean
@endif ld
@if libcpp
@cd $(HOST_SUBDIR); [ -d stagefeedback-libcpp ] || \
mkdir stagefeedback-libcpp; \
mv stagefeedback-libcpp libcpp ; \
- mv stageprofile-libcpp prev-libcpp || test -f stageprofile-lean
+ mv stageprofile-libcpp prev-libcpp || test -f stageprofile-lean
@endif libcpp
@if libdecnumber
@cd $(HOST_SUBDIR); [ -d stagefeedback-libdecnumber ] || \
mkdir stagefeedback-libdecnumber; \
mv stagefeedback-libdecnumber libdecnumber ; \
- mv stageprofile-libdecnumber prev-libdecnumber || test -f stageprofile-lean
+ mv stageprofile-libdecnumber prev-libdecnumber || test -f stageprofile-lean
@endif libdecnumber
@if libiberty
@cd $(HOST_SUBDIR); [ -d stagefeedback-libiberty ] || \
mkdir stagefeedback-libiberty; \
mv stagefeedback-libiberty libiberty ; \
- mv stageprofile-libiberty prev-libiberty || test -f stageprofile-lean
+ mv stageprofile-libiberty prev-libiberty || test -f stageprofile-lean
@endif libiberty
@if zlib
@cd $(HOST_SUBDIR); [ -d stagefeedback-zlib ] || \
mkdir stagefeedback-zlib; \
mv stagefeedback-zlib zlib ; \
- mv stageprofile-zlib prev-zlib || test -f stageprofile-lean
+ mv stageprofile-zlib prev-zlib || test -f stageprofile-lean
@endif zlib
@if lto-plugin
@cd $(HOST_SUBDIR); [ -d stagefeedback-lto-plugin ] || \
mkdir stagefeedback-lto-plugin; \
mv stagefeedback-lto-plugin lto-plugin ; \
- mv stageprofile-lto-plugin prev-lto-plugin || test -f stageprofile-lean
+ mv stageprofile-lto-plugin prev-lto-plugin || test -f stageprofile-lean
@endif lto-plugin
@[ -d stagefeedback-$(TARGET_SUBDIR) ] || \
mkdir stagefeedback-$(TARGET_SUBDIR); \
mv stagefeedback-$(TARGET_SUBDIR) $(TARGET_SUBDIR) ; \
- mv stageprofile-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stageprofile-lean
+ mv stageprofile-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stageprofile-lean
-stagefeedback-end::
+stagefeedback-end::
@if bfd
@if test -d $(HOST_SUBDIR)/bfd ; then \
cd $(HOST_SUBDIR); mv bfd stagefeedback-bfd ; \
@@ -57047,12 +57055,12 @@ profiledbootstrap-lean:
# Rules to wipe a stage and all the following ones, also used for cleanstrap
-distclean-stageprofile:: distclean-stagefeedback
+distclean-stageprofile:: distclean-stagefeedback
.PHONY: distclean-stagefeedback
distclean-stagefeedback::
@: $(MAKE); $(stage)
@test "`cat stage_last`" != stagefeedback || rm -f stage_last
- rm -rf stagefeedback-*
+ rm -rf stagefeedback-*
@endif gcc-bootstrap
@@ -57967,7 +57975,7 @@ all-gdb: $(gdbnlmrequirements) $(GDB_TK)
install-gdb: $(INSTALL_GDB_TK)
# Serialization dependencies. Host configures don't work well in parallel to
-# each other, due to contention over config.cache. Target configures and
+# each other, due to contention over config.cache. Target configures and
# build configures are similar.
@serialization_dependencies@
« no previous file with comments | « no previous file | configure » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698