]> gcc.gnu.org Git - gcc.git/blobdiff - Makefile.in
Merge branch 'master' into devel/modula-2.
[gcc.git] / Makefile.in
index 0f18c67120a5b54f2cb1d9b09fce1be05be5b5a7..052ae79e5d1615a0e75095c7a0bb7b37b128ace2 100644 (file)
 # 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/>.
@@ -163,6 +163,7 @@ BUILD_EXPORTS = \
        GOCFLAGS="$(GOCFLAGS_FOR_BUILD)"; export GOCFLAGS; \
        GDC="$(GDC_FOR_BUILD)"; export GDC; \
        GDCFLAGS="$(GDCFLAGS_FOR_BUILD)"; export GDCFLAGS; \
+       GM2="$(GM2_FOR_BUILD)"; export GM2; \
        DLLTOOL="$(DLLTOOL_FOR_BUILD)"; export DLLTOOL; \
        DSYMUTIL="$(DSYMUTIL_FOR_BUILD)"; export DSYMUTIL; \
        LD="$(LD_FOR_BUILD)"; export LD; \
@@ -201,6 +202,7 @@ HOST_EXPORTS = \
        GFORTRAN="$(GFORTRAN)"; export GFORTRAN; \
        GOC="$(GOC)"; export GOC; \
        GDC="$(GDC)"; export GDC; \
+       GM2="$(GM2)"; export GM2; \
        AR="$(AR)"; export AR; \
        AS="$(AS)"; export AS; \
        CC_FOR_BUILD="$(CC_FOR_BUILD)"; export CC_FOR_BUILD; \
@@ -306,6 +308,7 @@ BASE_TARGET_EXPORTS = \
        GFORTRAN="$(GFORTRAN_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export GFORTRAN; \
        GOC="$(GOC_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export GOC; \
        GDC="$(GDC_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export GDC; \
+       GM2="$(GM2_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export GM2; \
        DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \
        DSYMUTIL="$(DSYMUTIL_FOR_TARGET)"; export DSYMUTIL; \
        LD="$(COMPILER_LD_FOR_TARGET)"; export LD; \
@@ -376,6 +379,7 @@ DSYMUTIL_FOR_BUILD = @DSYMUTIL_FOR_BUILD@
 GFORTRAN_FOR_BUILD = @GFORTRAN_FOR_BUILD@
 GOC_FOR_BUILD = @GOC_FOR_BUILD@
 GDC_FOR_BUILD = @GDC_FOR_BUILD@
+GM2_FOR_BUILD = @GM2_FOR_BUILD@
 LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@
 LD_FOR_BUILD = @LD_FOR_BUILD@
 NM_FOR_BUILD = @NM_FOR_BUILD@
@@ -446,6 +450,7 @@ CXXFLAGS = @CXXFLAGS@
 LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
 GOCFLAGS = $(CFLAGS)
 GDCFLAGS = $(CFLAGS)
+GM2FLAGS = $(CFLAGS)
 
 CREATE_GCOV = create_gcov
 
@@ -618,6 +623,7 @@ RAW_CXX_FOR_TARGET=$(STAGE_CC_WRAPPER) @RAW_CXX_FOR_TARGET@
 GFORTRAN_FOR_TARGET=$(STAGE_CC_WRAPPER) @GFORTRAN_FOR_TARGET@
 GOC_FOR_TARGET=$(STAGE_CC_WRAPPER) @GOC_FOR_TARGET@
 GDC_FOR_TARGET=$(STAGE_CC_WRAPPER) @GDC_FOR_TARGET@
+GM2_FOR_TARGET=$(STAGE_CC_WRAPPER) @GM2_FOR_TARGET@
 DLLTOOL_FOR_TARGET=@DLLTOOL_FOR_TARGET@
 DSYMUTIL_FOR_TARGET=@DSYMUTIL_FOR_TARGET@
 LD_FOR_TARGET=@LD_FOR_TARGET@
@@ -643,6 +649,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@
+GM2FLAGS_FOR_TARGET = -O2 -g
 GOCFLAGS_FOR_TARGET = -O2 -g
 GDCFLAGS_FOR_TARGET = -O2 -g
 
@@ -669,7 +676,7 @@ all:
 
 # This is the list of directories that may be needed in RPATH_ENVVAR
 # so that programs built for the target machine work.
-TARGET_LIB_PATH = $(TARGET_LIB_PATH_libstdc++-v3)$(TARGET_LIB_PATH_libsanitizer)$(TARGET_LIB_PATH_libvtv)$(TARGET_LIB_PATH_liboffloadmic)$(TARGET_LIB_PATH_libssp)$(TARGET_LIB_PATH_libphobos)$(TARGET_LIB_PATH_libgomp)$(TARGET_LIB_PATH_libitm)$(TARGET_LIB_PATH_libatomic)$(HOST_LIB_PATH_gcc)
+TARGET_LIB_PATH = $(TARGET_LIB_PATH_libstdc++-v3)$(TARGET_LIB_PATH_libsanitizer)$(TARGET_LIB_PATH_libvtv)$(TARGET_LIB_PATH_liboffloadmic)$(TARGET_LIB_PATH_libssp)$(TARGET_LIB_PATH_libphobos)$(TARGET_LIB_PATH_libgm2)$(TARGET_LIB_PATH_libgomp)$(TARGET_LIB_PATH_libitm)$(TARGET_LIB_PATH_libatomic)$(HOST_LIB_PATH_gcc)
 
 @if target-libstdc++-v3
 TARGET_LIB_PATH_libstdc++-v3 = $$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs:
@@ -695,6 +702,10 @@ TARGET_LIB_PATH_libssp = $$r/$(TARGET_SUBDIR)/libssp/.libs:
 TARGET_LIB_PATH_libphobos = $$r/$(TARGET_SUBDIR)/libphobos/src/.libs:
 @endif target-libphobos
 
+@if target-libgm2
+TARGET_LIB_PATH_libgm2 = $$r/$(TARGET_SUBDIR)/libgm2/.libs:
+@endif target-libgm2
+
 @if target-libgomp
 TARGET_LIB_PATH_libgomp = $$r/$(TARGET_SUBDIR)/libgomp/.libs:
 @endif target-libgomp
@@ -845,6 +856,8 @@ BASE_FLAGS_TO_PASS = \
        "GOCFLAGS_FOR_TARGET=$(GOCFLAGS_FOR_TARGET)" \
        "GDC_FOR_TARGET=$(GDC_FOR_TARGET)" \
        "GDCFLAGS_FOR_TARGET=$(GDCFLAGS_FOR_TARGET)" \
+       "GM2_FOR_TARGET=$(GM2_FOR_TARGET)" \
+       "GM2FLAGS_FOR_TARGET=$(GM2FLAGS_FOR_TARGET)" \
        "LD_FOR_TARGET=$(LD_FOR_TARGET)" \
        "LIPO_FOR_TARGET=$(LIPO_FOR_TARGET)" \
        "LDFLAGS_FOR_TARGET=$(LDFLAGS_FOR_TARGET)" \
@@ -918,6 +931,7 @@ EXTRA_HOST_FLAGS = \
        'GFORTRAN=$(GFORTRAN)' \
        'GOC=$(GOC)' \
        'GDC=$(GDC)' \
+       'GM2=$(GM2)' \
        'LD=$(LD)' \
        'LIPO=$(LIPO)' \
        'NM=$(NM)' \
@@ -944,6 +958,7 @@ POSTSTAGE1_FLAGS_TO_PASS = \
        CC="$${CC}" CC_FOR_BUILD="$${CC_FOR_BUILD}" \
        CXX="$${CXX}" CXX_FOR_BUILD="$${CXX_FOR_BUILD}" \
        GDC="$${GDC}" GDC_FOR_BUILD="$${GDC_FOR_BUILD}" \
+       GM2="$${GM2}" GM2_FOR_BUILD="$${GM2_FOR_BUILD}" \
        GNATBIND="$${GNATBIND}" \
        LDFLAGS="$${LDFLAGS}" \
        HOST_LIBS="$${HOST_LIBS}" \
@@ -979,6 +994,8 @@ EXTRA_TARGET_FLAGS = \
        'GOCFLAGS=$$(GOCFLAGS_FOR_TARGET)' \
        'GDC=$$(GDC_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
        'GDCFLAGS=$$(GDCFLAGS_FOR_TARGET)' \
+       'GM2=$$(GM2_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
+       'GM2FLAGS=$$(GM2FLAGS_FOR_TARGET)' \
        'LD=$(COMPILER_LD_FOR_TARGET)' \
        'LDFLAGS=$$(LDFLAGS_FOR_TARGET)' \
        'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
@@ -1005,6 +1022,7 @@ TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
 # cross-building scheme.
 EXTRA_GCC_FLAGS = \
        "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
+       "GM2_FOR_TARGET=$(GM2_FOR_TARGET)" \
        "`echo 'STMP_FIXPROTO=$(STMP_FIXPROTO)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
        "`echo 'LIMITS_H_TEST=$(LIMITS_H_TEST)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`"
 
@@ -1069,6 +1087,7 @@ configure-host:  \
     maybe-configure-gnattools \
     maybe-configure-lto-plugin \
     maybe-configure-libcc1 \
+    maybe-configure-gm2tools \
     maybe-configure-gotools \
     maybe-configure-libctf
 .PHONY: configure-target
@@ -1093,6 +1112,7 @@ configure-target:  \
     maybe-configure-target-zlib \
     maybe-configure-target-rda \
     maybe-configure-target-libada \
+    maybe-configure-target-libgm2 \
     maybe-configure-target-libgomp \
     maybe-configure-target-libitm \
     maybe-configure-target-libatomic
@@ -1230,6 +1250,7 @@ all-host: maybe-all-gnattools
 all-host: maybe-all-lto-plugin
 @endif lto-plugin-no-bootstrap
 all-host: maybe-all-libcc1
+all-host: maybe-all-gm2tools
 all-host: maybe-all-gotools
 @if libctf-no-bootstrap
 all-host: maybe-all-libctf
@@ -1271,6 +1292,7 @@ all-target: maybe-all-target-zlib
 @endif target-zlib-no-bootstrap
 all-target: maybe-all-target-rda
 all-target: maybe-all-target-libada
+all-target: maybe-all-target-libgm2
 @if target-libgomp-no-bootstrap
 all-target: maybe-all-target-libgomp
 @endif target-libgomp-no-bootstrap
@@ -1345,6 +1367,7 @@ info-host: maybe-info-c++tools
 info-host: maybe-info-gnattools
 info-host: maybe-info-lto-plugin
 info-host: maybe-info-libcc1
+info-host: maybe-info-gm2tools
 info-host: maybe-info-gotools
 info-host: maybe-info-libctf
 
@@ -1370,6 +1393,7 @@ info-target: maybe-info-target-libffi
 info-target: maybe-info-target-zlib
 info-target: maybe-info-target-rda
 info-target: maybe-info-target-libada
+info-target: maybe-info-target-libgm2
 info-target: maybe-info-target-libgomp
 info-target: maybe-info-target-libitm
 info-target: maybe-info-target-libatomic
@@ -1435,6 +1459,7 @@ dvi-host: maybe-dvi-c++tools
 dvi-host: maybe-dvi-gnattools
 dvi-host: maybe-dvi-lto-plugin
 dvi-host: maybe-dvi-libcc1
+dvi-host: maybe-dvi-gm2tools
 dvi-host: maybe-dvi-gotools
 dvi-host: maybe-dvi-libctf
 
@@ -1460,6 +1485,7 @@ dvi-target: maybe-dvi-target-libffi
 dvi-target: maybe-dvi-target-zlib
 dvi-target: maybe-dvi-target-rda
 dvi-target: maybe-dvi-target-libada
+dvi-target: maybe-dvi-target-libgm2
 dvi-target: maybe-dvi-target-libgomp
 dvi-target: maybe-dvi-target-libitm
 dvi-target: maybe-dvi-target-libatomic
@@ -1525,6 +1551,7 @@ pdf-host: maybe-pdf-c++tools
 pdf-host: maybe-pdf-gnattools
 pdf-host: maybe-pdf-lto-plugin
 pdf-host: maybe-pdf-libcc1
+pdf-host: maybe-pdf-gm2tools
 pdf-host: maybe-pdf-gotools
 pdf-host: maybe-pdf-libctf
 
@@ -1550,6 +1577,7 @@ pdf-target: maybe-pdf-target-libffi
 pdf-target: maybe-pdf-target-zlib
 pdf-target: maybe-pdf-target-rda
 pdf-target: maybe-pdf-target-libada
+pdf-target: maybe-pdf-target-libgm2
 pdf-target: maybe-pdf-target-libgomp
 pdf-target: maybe-pdf-target-libitm
 pdf-target: maybe-pdf-target-libatomic
@@ -1615,6 +1643,7 @@ html-host: maybe-html-c++tools
 html-host: maybe-html-gnattools
 html-host: maybe-html-lto-plugin
 html-host: maybe-html-libcc1
+html-host: maybe-html-gm2tools
 html-host: maybe-html-gotools
 html-host: maybe-html-libctf
 
@@ -1640,6 +1669,7 @@ html-target: maybe-html-target-libffi
 html-target: maybe-html-target-zlib
 html-target: maybe-html-target-rda
 html-target: maybe-html-target-libada
+html-target: maybe-html-target-libgm2
 html-target: maybe-html-target-libgomp
 html-target: maybe-html-target-libitm
 html-target: maybe-html-target-libatomic
@@ -1705,6 +1735,7 @@ TAGS-host: maybe-TAGS-c++tools
 TAGS-host: maybe-TAGS-gnattools
 TAGS-host: maybe-TAGS-lto-plugin
 TAGS-host: maybe-TAGS-libcc1
+TAGS-host: maybe-TAGS-gm2tools
 TAGS-host: maybe-TAGS-gotools
 TAGS-host: maybe-TAGS-libctf
 
@@ -1730,6 +1761,7 @@ TAGS-target: maybe-TAGS-target-libffi
 TAGS-target: maybe-TAGS-target-zlib
 TAGS-target: maybe-TAGS-target-rda
 TAGS-target: maybe-TAGS-target-libada
+TAGS-target: maybe-TAGS-target-libgm2
 TAGS-target: maybe-TAGS-target-libgomp
 TAGS-target: maybe-TAGS-target-libitm
 TAGS-target: maybe-TAGS-target-libatomic
@@ -1795,6 +1827,7 @@ install-info-host: maybe-install-info-c++tools
 install-info-host: maybe-install-info-gnattools
 install-info-host: maybe-install-info-lto-plugin
 install-info-host: maybe-install-info-libcc1
+install-info-host: maybe-install-info-gm2tools
 install-info-host: maybe-install-info-gotools
 install-info-host: maybe-install-info-libctf
 
@@ -1820,6 +1853,7 @@ install-info-target: maybe-install-info-target-libffi
 install-info-target: maybe-install-info-target-zlib
 install-info-target: maybe-install-info-target-rda
 install-info-target: maybe-install-info-target-libada
+install-info-target: maybe-install-info-target-libgm2
 install-info-target: maybe-install-info-target-libgomp
 install-info-target: maybe-install-info-target-libitm
 install-info-target: maybe-install-info-target-libatomic
@@ -1885,6 +1919,7 @@ install-dvi-host: maybe-install-dvi-c++tools
 install-dvi-host: maybe-install-dvi-gnattools
 install-dvi-host: maybe-install-dvi-lto-plugin
 install-dvi-host: maybe-install-dvi-libcc1
+install-dvi-host: maybe-install-dvi-gm2tools
 install-dvi-host: maybe-install-dvi-gotools
 install-dvi-host: maybe-install-dvi-libctf
 
@@ -1910,6 +1945,7 @@ install-dvi-target: maybe-install-dvi-target-libffi
 install-dvi-target: maybe-install-dvi-target-zlib
 install-dvi-target: maybe-install-dvi-target-rda
 install-dvi-target: maybe-install-dvi-target-libada
+install-dvi-target: maybe-install-dvi-target-libgm2
 install-dvi-target: maybe-install-dvi-target-libgomp
 install-dvi-target: maybe-install-dvi-target-libitm
 install-dvi-target: maybe-install-dvi-target-libatomic
@@ -1975,6 +2011,7 @@ install-pdf-host: maybe-install-pdf-c++tools
 install-pdf-host: maybe-install-pdf-gnattools
 install-pdf-host: maybe-install-pdf-lto-plugin
 install-pdf-host: maybe-install-pdf-libcc1
+install-pdf-host: maybe-install-pdf-gm2tools
 install-pdf-host: maybe-install-pdf-gotools
 install-pdf-host: maybe-install-pdf-libctf
 
@@ -2000,6 +2037,7 @@ install-pdf-target: maybe-install-pdf-target-libffi
 install-pdf-target: maybe-install-pdf-target-zlib
 install-pdf-target: maybe-install-pdf-target-rda
 install-pdf-target: maybe-install-pdf-target-libada
+install-pdf-target: maybe-install-pdf-target-libgm2
 install-pdf-target: maybe-install-pdf-target-libgomp
 install-pdf-target: maybe-install-pdf-target-libitm
 install-pdf-target: maybe-install-pdf-target-libatomic
@@ -2065,6 +2103,7 @@ install-html-host: maybe-install-html-c++tools
 install-html-host: maybe-install-html-gnattools
 install-html-host: maybe-install-html-lto-plugin
 install-html-host: maybe-install-html-libcc1
+install-html-host: maybe-install-html-gm2tools
 install-html-host: maybe-install-html-gotools
 install-html-host: maybe-install-html-libctf
 
@@ -2090,6 +2129,7 @@ install-html-target: maybe-install-html-target-libffi
 install-html-target: maybe-install-html-target-zlib
 install-html-target: maybe-install-html-target-rda
 install-html-target: maybe-install-html-target-libada
+install-html-target: maybe-install-html-target-libgm2
 install-html-target: maybe-install-html-target-libgomp
 install-html-target: maybe-install-html-target-libitm
 install-html-target: maybe-install-html-target-libatomic
@@ -2155,6 +2195,7 @@ installcheck-host: maybe-installcheck-c++tools
 installcheck-host: maybe-installcheck-gnattools
 installcheck-host: maybe-installcheck-lto-plugin
 installcheck-host: maybe-installcheck-libcc1
+installcheck-host: maybe-installcheck-gm2tools
 installcheck-host: maybe-installcheck-gotools
 installcheck-host: maybe-installcheck-libctf
 
@@ -2180,6 +2221,7 @@ installcheck-target: maybe-installcheck-target-libffi
 installcheck-target: maybe-installcheck-target-zlib
 installcheck-target: maybe-installcheck-target-rda
 installcheck-target: maybe-installcheck-target-libada
+installcheck-target: maybe-installcheck-target-libgm2
 installcheck-target: maybe-installcheck-target-libgomp
 installcheck-target: maybe-installcheck-target-libitm
 installcheck-target: maybe-installcheck-target-libatomic
@@ -2245,6 +2287,7 @@ mostlyclean-host: maybe-mostlyclean-c++tools
 mostlyclean-host: maybe-mostlyclean-gnattools
 mostlyclean-host: maybe-mostlyclean-lto-plugin
 mostlyclean-host: maybe-mostlyclean-libcc1
+mostlyclean-host: maybe-mostlyclean-gm2tools
 mostlyclean-host: maybe-mostlyclean-gotools
 mostlyclean-host: maybe-mostlyclean-libctf
 
@@ -2270,6 +2313,7 @@ mostlyclean-target: maybe-mostlyclean-target-libffi
 mostlyclean-target: maybe-mostlyclean-target-zlib
 mostlyclean-target: maybe-mostlyclean-target-rda
 mostlyclean-target: maybe-mostlyclean-target-libada
+mostlyclean-target: maybe-mostlyclean-target-libgm2
 mostlyclean-target: maybe-mostlyclean-target-libgomp
 mostlyclean-target: maybe-mostlyclean-target-libitm
 mostlyclean-target: maybe-mostlyclean-target-libatomic
@@ -2335,6 +2379,7 @@ clean-host: maybe-clean-c++tools
 clean-host: maybe-clean-gnattools
 clean-host: maybe-clean-lto-plugin
 clean-host: maybe-clean-libcc1
+clean-host: maybe-clean-gm2tools
 clean-host: maybe-clean-gotools
 clean-host: maybe-clean-libctf
 
@@ -2360,6 +2405,7 @@ clean-target: maybe-clean-target-libffi
 clean-target: maybe-clean-target-zlib
 clean-target: maybe-clean-target-rda
 clean-target: maybe-clean-target-libada
+clean-target: maybe-clean-target-libgm2
 clean-target: maybe-clean-target-libgomp
 clean-target: maybe-clean-target-libitm
 clean-target: maybe-clean-target-libatomic
@@ -2425,6 +2471,7 @@ distclean-host: maybe-distclean-c++tools
 distclean-host: maybe-distclean-gnattools
 distclean-host: maybe-distclean-lto-plugin
 distclean-host: maybe-distclean-libcc1
+distclean-host: maybe-distclean-gm2tools
 distclean-host: maybe-distclean-gotools
 distclean-host: maybe-distclean-libctf
 
@@ -2450,6 +2497,7 @@ distclean-target: maybe-distclean-target-libffi
 distclean-target: maybe-distclean-target-zlib
 distclean-target: maybe-distclean-target-rda
 distclean-target: maybe-distclean-target-libada
+distclean-target: maybe-distclean-target-libgm2
 distclean-target: maybe-distclean-target-libgomp
 distclean-target: maybe-distclean-target-libitm
 distclean-target: maybe-distclean-target-libatomic
@@ -2515,6 +2563,7 @@ maintainer-clean-host: maybe-maintainer-clean-c++tools
 maintainer-clean-host: maybe-maintainer-clean-gnattools
 maintainer-clean-host: maybe-maintainer-clean-lto-plugin
 maintainer-clean-host: maybe-maintainer-clean-libcc1
+maintainer-clean-host: maybe-maintainer-clean-gm2tools
 maintainer-clean-host: maybe-maintainer-clean-gotools
 maintainer-clean-host: maybe-maintainer-clean-libctf
 
@@ -2540,6 +2589,7 @@ maintainer-clean-target: maybe-maintainer-clean-target-libffi
 maintainer-clean-target: maybe-maintainer-clean-target-zlib
 maintainer-clean-target: maybe-maintainer-clean-target-rda
 maintainer-clean-target: maybe-maintainer-clean-target-libada
+maintainer-clean-target: maybe-maintainer-clean-target-libgm2
 maintainer-clean-target: maybe-maintainer-clean-target-libgomp
 maintainer-clean-target: maybe-maintainer-clean-target-libitm
 maintainer-clean-target: maybe-maintainer-clean-target-libatomic
@@ -2590,7 +2640,7 @@ local-distclean:
        -rm -f texinfo/doc/Makefile texinfo/po/POTFILES
        -rmdir texinfo/doc texinfo/info texinfo/intl texinfo/lib 2>/dev/null
        -rmdir texinfo/makeinfo texinfo/po texinfo/util 2>/dev/null
-       -rmdir c++tools fastjar gcc gnattools gotools 2>/dev/null
+       -rmdir c++tools fastjar gcc gnattools gm2tools gotools 2>/dev/null
        -rmdir libcc1 libiberty texinfo zlib 2>/dev/null
        -find . -name config.cache -exec rm -f {} \; \; 2>/dev/null
 
@@ -2601,7 +2651,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
 
@@ -2663,6 +2713,7 @@ check-host:  \
     maybe-check-gnattools \
     maybe-check-lto-plugin \
     maybe-check-libcc1 \
+    maybe-check-gm2tools \
     maybe-check-gotools \
     maybe-check-libctf
 
@@ -2688,6 +2739,7 @@ check-target:  \
     maybe-check-target-zlib \
     maybe-check-target-rda \
     maybe-check-target-libada \
+    maybe-check-target-libgm2 \
     maybe-check-target-libgomp \
     maybe-check-target-libitm \
     maybe-check-target-libatomic
@@ -2800,6 +2852,7 @@ install-host-nogcc:  \
     maybe-install-gnattools \
     maybe-install-lto-plugin \
     maybe-install-libcc1 \
+    maybe-install-gm2tools \
     maybe-install-gotools \
     maybe-install-libctf
 
@@ -2855,6 +2908,7 @@ install-host:  \
     maybe-install-gnattools \
     maybe-install-lto-plugin \
     maybe-install-libcc1 \
+    maybe-install-gm2tools \
     maybe-install-gotools \
     maybe-install-libctf
 
@@ -2880,6 +2934,7 @@ install-target:  \
     maybe-install-target-zlib \
     maybe-install-target-rda \
     maybe-install-target-libada \
+    maybe-install-target-libgm2 \
     maybe-install-target-libgomp \
     maybe-install-target-libitm \
     maybe-install-target-libatomic
@@ -2965,6 +3020,7 @@ install-strip-host:  \
     maybe-install-strip-gnattools \
     maybe-install-strip-lto-plugin \
     maybe-install-strip-libcc1 \
+    maybe-install-strip-gm2tools \
     maybe-install-strip-gotools \
     maybe-install-strip-libctf
 
@@ -2990,6 +3046,7 @@ install-strip-target:  \
     maybe-install-strip-target-zlib \
     maybe-install-strip-target-rda \
     maybe-install-strip-target-libada \
+    maybe-install-strip-target-libgm2 \
     maybe-install-strip-target-libgomp \
     maybe-install-strip-target-libitm \
     maybe-install-strip-target-libatomic
@@ -3013,7 +3070,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
 
@@ -3045,7 +3102,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; \
@@ -3102,7 +3159,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; \
@@ -3159,7 +3216,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; \
@@ -3216,7 +3273,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; \
@@ -3273,7 +3330,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; \
@@ -3330,7 +3387,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; \
@@ -3387,7 +3444,7 @@ configure-build-libcpp: stage_current
 @endif gcc-bootstrap
 @if build-libcpp
 maybe-configure-build-libcpp: configure-build-libcpp
-configure-build-libcpp: 
+configure-build-libcpp:
        @: $(MAKE); $(unstage)
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -3449,7 +3506,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; \
@@ -4236,7 +4293,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; \
@@ -4261,7 +4318,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; \
@@ -4286,7 +4343,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; \
@@ -4311,7 +4368,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; \
@@ -4336,7 +4393,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; \
@@ -4362,7 +4419,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; \
@@ -4388,7 +4445,7 @@ maybe-install-dvi-bfd: install-dvi-bfd
 
 install-dvi-bfd: \
     configure-bfd \
-    dvi-bfd 
+    dvi-bfd
        @[ -f ./bfd/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -4414,7 +4471,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; \
@@ -4440,7 +4497,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; \
@@ -4465,7 +4522,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; \
@@ -4489,7 +4546,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; \
@@ -4513,7 +4570,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; \
@@ -4537,7 +4594,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; \
@@ -4561,7 +4618,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; \
@@ -4589,7 +4646,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; \
@@ -5376,7 +5433,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; \
@@ -5401,7 +5458,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; \
@@ -5426,7 +5483,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; \
@@ -5451,7 +5508,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; \
@@ -5476,7 +5533,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; \
@@ -5502,7 +5559,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; \
@@ -5528,7 +5585,7 @@ maybe-install-dvi-opcodes: install-dvi-opcodes
 
 install-dvi-opcodes: \
     configure-opcodes \
-    dvi-opcodes 
+    dvi-opcodes
        @[ -f ./opcodes/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -5554,7 +5611,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; \
@@ -5580,7 +5637,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; \
@@ -5605,7 +5662,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; \
@@ -5629,7 +5686,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; \
@@ -5653,7 +5710,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; \
@@ -5677,7 +5734,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; \
@@ -5701,7 +5758,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; \
@@ -5729,7 +5786,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; \
@@ -6516,7 +6573,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; \
@@ -6541,7 +6598,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; \
@@ -6566,7 +6623,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; \
@@ -6591,7 +6648,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; \
@@ -6616,7 +6673,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; \
@@ -6642,7 +6699,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; \
@@ -6668,7 +6725,7 @@ maybe-install-dvi-binutils: install-dvi-binutils
 
 install-dvi-binutils: \
     configure-binutils \
-    dvi-binutils 
+    dvi-binutils
        @[ -f ./binutils/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -6694,7 +6751,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; \
@@ -6720,7 +6777,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; \
@@ -6745,7 +6802,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; \
@@ -6769,7 +6826,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; \
@@ -6793,7 +6850,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; \
@@ -6817,7 +6874,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; \
@@ -6841,7 +6898,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; \
@@ -6869,7 +6926,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; \
@@ -6973,7 +7030,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; \
@@ -6999,7 +7056,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; \
@@ -7025,7 +7082,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; \
@@ -7051,7 +7108,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; \
@@ -7077,7 +7134,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; \
@@ -7104,7 +7161,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; \
@@ -7131,7 +7188,7 @@ maybe-install-dvi-bison: install-dvi-bison
 
 install-dvi-bison: \
     configure-bison \
-    dvi-bison 
+    dvi-bison
        @: $(MAKE); $(unstage)
        @[ -f ./bison/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -7158,7 +7215,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; \
@@ -7185,7 +7242,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; \
@@ -7211,7 +7268,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; \
@@ -7236,7 +7293,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; \
@@ -7261,7 +7318,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; \
@@ -7286,7 +7343,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; \
@@ -7311,7 +7368,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; \
@@ -7340,7 +7397,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; \
@@ -7441,7 +7498,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; \
@@ -7467,7 +7524,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; \
@@ -7493,7 +7550,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; \
@@ -7519,7 +7576,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; \
@@ -7545,7 +7602,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; \
@@ -7572,7 +7629,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; \
@@ -7599,7 +7656,7 @@ maybe-install-dvi-cgen: install-dvi-cgen
 
 install-dvi-cgen: \
     configure-cgen \
-    dvi-cgen 
+    dvi-cgen
        @: $(MAKE); $(unstage)
        @[ -f ./cgen/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -7626,7 +7683,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; \
@@ -7653,7 +7710,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; \
@@ -7679,7 +7736,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; \
@@ -7704,7 +7761,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; \
@@ -7729,7 +7786,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; \
@@ -7754,7 +7811,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; \
@@ -7779,7 +7836,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; \
@@ -7808,7 +7865,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; \
@@ -7909,7 +7966,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; \
@@ -7935,7 +7992,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; \
@@ -7961,7 +8018,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; \
@@ -7987,7 +8044,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; \
@@ -8013,7 +8070,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; \
@@ -8040,7 +8097,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; \
@@ -8067,7 +8124,7 @@ maybe-install-dvi-dejagnu: install-dvi-dejagnu
 
 install-dvi-dejagnu: \
     configure-dejagnu \
-    dvi-dejagnu 
+    dvi-dejagnu
        @: $(MAKE); $(unstage)
        @[ -f ./dejagnu/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -8094,7 +8151,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; \
@@ -8121,7 +8178,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; \
@@ -8147,7 +8204,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; \
@@ -8172,7 +8229,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; \
@@ -8197,7 +8254,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; \
@@ -8222,7 +8279,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; \
@@ -8247,7 +8304,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; \
@@ -8276,7 +8333,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; \
@@ -8377,7 +8434,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; \
@@ -8403,7 +8460,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; \
@@ -8429,7 +8486,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; \
@@ -8455,7 +8512,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; \
@@ -8481,7 +8538,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; \
@@ -8508,7 +8565,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; \
@@ -8535,7 +8592,7 @@ maybe-install-dvi-etc: install-dvi-etc
 
 install-dvi-etc: \
     configure-etc \
-    dvi-etc 
+    dvi-etc
        @: $(MAKE); $(unstage)
        @[ -f ./etc/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -8562,7 +8619,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; \
@@ -8589,7 +8646,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; \
@@ -8615,7 +8672,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; \
@@ -8640,7 +8697,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; \
@@ -8665,7 +8722,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; \
@@ -8690,7 +8747,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; \
@@ -8715,7 +8772,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; \
@@ -8744,7 +8801,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; \
@@ -8848,7 +8905,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; \
@@ -8874,7 +8931,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; \
@@ -8900,7 +8957,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; \
@@ -8926,7 +8983,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; \
@@ -8952,7 +9009,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; \
@@ -8979,7 +9036,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; \
@@ -9006,7 +9063,7 @@ maybe-install-dvi-fastjar: install-dvi-fastjar
 
 install-dvi-fastjar: \
     configure-fastjar \
-    dvi-fastjar 
+    dvi-fastjar
        @: $(MAKE); $(unstage)
        @[ -f ./fastjar/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -9033,7 +9090,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; \
@@ -9060,7 +9117,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; \
@@ -9086,7 +9143,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; \
@@ -9111,7 +9168,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; \
@@ -9136,7 +9193,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; \
@@ -9161,7 +9218,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; \
@@ -9186,7 +9243,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; \
@@ -9215,7 +9272,7 @@ configure-fixincludes: stage_current
 @endif gcc-bootstrap
 @if fixincludes
 maybe-configure-fixincludes: configure-fixincludes
-configure-fixincludes: 
+configure-fixincludes:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        test ! -f $(HOST_SUBDIR)/fixincludes/Makefile || exit 0; \
@@ -10002,7 +10059,7 @@ maybe-info-fixincludes:
 maybe-info-fixincludes: info-fixincludes
 
 info-fixincludes: \
-    configure-fixincludes 
+    configure-fixincludes
        @[ -f ./fixincludes/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10027,7 +10084,7 @@ maybe-dvi-fixincludes:
 maybe-dvi-fixincludes: dvi-fixincludes
 
 dvi-fixincludes: \
-    configure-fixincludes 
+    configure-fixincludes
        @[ -f ./fixincludes/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10052,7 +10109,7 @@ maybe-pdf-fixincludes:
 maybe-pdf-fixincludes: pdf-fixincludes
 
 pdf-fixincludes: \
-    configure-fixincludes 
+    configure-fixincludes
        @[ -f ./fixincludes/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10077,7 +10134,7 @@ maybe-html-fixincludes:
 maybe-html-fixincludes: html-fixincludes
 
 html-fixincludes: \
-    configure-fixincludes 
+    configure-fixincludes
        @[ -f ./fixincludes/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10113,7 +10170,7 @@ maybe-install-info-fixincludes: install-info-fixincludes
 
 install-info-fixincludes: \
     configure-fixincludes \
-    info-fixincludes 
+    info-fixincludes
        @[ -f ./fixincludes/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10149,7 +10206,7 @@ maybe-install-pdf-fixincludes: install-pdf-fixincludes
 
 install-pdf-fixincludes: \
     configure-fixincludes \
-    pdf-fixincludes 
+    pdf-fixincludes
        @[ -f ./fixincludes/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10175,7 +10232,7 @@ maybe-install-html-fixincludes: install-html-fixincludes
 
 install-html-fixincludes: \
     configure-fixincludes \
-    html-fixincludes 
+    html-fixincludes
        @[ -f ./fixincludes/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10200,7 +10257,7 @@ maybe-installcheck-fixincludes:
 maybe-installcheck-fixincludes: installcheck-fixincludes
 
 installcheck-fixincludes: \
-    configure-fixincludes 
+    configure-fixincludes
        @[ -f ./fixincludes/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10224,7 +10281,7 @@ maybe-mostlyclean-fixincludes:
 @if fixincludes
 maybe-mostlyclean-fixincludes: mostlyclean-fixincludes
 
-mostlyclean-fixincludes: 
+mostlyclean-fixincludes:
        @[ -f ./fixincludes/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10248,7 +10305,7 @@ maybe-clean-fixincludes:
 @if fixincludes
 maybe-clean-fixincludes: clean-fixincludes
 
-clean-fixincludes: 
+clean-fixincludes:
        @[ -f ./fixincludes/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10272,7 +10329,7 @@ maybe-distclean-fixincludes:
 @if fixincludes
 maybe-distclean-fixincludes: distclean-fixincludes
 
-distclean-fixincludes: 
+distclean-fixincludes:
        @[ -f ./fixincludes/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10296,7 +10353,7 @@ maybe-maintainer-clean-fixincludes:
 @if fixincludes
 maybe-maintainer-clean-fixincludes: maintainer-clean-fixincludes
 
-maintainer-clean-fixincludes: 
+maintainer-clean-fixincludes:
        @[ -f ./fixincludes/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -10324,7 +10381,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; \
@@ -10428,7 +10485,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; \
@@ -10454,7 +10511,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; \
@@ -10480,7 +10537,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; \
@@ -10506,7 +10563,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; \
@@ -10532,7 +10589,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; \
@@ -10559,7 +10616,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; \
@@ -10586,7 +10643,7 @@ maybe-install-dvi-flex: install-dvi-flex
 
 install-dvi-flex: \
     configure-flex \
-    dvi-flex 
+    dvi-flex
        @: $(MAKE); $(unstage)
        @[ -f ./flex/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -10613,7 +10670,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; \
@@ -10640,7 +10697,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; \
@@ -10666,7 +10723,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; \
@@ -10691,7 +10748,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; \
@@ -10716,7 +10773,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; \
@@ -10741,7 +10798,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; \
@@ -10766,7 +10823,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; \
@@ -10795,7 +10852,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; \
@@ -11582,7 +11639,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; \
@@ -11607,7 +11664,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; \
@@ -11632,7 +11689,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; \
@@ -11657,7 +11714,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; \
@@ -11682,7 +11739,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; \
@@ -11708,7 +11765,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; \
@@ -11734,7 +11791,7 @@ maybe-install-dvi-gas: install-dvi-gas
 
 install-dvi-gas: \
     configure-gas \
-    dvi-gas 
+    dvi-gas
        @[ -f ./gas/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -11760,7 +11817,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; \
@@ -11786,7 +11843,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; \
@@ -11811,7 +11868,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; \
@@ -11835,7 +11892,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; \
@@ -11859,7 +11916,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; \
@@ -11883,7 +11940,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; \
@@ -11907,7 +11964,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; \
@@ -11935,7 +11992,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; \
@@ -12722,7 +12779,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; \
@@ -12747,7 +12804,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; \
@@ -12772,7 +12829,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; \
@@ -12797,7 +12854,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; \
@@ -12822,7 +12879,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; \
@@ -12848,7 +12905,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; \
@@ -12874,7 +12931,7 @@ maybe-install-dvi-gcc: install-dvi-gcc
 
 install-dvi-gcc: \
     configure-gcc \
-    dvi-gcc 
+    dvi-gcc
        @[ -f ./gcc/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -12900,7 +12957,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; \
@@ -12926,7 +12983,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; \
@@ -12951,7 +13008,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; \
@@ -12975,7 +13032,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; \
@@ -12999,7 +13056,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; \
@@ -13023,7 +13080,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; \
@@ -13047,7 +13104,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; \
@@ -13075,7 +13132,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; \
@@ -13859,7 +13916,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; \
@@ -13884,7 +13941,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; \
@@ -13909,7 +13966,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; \
@@ -13934,7 +13991,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; \
@@ -13959,7 +14016,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; \
@@ -13985,7 +14042,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; \
@@ -14011,7 +14068,7 @@ maybe-install-dvi-gmp: install-dvi-gmp
 
 install-dvi-gmp: \
     configure-gmp \
-    dvi-gmp 
+    dvi-gmp
        @[ -f ./gmp/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -14037,7 +14094,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; \
@@ -14063,7 +14120,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; \
@@ -14088,7 +14145,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; \
@@ -14112,7 +14169,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; \
@@ -14136,7 +14193,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; \
@@ -14160,7 +14217,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; \
@@ -14184,7 +14241,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; \
@@ -14212,7 +14269,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; \
@@ -14996,7 +15053,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; \
@@ -15021,7 +15078,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; \
@@ -15046,7 +15103,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; \
@@ -15071,7 +15128,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; \
@@ -15096,7 +15153,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; \
@@ -15122,7 +15179,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; \
@@ -15148,7 +15205,7 @@ maybe-install-dvi-mpfr: install-dvi-mpfr
 
 install-dvi-mpfr: \
     configure-mpfr \
-    dvi-mpfr 
+    dvi-mpfr
        @[ -f ./mpfr/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -15174,7 +15231,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; \
@@ -15200,7 +15257,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; \
@@ -15225,7 +15282,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; \
@@ -15249,7 +15306,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; \
@@ -15273,7 +15330,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; \
@@ -15297,7 +15354,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; \
@@ -15321,7 +15378,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; \
@@ -15349,7 +15406,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; \
@@ -16133,7 +16190,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; \
@@ -16158,7 +16215,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; \
@@ -16183,7 +16240,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; \
@@ -16208,7 +16265,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; \
@@ -16233,7 +16290,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; \
@@ -16259,7 +16316,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; \
@@ -16285,7 +16342,7 @@ maybe-install-dvi-mpc: install-dvi-mpc
 
 install-dvi-mpc: \
     configure-mpc \
-    dvi-mpc 
+    dvi-mpc
        @[ -f ./mpc/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -16311,7 +16368,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; \
@@ -16337,7 +16394,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; \
@@ -16362,7 +16419,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; \
@@ -16386,7 +16443,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; \
@@ -16410,7 +16467,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; \
@@ -16434,7 +16491,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; \
@@ -16458,7 +16515,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; \
@@ -16486,7 +16543,7 @@ configure-isl: stage_current
 @endif gcc-bootstrap
 @if isl
 maybe-configure-isl: configure-isl
-configure-isl: 
+configure-isl:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        test ! -f $(HOST_SUBDIR)/isl/Makefile || exit 0; \
@@ -17270,7 +17327,7 @@ maybe-info-isl:
 maybe-info-isl: info-isl
 
 info-isl: \
-    configure-isl 
+    configure-isl
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17295,7 +17352,7 @@ maybe-dvi-isl:
 maybe-dvi-isl: dvi-isl
 
 dvi-isl: \
-    configure-isl 
+    configure-isl
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17320,7 +17377,7 @@ maybe-pdf-isl:
 maybe-pdf-isl: pdf-isl
 
 pdf-isl: \
-    configure-isl 
+    configure-isl
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17345,7 +17402,7 @@ maybe-html-isl:
 maybe-html-isl: html-isl
 
 html-isl: \
-    configure-isl 
+    configure-isl
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17370,7 +17427,7 @@ maybe-TAGS-isl:
 maybe-TAGS-isl: TAGS-isl
 
 TAGS-isl: \
-    configure-isl 
+    configure-isl
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17396,7 +17453,7 @@ maybe-install-info-isl: install-info-isl
 
 install-info-isl: \
     configure-isl \
-    info-isl 
+    info-isl
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17422,7 +17479,7 @@ maybe-install-dvi-isl: install-dvi-isl
 
 install-dvi-isl: \
     configure-isl \
-    dvi-isl 
+    dvi-isl
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17448,7 +17505,7 @@ maybe-install-pdf-isl: install-pdf-isl
 
 install-pdf-isl: \
     configure-isl \
-    pdf-isl 
+    pdf-isl
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17474,7 +17531,7 @@ maybe-install-html-isl: install-html-isl
 
 install-html-isl: \
     configure-isl \
-    html-isl 
+    html-isl
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17499,7 +17556,7 @@ maybe-installcheck-isl:
 maybe-installcheck-isl: installcheck-isl
 
 installcheck-isl: \
-    configure-isl 
+    configure-isl
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17523,7 +17580,7 @@ maybe-mostlyclean-isl:
 @if isl
 maybe-mostlyclean-isl: mostlyclean-isl
 
-mostlyclean-isl: 
+mostlyclean-isl:
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17547,7 +17604,7 @@ maybe-clean-isl:
 @if isl
 maybe-clean-isl: clean-isl
 
-clean-isl: 
+clean-isl:
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17571,7 +17628,7 @@ maybe-distclean-isl:
 @if isl
 maybe-distclean-isl: distclean-isl
 
-distclean-isl: 
+distclean-isl:
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17595,7 +17652,7 @@ maybe-maintainer-clean-isl:
 @if isl
 maybe-maintainer-clean-isl: maintainer-clean-isl
 
-maintainer-clean-isl: 
+maintainer-clean-isl:
        @[ -f ./isl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17623,7 +17680,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; \
@@ -18407,7 +18464,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; \
@@ -18432,7 +18489,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; \
@@ -18457,7 +18514,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; \
@@ -18482,7 +18539,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; \
@@ -18507,7 +18564,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; \
@@ -18533,7 +18590,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; \
@@ -18559,7 +18616,7 @@ maybe-install-dvi-libelf: install-dvi-libelf
 
 install-dvi-libelf: \
     configure-libelf \
-    dvi-libelf 
+    dvi-libelf
        @[ -f ./libelf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -18585,7 +18642,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; \
@@ -18611,7 +18668,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; \
@@ -18636,7 +18693,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; \
@@ -18660,7 +18717,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; \
@@ -18684,7 +18741,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; \
@@ -18708,7 +18765,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; \
@@ -18732,7 +18789,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; \
@@ -18760,7 +18817,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; \
@@ -19547,7 +19604,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; \
@@ -19572,7 +19629,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; \
@@ -19597,7 +19654,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; \
@@ -19622,7 +19679,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; \
@@ -19647,7 +19704,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; \
@@ -19673,7 +19730,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; \
@@ -19699,7 +19756,7 @@ maybe-install-dvi-gold: install-dvi-gold
 
 install-dvi-gold: \
     configure-gold \
-    dvi-gold 
+    dvi-gold
        @[ -f ./gold/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -19725,7 +19782,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; \
@@ -19751,7 +19808,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; \
@@ -19776,7 +19833,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; \
@@ -19800,7 +19857,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; \
@@ -19824,7 +19881,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; \
@@ -19848,7 +19905,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; \
@@ -19872,7 +19929,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; \
@@ -19900,7 +19957,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; \
@@ -20001,7 +20058,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; \
@@ -20027,7 +20084,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; \
@@ -20053,7 +20110,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; \
@@ -20079,7 +20136,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; \
@@ -20105,7 +20162,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; \
@@ -20132,7 +20189,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; \
@@ -20159,7 +20216,7 @@ maybe-install-dvi-gprof: install-dvi-gprof
 
 install-dvi-gprof: \
     configure-gprof \
-    dvi-gprof 
+    dvi-gprof
        @: $(MAKE); $(unstage)
        @[ -f ./gprof/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -20186,7 +20243,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; \
@@ -20213,7 +20270,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; \
@@ -20239,7 +20296,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; \
@@ -20264,7 +20321,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; \
@@ -20289,7 +20346,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; \
@@ -20314,7 +20371,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; \
@@ -20339,7 +20396,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; \
@@ -20368,7 +20425,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; \
@@ -21155,7 +21212,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; \
@@ -21180,7 +21237,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; \
@@ -21205,7 +21262,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; \
@@ -21230,7 +21287,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; \
@@ -21255,7 +21312,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; \
@@ -21281,7 +21338,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; \
@@ -21307,7 +21364,7 @@ maybe-install-dvi-intl: install-dvi-intl
 
 install-dvi-intl: \
     configure-intl \
-    dvi-intl 
+    dvi-intl
        @[ -f ./intl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -21333,7 +21390,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; \
@@ -21359,7 +21416,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; \
@@ -21384,7 +21441,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; \
@@ -21408,7 +21465,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; \
@@ -21432,7 +21489,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; \
@@ -21456,7 +21513,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; \
@@ -21480,7 +21537,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; \
@@ -21508,7 +21565,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; \
@@ -21609,7 +21666,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; \
@@ -21635,7 +21692,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; \
@@ -21661,7 +21718,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; \
@@ -21687,7 +21744,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; \
@@ -21713,7 +21770,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; \
@@ -21740,7 +21797,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; \
@@ -21767,7 +21824,7 @@ maybe-install-dvi-tcl: install-dvi-tcl
 
 install-dvi-tcl: \
     configure-tcl \
-    dvi-tcl 
+    dvi-tcl
        @: $(MAKE); $(unstage)
        @[ -f ./tcl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -21794,7 +21851,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; \
@@ -21821,7 +21878,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; \
@@ -21847,7 +21904,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; \
@@ -21882,7 +21939,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; \
@@ -21907,7 +21964,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; \
@@ -21932,7 +21989,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; \
@@ -21961,7 +22018,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; \
@@ -22062,7 +22119,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; \
@@ -22088,7 +22145,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; \
@@ -22114,7 +22171,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; \
@@ -22140,7 +22197,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; \
@@ -22166,7 +22223,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; \
@@ -22193,7 +22250,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; \
@@ -22220,7 +22277,7 @@ maybe-install-dvi-itcl: install-dvi-itcl
 
 install-dvi-itcl: \
     configure-itcl \
-    dvi-itcl 
+    dvi-itcl
        @: $(MAKE); $(unstage)
        @[ -f ./itcl/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -22247,7 +22304,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; \
@@ -22274,7 +22331,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; \
@@ -22300,7 +22357,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; \
@@ -22325,7 +22382,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; \
@@ -22350,7 +22407,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; \
@@ -22375,7 +22432,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; \
@@ -22400,7 +22457,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; \
@@ -22429,7 +22486,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; \
@@ -23216,7 +23273,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; \
@@ -23241,7 +23298,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; \
@@ -23266,7 +23323,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; \
@@ -23291,7 +23348,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; \
@@ -23316,7 +23373,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; \
@@ -23342,7 +23399,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; \
@@ -23368,7 +23425,7 @@ maybe-install-dvi-ld: install-dvi-ld
 
 install-dvi-ld: \
     configure-ld \
-    dvi-ld 
+    dvi-ld
        @[ -f ./ld/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -23394,7 +23451,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; \
@@ -23420,7 +23477,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; \
@@ -23445,7 +23502,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; \
@@ -23469,7 +23526,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; \
@@ -23493,7 +23550,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; \
@@ -23517,7 +23574,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; \
@@ -23541,7 +23598,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; \
@@ -23569,7 +23626,7 @@ configure-libbacktrace: stage_current
 @endif gcc-bootstrap
 @if libbacktrace
 maybe-configure-libbacktrace: configure-libbacktrace
-configure-libbacktrace: 
+configure-libbacktrace:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        test ! -f $(HOST_SUBDIR)/libbacktrace/Makefile || exit 0; \
@@ -24356,7 +24413,7 @@ maybe-info-libbacktrace:
 maybe-info-libbacktrace: info-libbacktrace
 
 info-libbacktrace: \
-    configure-libbacktrace 
+    configure-libbacktrace
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24381,7 +24438,7 @@ maybe-dvi-libbacktrace:
 maybe-dvi-libbacktrace: dvi-libbacktrace
 
 dvi-libbacktrace: \
-    configure-libbacktrace 
+    configure-libbacktrace
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24406,7 +24463,7 @@ maybe-pdf-libbacktrace:
 maybe-pdf-libbacktrace: pdf-libbacktrace
 
 pdf-libbacktrace: \
-    configure-libbacktrace 
+    configure-libbacktrace
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24431,7 +24488,7 @@ maybe-html-libbacktrace:
 maybe-html-libbacktrace: html-libbacktrace
 
 html-libbacktrace: \
-    configure-libbacktrace 
+    configure-libbacktrace
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24456,7 +24513,7 @@ maybe-TAGS-libbacktrace:
 maybe-TAGS-libbacktrace: TAGS-libbacktrace
 
 TAGS-libbacktrace: \
-    configure-libbacktrace 
+    configure-libbacktrace
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24482,7 +24539,7 @@ maybe-install-info-libbacktrace: install-info-libbacktrace
 
 install-info-libbacktrace: \
     configure-libbacktrace \
-    info-libbacktrace 
+    info-libbacktrace
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24508,7 +24565,7 @@ maybe-install-dvi-libbacktrace: install-dvi-libbacktrace
 
 install-dvi-libbacktrace: \
     configure-libbacktrace \
-    dvi-libbacktrace 
+    dvi-libbacktrace
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24534,7 +24591,7 @@ maybe-install-pdf-libbacktrace: install-pdf-libbacktrace
 
 install-pdf-libbacktrace: \
     configure-libbacktrace \
-    pdf-libbacktrace 
+    pdf-libbacktrace
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24560,7 +24617,7 @@ maybe-install-html-libbacktrace: install-html-libbacktrace
 
 install-html-libbacktrace: \
     configure-libbacktrace \
-    html-libbacktrace 
+    html-libbacktrace
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24585,7 +24642,7 @@ maybe-installcheck-libbacktrace:
 maybe-installcheck-libbacktrace: installcheck-libbacktrace
 
 installcheck-libbacktrace: \
-    configure-libbacktrace 
+    configure-libbacktrace
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24609,7 +24666,7 @@ maybe-mostlyclean-libbacktrace:
 @if libbacktrace
 maybe-mostlyclean-libbacktrace: mostlyclean-libbacktrace
 
-mostlyclean-libbacktrace: 
+mostlyclean-libbacktrace:
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24633,7 +24690,7 @@ maybe-clean-libbacktrace:
 @if libbacktrace
 maybe-clean-libbacktrace: clean-libbacktrace
 
-clean-libbacktrace: 
+clean-libbacktrace:
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24657,7 +24714,7 @@ maybe-distclean-libbacktrace:
 @if libbacktrace
 maybe-distclean-libbacktrace: distclean-libbacktrace
 
-distclean-libbacktrace: 
+distclean-libbacktrace:
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24681,7 +24738,7 @@ maybe-maintainer-clean-libbacktrace:
 @if libbacktrace
 maybe-maintainer-clean-libbacktrace: maintainer-clean-libbacktrace
 
-maintainer-clean-libbacktrace: 
+maintainer-clean-libbacktrace:
        @[ -f ./libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -24709,7 +24766,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; \
@@ -25496,7 +25553,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; \
@@ -25521,7 +25578,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; \
@@ -25546,7 +25603,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; \
@@ -25571,7 +25628,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; \
@@ -25596,7 +25653,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; \
@@ -25622,7 +25679,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; \
@@ -25648,7 +25705,7 @@ maybe-install-dvi-libcpp: install-dvi-libcpp
 
 install-dvi-libcpp: \
     configure-libcpp \
-    dvi-libcpp 
+    dvi-libcpp
        @[ -f ./libcpp/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -25674,7 +25731,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; \
@@ -25700,7 +25757,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; \
@@ -25725,7 +25782,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; \
@@ -25749,7 +25806,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; \
@@ -25773,7 +25830,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; \
@@ -25797,7 +25854,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; \
@@ -25821,7 +25878,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; \
@@ -25849,7 +25906,7 @@ configure-libcody: stage_current
 @endif gcc-bootstrap
 @if libcody
 maybe-configure-libcody: configure-libcody
-configure-libcody: 
+configure-libcody:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        test ! -f $(HOST_SUBDIR)/libcody/Makefile || exit 0; \
@@ -26714,7 +26771,7 @@ maybe-installcheck-libcody:
 maybe-installcheck-libcody: installcheck-libcody
 
 installcheck-libcody: \
-    configure-libcody 
+    configure-libcody
        @[ -f ./libcody/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26738,7 +26795,7 @@ maybe-mostlyclean-libcody:
 @if libcody
 maybe-mostlyclean-libcody: mostlyclean-libcody
 
-mostlyclean-libcody: 
+mostlyclean-libcody:
        @[ -f ./libcody/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26762,7 +26819,7 @@ maybe-clean-libcody:
 @if libcody
 maybe-clean-libcody: clean-libcody
 
-clean-libcody: 
+clean-libcody:
        @[ -f ./libcody/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26786,7 +26843,7 @@ maybe-distclean-libcody:
 @if libcody
 maybe-distclean-libcody: distclean-libcody
 
-distclean-libcody: 
+distclean-libcody:
        @[ -f ./libcody/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26810,7 +26867,7 @@ maybe-maintainer-clean-libcody:
 @if libcody
 maybe-maintainer-clean-libcody: maintainer-clean-libcody
 
-maintainer-clean-libcody: 
+maintainer-clean-libcody:
        @[ -f ./libcody/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -26838,7 +26895,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; \
@@ -27625,7 +27682,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; \
@@ -27650,7 +27707,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; \
@@ -27675,7 +27732,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; \
@@ -27700,7 +27757,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; \
@@ -27736,7 +27793,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; \
@@ -27762,7 +27819,7 @@ maybe-install-dvi-libdecnumber: install-dvi-libdecnumber
 
 install-dvi-libdecnumber: \
     configure-libdecnumber \
-    dvi-libdecnumber 
+    dvi-libdecnumber
        @[ -f ./libdecnumber/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -27788,7 +27845,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; \
@@ -27814,7 +27871,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; \
@@ -27839,7 +27896,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; \
@@ -27863,7 +27920,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; \
@@ -27887,7 +27944,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; \
@@ -27911,7 +27968,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; \
@@ -27935,7 +27992,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; \
@@ -27963,7 +28020,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; \
@@ -28064,7 +28121,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; \
@@ -28090,7 +28147,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; \
@@ -28116,7 +28173,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; \
@@ -28142,7 +28199,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; \
@@ -28168,7 +28225,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; \
@@ -28195,7 +28252,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; \
@@ -28222,7 +28279,7 @@ maybe-install-dvi-libgui: install-dvi-libgui
 
 install-dvi-libgui: \
     configure-libgui \
-    dvi-libgui 
+    dvi-libgui
        @: $(MAKE); $(unstage)
        @[ -f ./libgui/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -28249,7 +28306,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; \
@@ -28276,7 +28333,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; \
@@ -28302,7 +28359,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; \
@@ -28327,7 +28384,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; \
@@ -28352,7 +28409,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; \
@@ -28377,7 +28434,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; \
@@ -28402,7 +28459,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; \
@@ -28431,7 +28488,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; \
@@ -29227,7 +29284,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; \
@@ -29252,7 +29309,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; \
@@ -29277,7 +29334,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; \
@@ -29302,7 +29359,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; \
@@ -29327,7 +29384,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; \
@@ -29353,7 +29410,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; \
@@ -29379,7 +29436,7 @@ maybe-install-dvi-libiberty: install-dvi-libiberty
 
 install-dvi-libiberty: \
     configure-libiberty \
-    dvi-libiberty 
+    dvi-libiberty
        @[ -f ./libiberty/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -29405,7 +29462,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; \
@@ -29431,7 +29488,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; \
@@ -29456,7 +29513,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; \
@@ -29480,7 +29537,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; \
@@ -29504,7 +29561,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; \
@@ -29528,7 +29585,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; \
@@ -29552,7 +29609,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; \
@@ -29580,7 +29637,7 @@ configure-libiberty-linker-plugin: stage_current
 @endif gcc-bootstrap
 @if libiberty-linker-plugin
 maybe-configure-libiberty-linker-plugin: configure-libiberty-linker-plugin
-configure-libiberty-linker-plugin: 
+configure-libiberty-linker-plugin:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        test ! -f $(HOST_SUBDIR)/libiberty-linker-plugin/Makefile || exit 0; \
@@ -30376,7 +30433,7 @@ maybe-info-libiberty-linker-plugin:
 maybe-info-libiberty-linker-plugin: info-libiberty-linker-plugin
 
 info-libiberty-linker-plugin: \
-    configure-libiberty-linker-plugin 
+    configure-libiberty-linker-plugin
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30401,7 +30458,7 @@ maybe-dvi-libiberty-linker-plugin:
 maybe-dvi-libiberty-linker-plugin: dvi-libiberty-linker-plugin
 
 dvi-libiberty-linker-plugin: \
-    configure-libiberty-linker-plugin 
+    configure-libiberty-linker-plugin
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30426,7 +30483,7 @@ maybe-pdf-libiberty-linker-plugin:
 maybe-pdf-libiberty-linker-plugin: pdf-libiberty-linker-plugin
 
 pdf-libiberty-linker-plugin: \
-    configure-libiberty-linker-plugin 
+    configure-libiberty-linker-plugin
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30451,7 +30508,7 @@ maybe-html-libiberty-linker-plugin:
 maybe-html-libiberty-linker-plugin: html-libiberty-linker-plugin
 
 html-libiberty-linker-plugin: \
-    configure-libiberty-linker-plugin 
+    configure-libiberty-linker-plugin
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30476,7 +30533,7 @@ maybe-TAGS-libiberty-linker-plugin:
 maybe-TAGS-libiberty-linker-plugin: TAGS-libiberty-linker-plugin
 
 TAGS-libiberty-linker-plugin: \
-    configure-libiberty-linker-plugin 
+    configure-libiberty-linker-plugin
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30502,7 +30559,7 @@ maybe-install-info-libiberty-linker-plugin: install-info-libiberty-linker-plugin
 
 install-info-libiberty-linker-plugin: \
     configure-libiberty-linker-plugin \
-    info-libiberty-linker-plugin 
+    info-libiberty-linker-plugin
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30528,7 +30585,7 @@ maybe-install-dvi-libiberty-linker-plugin: install-dvi-libiberty-linker-plugin
 
 install-dvi-libiberty-linker-plugin: \
     configure-libiberty-linker-plugin \
-    dvi-libiberty-linker-plugin 
+    dvi-libiberty-linker-plugin
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30554,7 +30611,7 @@ maybe-install-pdf-libiberty-linker-plugin: install-pdf-libiberty-linker-plugin
 
 install-pdf-libiberty-linker-plugin: \
     configure-libiberty-linker-plugin \
-    pdf-libiberty-linker-plugin 
+    pdf-libiberty-linker-plugin
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30580,7 +30637,7 @@ maybe-install-html-libiberty-linker-plugin: install-html-libiberty-linker-plugin
 
 install-html-libiberty-linker-plugin: \
     configure-libiberty-linker-plugin \
-    html-libiberty-linker-plugin 
+    html-libiberty-linker-plugin
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30605,7 +30662,7 @@ maybe-installcheck-libiberty-linker-plugin:
 maybe-installcheck-libiberty-linker-plugin: installcheck-libiberty-linker-plugin
 
 installcheck-libiberty-linker-plugin: \
-    configure-libiberty-linker-plugin 
+    configure-libiberty-linker-plugin
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30629,7 +30686,7 @@ maybe-mostlyclean-libiberty-linker-plugin:
 @if libiberty-linker-plugin
 maybe-mostlyclean-libiberty-linker-plugin: mostlyclean-libiberty-linker-plugin
 
-mostlyclean-libiberty-linker-plugin: 
+mostlyclean-libiberty-linker-plugin:
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30653,7 +30710,7 @@ maybe-clean-libiberty-linker-plugin:
 @if libiberty-linker-plugin
 maybe-clean-libiberty-linker-plugin: clean-libiberty-linker-plugin
 
-clean-libiberty-linker-plugin: 
+clean-libiberty-linker-plugin:
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30677,7 +30734,7 @@ maybe-distclean-libiberty-linker-plugin:
 @if libiberty-linker-plugin
 maybe-distclean-libiberty-linker-plugin: distclean-libiberty-linker-plugin
 
-distclean-libiberty-linker-plugin: 
+distclean-libiberty-linker-plugin:
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30701,7 +30758,7 @@ maybe-maintainer-clean-libiberty-linker-plugin:
 @if libiberty-linker-plugin
 maybe-maintainer-clean-libiberty-linker-plugin: maintainer-clean-libiberty-linker-plugin
 
-maintainer-clean-libiberty-linker-plugin: 
+maintainer-clean-libiberty-linker-plugin:
        @[ -f ./libiberty-linker-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -30729,7 +30786,7 @@ configure-libiconv: stage_current
 @endif gcc-bootstrap
 @if libiconv
 maybe-configure-libiconv: configure-libiconv
-configure-libiconv: 
+configure-libiconv:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        test ! -f $(HOST_SUBDIR)/libiconv/Makefile || exit 0; \
@@ -31523,7 +31580,7 @@ maybe-dvi-libiconv:
 maybe-dvi-libiconv: dvi-libiconv
 
 dvi-libiconv: \
-    configure-libiconv 
+    configure-libiconv
        @[ -f ./libiconv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -31568,7 +31625,7 @@ maybe-TAGS-libiconv:
 maybe-TAGS-libiconv: TAGS-libiconv
 
 TAGS-libiconv: \
-    configure-libiconv 
+    configure-libiconv
        @[ -f ./libiconv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -31604,7 +31661,7 @@ maybe-install-dvi-libiconv: install-dvi-libiconv
 
 install-dvi-libiconv: \
     configure-libiconv \
-    dvi-libiconv 
+    dvi-libiconv
        @[ -f ./libiconv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -31649,7 +31706,7 @@ maybe-installcheck-libiconv:
 maybe-installcheck-libiconv: installcheck-libiconv
 
 installcheck-libiconv: \
-    configure-libiconv 
+    configure-libiconv
        @[ -f ./libiconv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -31673,7 +31730,7 @@ maybe-mostlyclean-libiconv:
 @if libiconv
 maybe-mostlyclean-libiconv: mostlyclean-libiconv
 
-mostlyclean-libiconv: 
+mostlyclean-libiconv:
        @[ -f ./libiconv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -31697,7 +31754,7 @@ maybe-clean-libiconv:
 @if libiconv
 maybe-clean-libiconv: clean-libiconv
 
-clean-libiconv: 
+clean-libiconv:
        @[ -f ./libiconv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -31721,7 +31778,7 @@ maybe-distclean-libiconv:
 @if libiconv
 maybe-distclean-libiconv: distclean-libiconv
 
-distclean-libiconv: 
+distclean-libiconv:
        @[ -f ./libiconv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -31745,7 +31802,7 @@ maybe-maintainer-clean-libiconv:
 @if libiconv
 maybe-maintainer-clean-libiconv: maintainer-clean-libiconv
 
-maintainer-clean-libiconv: 
+maintainer-clean-libiconv:
        @[ -f ./libiconv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -31773,7 +31830,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; \
@@ -31874,7 +31931,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; \
@@ -31900,7 +31957,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; \
@@ -31926,7 +31983,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; \
@@ -31952,7 +32009,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; \
@@ -31978,7 +32035,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; \
@@ -32005,7 +32062,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; \
@@ -32032,7 +32089,7 @@ maybe-install-dvi-m4: install-dvi-m4
 
 install-dvi-m4: \
     configure-m4 \
-    dvi-m4 
+    dvi-m4
        @: $(MAKE); $(unstage)
        @[ -f ./m4/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -32059,7 +32116,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; \
@@ -32086,7 +32143,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; \
@@ -32112,7 +32169,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; \
@@ -32137,7 +32194,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; \
@@ -32162,7 +32219,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; \
@@ -32187,7 +32244,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; \
@@ -32212,7 +32269,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; \
@@ -32241,7 +32298,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; \
@@ -32342,7 +32399,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; \
@@ -32368,7 +32425,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; \
@@ -32394,7 +32451,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; \
@@ -32420,7 +32477,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; \
@@ -32446,7 +32503,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; \
@@ -32473,7 +32530,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; \
@@ -32500,7 +32557,7 @@ maybe-install-dvi-readline: install-dvi-readline
 
 install-dvi-readline: \
     configure-readline \
-    dvi-readline 
+    dvi-readline
        @: $(MAKE); $(unstage)
        @[ -f ./readline/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -32527,7 +32584,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; \
@@ -32554,7 +32611,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; \
@@ -32580,7 +32637,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; \
@@ -32605,7 +32662,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; \
@@ -32630,7 +32687,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; \
@@ -32655,7 +32712,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; \
@@ -32680,7 +32737,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; \
@@ -32709,7 +32766,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; \
@@ -32810,7 +32867,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; \
@@ -32836,7 +32893,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; \
@@ -32862,7 +32919,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; \
@@ -32888,7 +32945,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; \
@@ -32914,7 +32971,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; \
@@ -32941,7 +32998,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; \
@@ -32968,7 +33025,7 @@ maybe-install-dvi-sid: install-dvi-sid
 
 install-dvi-sid: \
     configure-sid \
-    dvi-sid 
+    dvi-sid
        @: $(MAKE); $(unstage)
        @[ -f ./sid/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -32995,7 +33052,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; \
@@ -33022,7 +33079,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; \
@@ -33048,7 +33105,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; \
@@ -33073,7 +33130,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; \
@@ -33098,7 +33155,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; \
@@ -33123,7 +33180,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; \
@@ -33148,7 +33205,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; \
@@ -33177,7 +33234,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; \
@@ -33278,7 +33335,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; \
@@ -33304,7 +33361,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; \
@@ -33330,7 +33387,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; \
@@ -33356,7 +33413,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; \
@@ -33382,7 +33439,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; \
@@ -33409,7 +33466,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; \
@@ -33436,7 +33493,7 @@ maybe-install-dvi-sim: install-dvi-sim
 
 install-dvi-sim: \
     configure-sim \
-    dvi-sim 
+    dvi-sim
        @: $(MAKE); $(unstage)
        @[ -f ./sim/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -33463,7 +33520,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; \
@@ -33490,7 +33547,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; \
@@ -33516,7 +33573,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; \
@@ -33541,7 +33598,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; \
@@ -33566,7 +33623,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; \
@@ -33591,7 +33648,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; \
@@ -33616,7 +33673,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; \
@@ -33645,7 +33702,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; \
@@ -33734,7 +33791,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; \
@@ -33760,7 +33817,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; \
@@ -33786,7 +33843,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; \
@@ -33812,7 +33869,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; \
@@ -33838,7 +33895,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; \
@@ -33865,7 +33922,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; \
@@ -33892,7 +33949,7 @@ maybe-install-dvi-texinfo: install-dvi-texinfo
 
 install-dvi-texinfo: \
     configure-texinfo \
-    dvi-texinfo 
+    dvi-texinfo
        @: $(MAKE); $(unstage)
        @[ -f ./texinfo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -33919,7 +33976,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; \
@@ -33946,7 +34003,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; \
@@ -33972,7 +34029,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; \
@@ -33997,7 +34054,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; \
@@ -34022,7 +34079,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; \
@@ -34047,7 +34104,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; \
@@ -34072,7 +34129,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; \
@@ -34101,7 +34158,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; \
@@ -34879,7 +34936,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; \
@@ -34904,7 +34961,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; \
@@ -34929,7 +34986,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; \
@@ -34954,7 +35011,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; \
@@ -34979,7 +35036,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; \
@@ -35005,7 +35062,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; \
@@ -35031,7 +35088,7 @@ maybe-install-dvi-zlib: install-dvi-zlib
 
 install-dvi-zlib: \
     configure-zlib \
-    dvi-zlib 
+    dvi-zlib
        @[ -f ./zlib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -35057,7 +35114,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; \
@@ -35083,7 +35140,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; \
@@ -35108,7 +35165,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; \
@@ -35132,7 +35189,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; \
@@ -35156,7 +35213,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; \
@@ -35180,7 +35237,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; \
@@ -35204,7 +35261,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; \
@@ -35232,7 +35289,7 @@ configure-gnulib: stage_current
 @endif gcc-bootstrap
 @if gnulib
 maybe-configure-gnulib: configure-gnulib
-configure-gnulib: 
+configure-gnulib:
        @: $(MAKE); $(unstage)
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -35333,7 +35390,7 @@ maybe-info-gnulib:
 maybe-info-gnulib: info-gnulib
 
 info-gnulib: \
-    configure-gnulib 
+    configure-gnulib
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35359,7 +35416,7 @@ maybe-dvi-gnulib:
 maybe-dvi-gnulib: dvi-gnulib
 
 dvi-gnulib: \
-    configure-gnulib 
+    configure-gnulib
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35385,7 +35442,7 @@ maybe-pdf-gnulib:
 maybe-pdf-gnulib: pdf-gnulib
 
 pdf-gnulib: \
-    configure-gnulib 
+    configure-gnulib
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35411,7 +35468,7 @@ maybe-html-gnulib:
 maybe-html-gnulib: html-gnulib
 
 html-gnulib: \
-    configure-gnulib 
+    configure-gnulib
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35437,7 +35494,7 @@ maybe-TAGS-gnulib:
 maybe-TAGS-gnulib: TAGS-gnulib
 
 TAGS-gnulib: \
-    configure-gnulib 
+    configure-gnulib
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35464,7 +35521,7 @@ maybe-install-info-gnulib: install-info-gnulib
 
 install-info-gnulib: \
     configure-gnulib \
-    info-gnulib 
+    info-gnulib
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35491,7 +35548,7 @@ maybe-install-dvi-gnulib: install-dvi-gnulib
 
 install-dvi-gnulib: \
     configure-gnulib \
-    dvi-gnulib 
+    dvi-gnulib
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35518,7 +35575,7 @@ maybe-install-pdf-gnulib: install-pdf-gnulib
 
 install-pdf-gnulib: \
     configure-gnulib \
-    pdf-gnulib 
+    pdf-gnulib
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35545,7 +35602,7 @@ maybe-install-html-gnulib: install-html-gnulib
 
 install-html-gnulib: \
     configure-gnulib \
-    html-gnulib 
+    html-gnulib
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35571,7 +35628,7 @@ maybe-installcheck-gnulib:
 maybe-installcheck-gnulib: installcheck-gnulib
 
 installcheck-gnulib: \
-    configure-gnulib 
+    configure-gnulib
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35596,7 +35653,7 @@ maybe-mostlyclean-gnulib:
 @if gnulib
 maybe-mostlyclean-gnulib: mostlyclean-gnulib
 
-mostlyclean-gnulib: 
+mostlyclean-gnulib:
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35621,7 +35678,7 @@ maybe-clean-gnulib:
 @if gnulib
 maybe-clean-gnulib: clean-gnulib
 
-clean-gnulib: 
+clean-gnulib:
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35646,7 +35703,7 @@ maybe-distclean-gnulib:
 @if gnulib
 maybe-distclean-gnulib: distclean-gnulib
 
-distclean-gnulib: 
+distclean-gnulib:
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35671,7 +35728,7 @@ maybe-maintainer-clean-gnulib:
 @if gnulib
 maybe-maintainer-clean-gnulib: maintainer-clean-gnulib
 
-maintainer-clean-gnulib: 
+maintainer-clean-gnulib:
        @: $(MAKE); $(unstage)
        @[ -f ./gnulib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35700,7 +35757,7 @@ configure-gdbsupport: stage_current
 @endif gcc-bootstrap
 @if gdbsupport
 maybe-configure-gdbsupport: configure-gdbsupport
-configure-gdbsupport: 
+configure-gdbsupport:
        @: $(MAKE); $(unstage)
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -35801,7 +35858,7 @@ maybe-info-gdbsupport:
 maybe-info-gdbsupport: info-gdbsupport
 
 info-gdbsupport: \
-    configure-gdbsupport 
+    configure-gdbsupport
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35827,7 +35884,7 @@ maybe-dvi-gdbsupport:
 maybe-dvi-gdbsupport: dvi-gdbsupport
 
 dvi-gdbsupport: \
-    configure-gdbsupport 
+    configure-gdbsupport
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35853,7 +35910,7 @@ maybe-pdf-gdbsupport:
 maybe-pdf-gdbsupport: pdf-gdbsupport
 
 pdf-gdbsupport: \
-    configure-gdbsupport 
+    configure-gdbsupport
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35879,7 +35936,7 @@ maybe-html-gdbsupport:
 maybe-html-gdbsupport: html-gdbsupport
 
 html-gdbsupport: \
-    configure-gdbsupport 
+    configure-gdbsupport
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35905,7 +35962,7 @@ maybe-TAGS-gdbsupport:
 maybe-TAGS-gdbsupport: TAGS-gdbsupport
 
 TAGS-gdbsupport: \
-    configure-gdbsupport 
+    configure-gdbsupport
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35932,7 +35989,7 @@ maybe-install-info-gdbsupport: install-info-gdbsupport
 
 install-info-gdbsupport: \
     configure-gdbsupport \
-    info-gdbsupport 
+    info-gdbsupport
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35959,7 +36016,7 @@ maybe-install-dvi-gdbsupport: install-dvi-gdbsupport
 
 install-dvi-gdbsupport: \
     configure-gdbsupport \
-    dvi-gdbsupport 
+    dvi-gdbsupport
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -35986,7 +36043,7 @@ maybe-install-pdf-gdbsupport: install-pdf-gdbsupport
 
 install-pdf-gdbsupport: \
     configure-gdbsupport \
-    pdf-gdbsupport 
+    pdf-gdbsupport
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36013,7 +36070,7 @@ maybe-install-html-gdbsupport: install-html-gdbsupport
 
 install-html-gdbsupport: \
     configure-gdbsupport \
-    html-gdbsupport 
+    html-gdbsupport
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36039,7 +36096,7 @@ maybe-installcheck-gdbsupport:
 maybe-installcheck-gdbsupport: installcheck-gdbsupport
 
 installcheck-gdbsupport: \
-    configure-gdbsupport 
+    configure-gdbsupport
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36064,7 +36121,7 @@ maybe-mostlyclean-gdbsupport:
 @if gdbsupport
 maybe-mostlyclean-gdbsupport: mostlyclean-gdbsupport
 
-mostlyclean-gdbsupport: 
+mostlyclean-gdbsupport:
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36089,7 +36146,7 @@ maybe-clean-gdbsupport:
 @if gdbsupport
 maybe-clean-gdbsupport: clean-gdbsupport
 
-clean-gdbsupport: 
+clean-gdbsupport:
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36114,7 +36171,7 @@ maybe-distclean-gdbsupport:
 @if gdbsupport
 maybe-distclean-gdbsupport: distclean-gdbsupport
 
-distclean-gdbsupport: 
+distclean-gdbsupport:
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36139,7 +36196,7 @@ maybe-maintainer-clean-gdbsupport:
 @if gdbsupport
 maybe-maintainer-clean-gdbsupport: maintainer-clean-gdbsupport
 
-maintainer-clean-gdbsupport: 
+maintainer-clean-gdbsupport:
        @: $(MAKE); $(unstage)
        @[ -f ./gdbsupport/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36168,7 +36225,7 @@ configure-gdbserver: stage_current
 @endif gcc-bootstrap
 @if gdbserver
 maybe-configure-gdbserver: configure-gdbserver
-configure-gdbserver: 
+configure-gdbserver:
        @: $(MAKE); $(unstage)
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -36269,7 +36326,7 @@ maybe-info-gdbserver:
 maybe-info-gdbserver: info-gdbserver
 
 info-gdbserver: \
-    configure-gdbserver 
+    configure-gdbserver
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36295,7 +36352,7 @@ maybe-dvi-gdbserver:
 maybe-dvi-gdbserver: dvi-gdbserver
 
 dvi-gdbserver: \
-    configure-gdbserver 
+    configure-gdbserver
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36321,7 +36378,7 @@ maybe-pdf-gdbserver:
 maybe-pdf-gdbserver: pdf-gdbserver
 
 pdf-gdbserver: \
-    configure-gdbserver 
+    configure-gdbserver
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36347,7 +36404,7 @@ maybe-html-gdbserver:
 maybe-html-gdbserver: html-gdbserver
 
 html-gdbserver: \
-    configure-gdbserver 
+    configure-gdbserver
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36373,7 +36430,7 @@ maybe-TAGS-gdbserver:
 maybe-TAGS-gdbserver: TAGS-gdbserver
 
 TAGS-gdbserver: \
-    configure-gdbserver 
+    configure-gdbserver
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36400,7 +36457,7 @@ maybe-install-info-gdbserver: install-info-gdbserver
 
 install-info-gdbserver: \
     configure-gdbserver \
-    info-gdbserver 
+    info-gdbserver
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36427,7 +36484,7 @@ maybe-install-dvi-gdbserver: install-dvi-gdbserver
 
 install-dvi-gdbserver: \
     configure-gdbserver \
-    dvi-gdbserver 
+    dvi-gdbserver
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36454,7 +36511,7 @@ maybe-install-pdf-gdbserver: install-pdf-gdbserver
 
 install-pdf-gdbserver: \
     configure-gdbserver \
-    pdf-gdbserver 
+    pdf-gdbserver
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36481,7 +36538,7 @@ maybe-install-html-gdbserver: install-html-gdbserver
 
 install-html-gdbserver: \
     configure-gdbserver \
-    html-gdbserver 
+    html-gdbserver
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36507,7 +36564,7 @@ maybe-installcheck-gdbserver:
 maybe-installcheck-gdbserver: installcheck-gdbserver
 
 installcheck-gdbserver: \
-    configure-gdbserver 
+    configure-gdbserver
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36532,7 +36589,7 @@ maybe-mostlyclean-gdbserver:
 @if gdbserver
 maybe-mostlyclean-gdbserver: mostlyclean-gdbserver
 
-mostlyclean-gdbserver: 
+mostlyclean-gdbserver:
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36557,7 +36614,7 @@ maybe-clean-gdbserver:
 @if gdbserver
 maybe-clean-gdbserver: clean-gdbserver
 
-clean-gdbserver: 
+clean-gdbserver:
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36582,7 +36639,7 @@ maybe-distclean-gdbserver:
 @if gdbserver
 maybe-distclean-gdbserver: distclean-gdbserver
 
-distclean-gdbserver: 
+distclean-gdbserver:
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36607,7 +36664,7 @@ maybe-maintainer-clean-gdbserver:
 @if gdbserver
 maybe-maintainer-clean-gdbserver: maintainer-clean-gdbserver
 
-maintainer-clean-gdbserver: 
+maintainer-clean-gdbserver:
        @: $(MAKE); $(unstage)
        @[ -f ./gdbserver/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36636,7 +36693,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; \
@@ -36737,7 +36794,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; \
@@ -36763,7 +36820,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; \
@@ -36789,7 +36846,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; \
@@ -36815,7 +36872,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; \
@@ -36841,7 +36898,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; \
@@ -36868,7 +36925,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; \
@@ -36895,7 +36952,7 @@ maybe-install-dvi-gdb: install-dvi-gdb
 
 install-dvi-gdb: \
     configure-gdb \
-    dvi-gdb 
+    dvi-gdb
        @: $(MAKE); $(unstage)
        @[ -f ./gdb/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -36922,7 +36979,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; \
@@ -36949,7 +37006,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; \
@@ -36975,7 +37032,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; \
@@ -37000,7 +37057,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; \
@@ -37025,7 +37082,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; \
@@ -37050,7 +37107,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; \
@@ -37075,7 +37132,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; \
@@ -37104,7 +37161,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; \
@@ -37205,7 +37262,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; \
@@ -37231,7 +37288,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; \
@@ -37257,7 +37314,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; \
@@ -37283,7 +37340,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; \
@@ -37309,7 +37366,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; \
@@ -37336,7 +37393,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; \
@@ -37363,7 +37420,7 @@ maybe-install-dvi-expect: install-dvi-expect
 
 install-dvi-expect: \
     configure-expect \
-    dvi-expect 
+    dvi-expect
        @: $(MAKE); $(unstage)
        @[ -f ./expect/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -37390,7 +37447,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; \
@@ -37417,7 +37474,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; \
@@ -37443,7 +37500,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; \
@@ -37468,7 +37525,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; \
@@ -37493,7 +37550,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; \
@@ -37518,7 +37575,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; \
@@ -37543,7 +37600,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; \
@@ -37572,7 +37629,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; \
@@ -37673,7 +37730,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; \
@@ -37699,7 +37756,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; \
@@ -37725,7 +37782,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; \
@@ -37751,7 +37808,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; \
@@ -37777,7 +37834,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; \
@@ -37804,7 +37861,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; \
@@ -37831,7 +37888,7 @@ maybe-install-dvi-guile: install-dvi-guile
 
 install-dvi-guile: \
     configure-guile \
-    dvi-guile 
+    dvi-guile
        @: $(MAKE); $(unstage)
        @[ -f ./guile/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -37858,7 +37915,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; \
@@ -37885,7 +37942,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; \
@@ -37911,7 +37968,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; \
@@ -37936,7 +37993,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; \
@@ -37961,7 +38018,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; \
@@ -37986,7 +38043,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; \
@@ -38011,7 +38068,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; \
@@ -38040,7 +38097,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; \
@@ -38141,7 +38198,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; \
@@ -38167,7 +38224,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; \
@@ -38193,7 +38250,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; \
@@ -38219,7 +38276,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; \
@@ -38245,7 +38302,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; \
@@ -38272,7 +38329,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; \
@@ -38299,7 +38356,7 @@ maybe-install-dvi-tk: install-dvi-tk
 
 install-dvi-tk: \
     configure-tk \
-    dvi-tk 
+    dvi-tk
        @: $(MAKE); $(unstage)
        @[ -f ./tk/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -38326,7 +38383,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; \
@@ -38353,7 +38410,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; \
@@ -38379,7 +38436,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; \
@@ -38404,7 +38461,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; \
@@ -38429,7 +38486,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; \
@@ -38454,7 +38511,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; \
@@ -38479,7 +38536,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; \
@@ -38508,7 +38565,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; \
@@ -38603,7 +38660,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; \
@@ -38629,7 +38686,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; \
@@ -38655,7 +38712,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; \
@@ -38681,7 +38738,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; \
@@ -38707,7 +38764,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; \
@@ -38734,7 +38791,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; \
@@ -38761,7 +38818,7 @@ maybe-install-dvi-libtermcap: install-dvi-libtermcap
 
 install-dvi-libtermcap: \
     configure-libtermcap \
-    dvi-libtermcap 
+    dvi-libtermcap
        @: $(MAKE); $(unstage)
        @[ -f ./libtermcap/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -38788,7 +38845,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; \
@@ -38815,7 +38872,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; \
@@ -38841,7 +38898,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; \
@@ -38910,7 +38967,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; \
@@ -39005,7 +39062,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; \
@@ -39031,7 +39088,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; \
@@ -39057,7 +39114,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; \
@@ -39083,7 +39140,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; \
@@ -39109,7 +39166,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; \
@@ -39136,7 +39193,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; \
@@ -39163,7 +39220,7 @@ maybe-install-dvi-utils: install-dvi-utils
 
 install-dvi-utils: \
     configure-utils \
-    dvi-utils 
+    dvi-utils
        @: $(MAKE); $(unstage)
        @[ -f ./utils/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39190,7 +39247,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; \
@@ -39217,7 +39274,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; \
@@ -39243,7 +39300,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; \
@@ -39268,7 +39325,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; \
@@ -39293,7 +39350,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; \
@@ -39318,7 +39375,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; \
@@ -39343,7 +39400,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; \
@@ -39372,7 +39429,7 @@ configure-c++tools: stage_current
 @endif gcc-bootstrap
 @if c++tools
 maybe-configure-c++tools: configure-c++tools
-configure-c++tools: 
+configure-c++tools:
        @: $(MAKE); $(unstage)
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -39473,7 +39530,7 @@ maybe-info-c++tools:
 maybe-info-c++tools: info-c++tools
 
 info-c++tools: \
-    configure-c++tools 
+    configure-c++tools
        @: $(MAKE); $(unstage)
        @[ -f ./c++tools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39499,7 +39556,7 @@ maybe-dvi-c++tools:
 maybe-dvi-c++tools: dvi-c++tools
 
 dvi-c++tools: \
-    configure-c++tools 
+    configure-c++tools
        @: $(MAKE); $(unstage)
        @[ -f ./c++tools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39525,7 +39582,7 @@ maybe-pdf-c++tools:
 maybe-pdf-c++tools: pdf-c++tools
 
 pdf-c++tools: \
-    configure-c++tools 
+    configure-c++tools
        @: $(MAKE); $(unstage)
        @[ -f ./c++tools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39551,7 +39608,7 @@ maybe-html-c++tools:
 maybe-html-c++tools: html-c++tools
 
 html-c++tools: \
-    configure-c++tools 
+    configure-c++tools
        @: $(MAKE); $(unstage)
        @[ -f ./c++tools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39588,7 +39645,7 @@ maybe-install-info-c++tools: install-info-c++tools
 
 install-info-c++tools: \
     configure-c++tools \
-    info-c++tools 
+    info-c++tools
        @: $(MAKE); $(unstage)
        @[ -f ./c++tools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39615,7 +39672,7 @@ maybe-install-dvi-c++tools: install-dvi-c++tools
 
 install-dvi-c++tools: \
     configure-c++tools \
-    dvi-c++tools 
+    dvi-c++tools
        @: $(MAKE); $(unstage)
        @[ -f ./c++tools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39642,7 +39699,7 @@ maybe-install-pdf-c++tools: install-pdf-c++tools
 
 install-pdf-c++tools: \
     configure-c++tools \
-    pdf-c++tools 
+    pdf-c++tools
        @: $(MAKE); $(unstage)
        @[ -f ./c++tools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39669,7 +39726,7 @@ maybe-install-html-c++tools: install-html-c++tools
 
 install-html-c++tools: \
     configure-c++tools \
-    html-c++tools 
+    html-c++tools
        @: $(MAKE); $(unstage)
        @[ -f ./c++tools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39695,7 +39752,7 @@ maybe-installcheck-c++tools:
 maybe-installcheck-c++tools: installcheck-c++tools
 
 installcheck-c++tools: \
-    configure-c++tools 
+    configure-c++tools
        @: $(MAKE); $(unstage)
        @[ -f ./c++tools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39720,7 +39777,7 @@ maybe-mostlyclean-c++tools:
 @if c++tools
 maybe-mostlyclean-c++tools: mostlyclean-c++tools
 
-mostlyclean-c++tools: 
+mostlyclean-c++tools:
        @: $(MAKE); $(unstage)
        @[ -f ./c++tools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39745,7 +39802,7 @@ maybe-clean-c++tools:
 @if c++tools
 maybe-clean-c++tools: clean-c++tools
 
-clean-c++tools: 
+clean-c++tools:
        @: $(MAKE); $(unstage)
        @[ -f ./c++tools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39770,7 +39827,7 @@ maybe-distclean-c++tools:
 @if c++tools
 maybe-distclean-c++tools: distclean-c++tools
 
-distclean-c++tools: 
+distclean-c++tools:
        @: $(MAKE); $(unstage)
        @[ -f ./c++tools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39795,7 +39852,7 @@ maybe-maintainer-clean-c++tools:
 @if c++tools
 maybe-maintainer-clean-c++tools: maintainer-clean-c++tools
 
-maintainer-clean-c++tools: 
+maintainer-clean-c++tools:
        @: $(MAKE); $(unstage)
        @[ -f ./c++tools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -39824,7 +39881,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; \
@@ -39925,7 +39982,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; \
@@ -39951,7 +40008,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; \
@@ -39977,7 +40034,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; \
@@ -40003,7 +40060,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; \
@@ -40029,7 +40086,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; \
@@ -40056,7 +40113,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; \
@@ -40083,7 +40140,7 @@ maybe-install-dvi-gnattools: install-dvi-gnattools
 
 install-dvi-gnattools: \
     configure-gnattools \
-    dvi-gnattools 
+    dvi-gnattools
        @: $(MAKE); $(unstage)
        @[ -f ./gnattools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -40110,7 +40167,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; \
@@ -40137,7 +40194,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; \
@@ -40163,7 +40220,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; \
@@ -40188,7 +40245,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; \
@@ -40213,7 +40270,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; \
@@ -40238,7 +40295,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; \
@@ -40263,7 +40320,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; \
@@ -40292,7 +40349,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; \
@@ -41088,7 +41145,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; \
@@ -41113,7 +41170,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; \
@@ -41138,7 +41195,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; \
@@ -41163,7 +41220,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; \
@@ -41188,7 +41245,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; \
@@ -41214,7 +41271,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; \
@@ -41240,7 +41297,7 @@ maybe-install-dvi-lto-plugin: install-dvi-lto-plugin
 
 install-dvi-lto-plugin: \
     configure-lto-plugin \
-    dvi-lto-plugin 
+    dvi-lto-plugin
        @[ -f ./lto-plugin/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -41266,7 +41323,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; \
@@ -41292,7 +41349,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; \
@@ -41317,7 +41374,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; \
@@ -41341,7 +41398,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; \
@@ -41365,7 +41422,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; \
@@ -41389,7 +41446,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; \
@@ -41413,7 +41470,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; \
@@ -41441,7 +41498,7 @@ configure-libcc1: stage_current
 @endif gcc-bootstrap
 @if libcc1
 maybe-configure-libcc1: configure-libcc1
-configure-libcc1: 
+configure-libcc1:
        @: $(MAKE); $(unstage)
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -41542,7 +41599,7 @@ maybe-info-libcc1:
 maybe-info-libcc1: info-libcc1
 
 info-libcc1: \
-    configure-libcc1 
+    configure-libcc1
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41568,7 +41625,7 @@ maybe-dvi-libcc1:
 maybe-dvi-libcc1: dvi-libcc1
 
 dvi-libcc1: \
-    configure-libcc1 
+    configure-libcc1
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41594,7 +41651,7 @@ maybe-pdf-libcc1:
 maybe-pdf-libcc1: pdf-libcc1
 
 pdf-libcc1: \
-    configure-libcc1 
+    configure-libcc1
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41620,7 +41677,7 @@ maybe-html-libcc1:
 maybe-html-libcc1: html-libcc1
 
 html-libcc1: \
-    configure-libcc1 
+    configure-libcc1
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41646,7 +41703,7 @@ maybe-TAGS-libcc1:
 maybe-TAGS-libcc1: TAGS-libcc1
 
 TAGS-libcc1: \
-    configure-libcc1 
+    configure-libcc1
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41673,7 +41730,7 @@ maybe-install-info-libcc1: install-info-libcc1
 
 install-info-libcc1: \
     configure-libcc1 \
-    info-libcc1 
+    info-libcc1
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41700,7 +41757,7 @@ maybe-install-dvi-libcc1: install-dvi-libcc1
 
 install-dvi-libcc1: \
     configure-libcc1 \
-    dvi-libcc1 
+    dvi-libcc1
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41727,7 +41784,7 @@ maybe-install-pdf-libcc1: install-pdf-libcc1
 
 install-pdf-libcc1: \
     configure-libcc1 \
-    pdf-libcc1 
+    pdf-libcc1
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41754,7 +41811,7 @@ maybe-install-html-libcc1: install-html-libcc1
 
 install-html-libcc1: \
     configure-libcc1 \
-    html-libcc1 
+    html-libcc1
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41780,7 +41837,7 @@ maybe-installcheck-libcc1:
 maybe-installcheck-libcc1: installcheck-libcc1
 
 installcheck-libcc1: \
-    configure-libcc1 
+    configure-libcc1
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41805,7 +41862,7 @@ maybe-mostlyclean-libcc1:
 @if libcc1
 maybe-mostlyclean-libcc1: mostlyclean-libcc1
 
-mostlyclean-libcc1: 
+mostlyclean-libcc1:
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41830,7 +41887,7 @@ maybe-clean-libcc1:
 @if libcc1
 maybe-clean-libcc1: clean-libcc1
 
-clean-libcc1: 
+clean-libcc1:
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41855,7 +41912,7 @@ maybe-distclean-libcc1:
 @if libcc1
 maybe-distclean-libcc1: distclean-libcc1
 
-distclean-libcc1: 
+distclean-libcc1:
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41880,7 +41937,7 @@ maybe-maintainer-clean-libcc1:
 @if libcc1
 maybe-maintainer-clean-libcc1: maintainer-clean-libcc1
 
-maintainer-clean-libcc1: 
+maintainer-clean-libcc1:
        @: $(MAKE); $(unstage)
        @[ -f ./libcc1/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -41902,6 +41959,474 @@ maintainer-clean-libcc1:
 
 
 
+.PHONY: configure-gm2tools maybe-configure-gm2tools
+maybe-configure-gm2tools:
+@if gcc-bootstrap
+configure-gm2tools: stage_current
+@endif gcc-bootstrap
+@if gm2tools
+maybe-configure-gm2tools: configure-gm2tools
+configure-gm2tools:
+       @: $(MAKE); $(unstage)
+       @r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       test ! -f $(HOST_SUBDIR)/gm2tools/Makefile || exit 0; \
+       $(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gm2tools; \
+       $(HOST_EXPORTS)  \
+       echo Configuring in $(HOST_SUBDIR)/gm2tools; \
+       cd "$(HOST_SUBDIR)/gm2tools" || exit 1; \
+       case $(srcdir) in \
+         /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
+         *) topdir=`echo $(HOST_SUBDIR)/gm2tools/ | \
+               sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
+       esac; \
+       module_srcdir=gm2tools; \
+       $(SHELL) \
+         $$s/$$module_srcdir/configure \
+         --srcdir=$${topdir}/$$module_srcdir \
+         $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
+         --target=${target_alias}  \
+         || exit 1
+@endif gm2tools
+
+
+
+
+
+.PHONY: all-gm2tools maybe-all-gm2tools
+maybe-all-gm2tools:
+@if gcc-bootstrap
+all-gm2tools: stage_current
+@endif gcc-bootstrap
+@if gm2tools
+TARGET-gm2tools=all
+maybe-all-gm2tools: all-gm2tools
+all-gm2tools: configure-gm2tools
+       @: $(MAKE); $(unstage)
+       @r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS)  \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(STAGE1_FLAGS_TO_PASS)  \
+               $(TARGET-gm2tools))
+@endif gm2tools
+
+
+
+
+.PHONY: check-gm2tools maybe-check-gm2tools
+maybe-check-gm2tools:
+@if gm2tools
+maybe-check-gm2tools: check-gm2tools
+
+check-gm2tools:
+       @: $(MAKE); $(unstage)
+       @r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS)  \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(FLAGS_TO_PASS)  check)
+
+@endif gm2tools
+
+.PHONY: install-gm2tools maybe-install-gm2tools
+maybe-install-gm2tools:
+@if gm2tools
+maybe-install-gm2tools: install-gm2tools
+
+install-gm2tools: installdirs
+       @: $(MAKE); $(unstage)
+       @r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(FLAGS_TO_PASS)  install)
+
+@endif gm2tools
+
+.PHONY: install-strip-gm2tools maybe-install-strip-gm2tools
+maybe-install-strip-gm2tools:
+@if gm2tools
+maybe-install-strip-gm2tools: install-strip-gm2tools
+
+install-strip-gm2tools: installdirs
+       @: $(MAKE); $(unstage)
+       @r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(FLAGS_TO_PASS)  install-strip)
+
+@endif gm2tools
+
+# Other targets (info, dvi, pdf, etc.)
+
+.PHONY: maybe-info-gm2tools info-gm2tools
+maybe-info-gm2tools:
+@if gm2tools
+maybe-info-gm2tools: info-gm2tools
+
+info-gm2tools: \
+    configure-gm2tools
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing info in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 info) \
+         || exit 1
+
+@endif gm2tools
+
+.PHONY: maybe-dvi-gm2tools dvi-gm2tools
+maybe-dvi-gm2tools:
+@if gm2tools
+maybe-dvi-gm2tools: dvi-gm2tools
+
+dvi-gm2tools: \
+    configure-gm2tools
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing dvi in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 dvi) \
+         || exit 1
+
+@endif gm2tools
+
+.PHONY: maybe-pdf-gm2tools pdf-gm2tools
+maybe-pdf-gm2tools:
+@if gm2tools
+maybe-pdf-gm2tools: pdf-gm2tools
+
+pdf-gm2tools: \
+    configure-gm2tools
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing pdf in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 pdf) \
+         || exit 1
+
+@endif gm2tools
+
+.PHONY: maybe-html-gm2tools html-gm2tools
+maybe-html-gm2tools:
+@if gm2tools
+maybe-html-gm2tools: html-gm2tools
+
+html-gm2tools: \
+    configure-gm2tools
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing html in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 html) \
+         || exit 1
+
+@endif gm2tools
+
+.PHONY: maybe-TAGS-gm2tools TAGS-gm2tools
+maybe-TAGS-gm2tools:
+@if gm2tools
+maybe-TAGS-gm2tools: TAGS-gm2tools
+
+TAGS-gm2tools: \
+    configure-gm2tools
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing TAGS in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 TAGS) \
+         || exit 1
+
+@endif gm2tools
+
+.PHONY: maybe-install-info-gm2tools install-info-gm2tools
+maybe-install-info-gm2tools:
+@if gm2tools
+maybe-install-info-gm2tools: install-info-gm2tools
+
+install-info-gm2tools: \
+    configure-gm2tools \
+    info-gm2tools
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing install-info in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 install-info) \
+         || exit 1
+
+@endif gm2tools
+
+.PHONY: maybe-install-dvi-gm2tools install-dvi-gm2tools
+maybe-install-dvi-gm2tools:
+@if gm2tools
+maybe-install-dvi-gm2tools: install-dvi-gm2tools
+
+install-dvi-gm2tools: \
+    configure-gm2tools \
+    dvi-gm2tools
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing install-dvi in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 install-dvi) \
+         || exit 1
+
+@endif gm2tools
+
+.PHONY: maybe-install-pdf-gm2tools install-pdf-gm2tools
+maybe-install-pdf-gm2tools:
+@if gm2tools
+maybe-install-pdf-gm2tools: install-pdf-gm2tools
+
+install-pdf-gm2tools: \
+    configure-gm2tools \
+    pdf-gm2tools
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing install-pdf in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 install-pdf) \
+         || exit 1
+
+@endif gm2tools
+
+.PHONY: maybe-install-html-gm2tools install-html-gm2tools
+maybe-install-html-gm2tools:
+@if gm2tools
+maybe-install-html-gm2tools: install-html-gm2tools
+
+install-html-gm2tools: \
+    configure-gm2tools \
+    html-gm2tools
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing install-html in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 install-html) \
+         || exit 1
+
+@endif gm2tools
+
+.PHONY: maybe-installcheck-gm2tools installcheck-gm2tools
+maybe-installcheck-gm2tools:
+@if gm2tools
+maybe-installcheck-gm2tools: installcheck-gm2tools
+
+installcheck-gm2tools: \
+    configure-gm2tools
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing installcheck in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 installcheck) \
+         || exit 1
+
+@endif gm2tools
+
+.PHONY: maybe-mostlyclean-gm2tools mostlyclean-gm2tools
+maybe-mostlyclean-gm2tools:
+@if gm2tools
+maybe-mostlyclean-gm2tools: mostlyclean-gm2tools
+
+mostlyclean-gm2tools:
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing mostlyclean in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 mostlyclean) \
+         || exit 1
+
+@endif gm2tools
+
+.PHONY: maybe-clean-gm2tools clean-gm2tools
+maybe-clean-gm2tools:
+@if gm2tools
+maybe-clean-gm2tools: clean-gm2tools
+
+clean-gm2tools:
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing clean in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 clean) \
+         || exit 1
+
+@endif gm2tools
+
+.PHONY: maybe-distclean-gm2tools distclean-gm2tools
+maybe-distclean-gm2tools:
+@if gm2tools
+maybe-distclean-gm2tools: distclean-gm2tools
+
+distclean-gm2tools:
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing distclean in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 distclean) \
+         || exit 1
+
+@endif gm2tools
+
+.PHONY: maybe-maintainer-clean-gm2tools maintainer-clean-gm2tools
+maybe-maintainer-clean-gm2tools:
+@if gm2tools
+maybe-maintainer-clean-gm2tools: maintainer-clean-gm2tools
+
+maintainer-clean-gm2tools:
+       @: $(MAKE); $(unstage)
+       @[ -f ./gm2tools/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       for flag in $(EXTRA_HOST_FLAGS) ; do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       echo "Doing maintainer-clean in gm2tools"; \
+       (cd $(HOST_SUBDIR)/gm2tools && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                 maintainer-clean) \
+         || exit 1
+
+@endif gm2tools
+
+
+
 .PHONY: configure-gotools maybe-configure-gotools
 maybe-configure-gotools:
 @if gcc-bootstrap
@@ -41909,7 +42434,7 @@ configure-gotools: stage_current
 @endif gcc-bootstrap
 @if gotools
 maybe-configure-gotools: configure-gotools
-configure-gotools: 
+configure-gotools:
        @: $(MAKE); $(unstage)
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -42010,7 +42535,7 @@ maybe-info-gotools:
 maybe-info-gotools: info-gotools
 
 info-gotools: \
-    configure-gotools 
+    configure-gotools
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42036,7 +42561,7 @@ maybe-dvi-gotools:
 maybe-dvi-gotools: dvi-gotools
 
 dvi-gotools: \
-    configure-gotools 
+    configure-gotools
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42062,7 +42587,7 @@ maybe-pdf-gotools:
 maybe-pdf-gotools: pdf-gotools
 
 pdf-gotools: \
-    configure-gotools 
+    configure-gotools
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42088,7 +42613,7 @@ maybe-html-gotools:
 maybe-html-gotools: html-gotools
 
 html-gotools: \
-    configure-gotools 
+    configure-gotools
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42114,7 +42639,7 @@ maybe-TAGS-gotools:
 maybe-TAGS-gotools: TAGS-gotools
 
 TAGS-gotools: \
-    configure-gotools 
+    configure-gotools
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42141,7 +42666,7 @@ maybe-install-info-gotools: install-info-gotools
 
 install-info-gotools: \
     configure-gotools \
-    info-gotools 
+    info-gotools
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42168,7 +42693,7 @@ maybe-install-dvi-gotools: install-dvi-gotools
 
 install-dvi-gotools: \
     configure-gotools \
-    dvi-gotools 
+    dvi-gotools
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42195,7 +42720,7 @@ maybe-install-pdf-gotools: install-pdf-gotools
 
 install-pdf-gotools: \
     configure-gotools \
-    pdf-gotools 
+    pdf-gotools
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42222,7 +42747,7 @@ maybe-install-html-gotools: install-html-gotools
 
 install-html-gotools: \
     configure-gotools \
-    html-gotools 
+    html-gotools
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42248,7 +42773,7 @@ maybe-installcheck-gotools:
 maybe-installcheck-gotools: installcheck-gotools
 
 installcheck-gotools: \
-    configure-gotools 
+    configure-gotools
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42273,7 +42798,7 @@ maybe-mostlyclean-gotools:
 @if gotools
 maybe-mostlyclean-gotools: mostlyclean-gotools
 
-mostlyclean-gotools: 
+mostlyclean-gotools:
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42298,7 +42823,7 @@ maybe-clean-gotools:
 @if gotools
 maybe-clean-gotools: clean-gotools
 
-clean-gotools: 
+clean-gotools:
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42323,7 +42848,7 @@ maybe-distclean-gotools:
 @if gotools
 maybe-distclean-gotools: distclean-gotools
 
-distclean-gotools: 
+distclean-gotools:
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42348,7 +42873,7 @@ maybe-maintainer-clean-gotools:
 @if gotools
 maybe-maintainer-clean-gotools: maintainer-clean-gotools
 
-maintainer-clean-gotools: 
+maintainer-clean-gotools:
        @: $(MAKE); $(unstage)
        @[ -f ./gotools/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -42377,7 +42902,7 @@ configure-libctf: stage_current
 @endif gcc-bootstrap
 @if libctf
 maybe-configure-libctf: configure-libctf
-configure-libctf: 
+configure-libctf:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        test ! -f $(HOST_SUBDIR)/libctf/Makefile || exit 0; \
@@ -43164,7 +43689,7 @@ maybe-info-libctf:
 maybe-info-libctf: info-libctf
 
 info-libctf: \
-    configure-libctf 
+    configure-libctf
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43189,7 +43714,7 @@ maybe-dvi-libctf:
 maybe-dvi-libctf: dvi-libctf
 
 dvi-libctf: \
-    configure-libctf 
+    configure-libctf
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43214,7 +43739,7 @@ maybe-pdf-libctf:
 maybe-pdf-libctf: pdf-libctf
 
 pdf-libctf: \
-    configure-libctf 
+    configure-libctf
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43239,7 +43764,7 @@ maybe-html-libctf:
 maybe-html-libctf: html-libctf
 
 html-libctf: \
-    configure-libctf 
+    configure-libctf
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43264,7 +43789,7 @@ maybe-TAGS-libctf:
 maybe-TAGS-libctf: TAGS-libctf
 
 TAGS-libctf: \
-    configure-libctf 
+    configure-libctf
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43290,7 +43815,7 @@ maybe-install-info-libctf: install-info-libctf
 
 install-info-libctf: \
     configure-libctf \
-    info-libctf 
+    info-libctf
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43316,7 +43841,7 @@ maybe-install-dvi-libctf: install-dvi-libctf
 
 install-dvi-libctf: \
     configure-libctf \
-    dvi-libctf 
+    dvi-libctf
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43342,7 +43867,7 @@ maybe-install-pdf-libctf: install-pdf-libctf
 
 install-pdf-libctf: \
     configure-libctf \
-    pdf-libctf 
+    pdf-libctf
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43368,7 +43893,7 @@ maybe-install-html-libctf: install-html-libctf
 
 install-html-libctf: \
     configure-libctf \
-    html-libctf 
+    html-libctf
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43393,7 +43918,7 @@ maybe-installcheck-libctf:
 maybe-installcheck-libctf: installcheck-libctf
 
 installcheck-libctf: \
-    configure-libctf 
+    configure-libctf
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43417,7 +43942,7 @@ maybe-mostlyclean-libctf:
 @if libctf
 maybe-mostlyclean-libctf: mostlyclean-libctf
 
-mostlyclean-libctf: 
+mostlyclean-libctf:
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43441,7 +43966,7 @@ maybe-clean-libctf:
 @if libctf
 maybe-clean-libctf: clean-libctf
 
-clean-libctf: 
+clean-libctf:
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43465,7 +43990,7 @@ maybe-distclean-libctf:
 @if libctf
 maybe-distclean-libctf: distclean-libctf
 
-distclean-libctf: 
+distclean-libctf:
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43489,7 +44014,7 @@ maybe-maintainer-clean-libctf:
 @if libctf
 maybe-maintainer-clean-libctf: maintainer-clean-libctf
 
-maintainer-clean-libctf: 
+maintainer-clean-libctf:
        @[ -f ./libctf/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -43524,7 +44049,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..."; \
@@ -44425,7 +44950,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; \
@@ -44451,7 +44976,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; \
@@ -44477,7 +45002,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; \
@@ -44503,7 +45028,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; \
@@ -44529,7 +45054,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; \
@@ -44556,7 +45081,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; \
@@ -44583,7 +45108,7 @@ maybe-install-dvi-target-libstdc++-v3: install-dvi-target-libstdc++-v3
 
 install-dvi-target-libstdc++-v3: \
     configure-target-libstdc++-v3 \
-    dvi-target-libstdc++-v3 
+    dvi-target-libstdc++-v3
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -44610,7 +45135,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; \
@@ -44637,7 +45162,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; \
@@ -44663,7 +45188,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; \
@@ -44688,7 +45213,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; \
@@ -44713,7 +45238,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; \
@@ -44738,7 +45263,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; \
@@ -44763,7 +45288,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; \
@@ -44794,7 +45319,7 @@ configure-target-libsanitizer: stage_current
 @endif gcc-bootstrap
 @if target-libsanitizer
 maybe-configure-target-libsanitizer: configure-target-libsanitizer
-configure-target-libsanitizer: 
+configure-target-libsanitizer:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        echo "Checking multilib configuration for libsanitizer..."; \
@@ -45695,7 +46220,7 @@ maybe-info-target-libsanitizer:
 maybe-info-target-libsanitizer: info-target-libsanitizer
 
 info-target-libsanitizer: \
-    configure-target-libsanitizer 
+    configure-target-libsanitizer
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -45721,7 +46246,7 @@ maybe-dvi-target-libsanitizer:
 maybe-dvi-target-libsanitizer: dvi-target-libsanitizer
 
 dvi-target-libsanitizer: \
-    configure-target-libsanitizer 
+    configure-target-libsanitizer
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -45747,7 +46272,7 @@ maybe-pdf-target-libsanitizer:
 maybe-pdf-target-libsanitizer: pdf-target-libsanitizer
 
 pdf-target-libsanitizer: \
-    configure-target-libsanitizer 
+    configure-target-libsanitizer
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -45773,7 +46298,7 @@ maybe-html-target-libsanitizer:
 maybe-html-target-libsanitizer: html-target-libsanitizer
 
 html-target-libsanitizer: \
-    configure-target-libsanitizer 
+    configure-target-libsanitizer
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -45799,7 +46324,7 @@ maybe-TAGS-target-libsanitizer:
 maybe-TAGS-target-libsanitizer: TAGS-target-libsanitizer
 
 TAGS-target-libsanitizer: \
-    configure-target-libsanitizer 
+    configure-target-libsanitizer
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -45826,7 +46351,7 @@ maybe-install-info-target-libsanitizer: install-info-target-libsanitizer
 
 install-info-target-libsanitizer: \
     configure-target-libsanitizer \
-    info-target-libsanitizer 
+    info-target-libsanitizer
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -45853,7 +46378,7 @@ maybe-install-dvi-target-libsanitizer: install-dvi-target-libsanitizer
 
 install-dvi-target-libsanitizer: \
     configure-target-libsanitizer \
-    dvi-target-libsanitizer 
+    dvi-target-libsanitizer
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -45880,7 +46405,7 @@ maybe-install-pdf-target-libsanitizer: install-pdf-target-libsanitizer
 
 install-pdf-target-libsanitizer: \
     configure-target-libsanitizer \
-    pdf-target-libsanitizer 
+    pdf-target-libsanitizer
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -45907,7 +46432,7 @@ maybe-install-html-target-libsanitizer: install-html-target-libsanitizer
 
 install-html-target-libsanitizer: \
     configure-target-libsanitizer \
-    html-target-libsanitizer 
+    html-target-libsanitizer
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -45933,7 +46458,7 @@ maybe-installcheck-target-libsanitizer:
 maybe-installcheck-target-libsanitizer: installcheck-target-libsanitizer
 
 installcheck-target-libsanitizer: \
-    configure-target-libsanitizer 
+    configure-target-libsanitizer
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -45958,7 +46483,7 @@ maybe-mostlyclean-target-libsanitizer:
 @if target-libsanitizer
 maybe-mostlyclean-target-libsanitizer: mostlyclean-target-libsanitizer
 
-mostlyclean-target-libsanitizer: 
+mostlyclean-target-libsanitizer:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -45983,7 +46508,7 @@ maybe-clean-target-libsanitizer:
 @if target-libsanitizer
 maybe-clean-target-libsanitizer: clean-target-libsanitizer
 
-clean-target-libsanitizer: 
+clean-target-libsanitizer:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -46008,7 +46533,7 @@ maybe-distclean-target-libsanitizer:
 @if target-libsanitizer
 maybe-distclean-target-libsanitizer: distclean-target-libsanitizer
 
-distclean-target-libsanitizer: 
+distclean-target-libsanitizer:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -46033,7 +46558,7 @@ maybe-maintainer-clean-target-libsanitizer:
 @if target-libsanitizer
 maybe-maintainer-clean-target-libsanitizer: maintainer-clean-target-libsanitizer
 
-maintainer-clean-target-libsanitizer: 
+maintainer-clean-target-libsanitizer:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libsanitizer/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -46064,7 +46589,7 @@ configure-target-libvtv: stage_current
 @endif gcc-bootstrap
 @if target-libvtv
 maybe-configure-target-libvtv: configure-target-libvtv
-configure-target-libvtv: 
+configure-target-libvtv:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        echo "Checking multilib configuration for libvtv..."; \
@@ -46965,7 +47490,7 @@ maybe-info-target-libvtv:
 maybe-info-target-libvtv: info-target-libvtv
 
 info-target-libvtv: \
-    configure-target-libvtv 
+    configure-target-libvtv
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -46991,7 +47516,7 @@ maybe-dvi-target-libvtv:
 maybe-dvi-target-libvtv: dvi-target-libvtv
 
 dvi-target-libvtv: \
-    configure-target-libvtv 
+    configure-target-libvtv
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47017,7 +47542,7 @@ maybe-pdf-target-libvtv:
 maybe-pdf-target-libvtv: pdf-target-libvtv
 
 pdf-target-libvtv: \
-    configure-target-libvtv 
+    configure-target-libvtv
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47043,7 +47568,7 @@ maybe-html-target-libvtv:
 maybe-html-target-libvtv: html-target-libvtv
 
 html-target-libvtv: \
-    configure-target-libvtv 
+    configure-target-libvtv
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47069,7 +47594,7 @@ maybe-TAGS-target-libvtv:
 maybe-TAGS-target-libvtv: TAGS-target-libvtv
 
 TAGS-target-libvtv: \
-    configure-target-libvtv 
+    configure-target-libvtv
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47096,7 +47621,7 @@ maybe-install-info-target-libvtv: install-info-target-libvtv
 
 install-info-target-libvtv: \
     configure-target-libvtv \
-    info-target-libvtv 
+    info-target-libvtv
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47123,7 +47648,7 @@ maybe-install-dvi-target-libvtv: install-dvi-target-libvtv
 
 install-dvi-target-libvtv: \
     configure-target-libvtv \
-    dvi-target-libvtv 
+    dvi-target-libvtv
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47150,7 +47675,7 @@ maybe-install-pdf-target-libvtv: install-pdf-target-libvtv
 
 install-pdf-target-libvtv: \
     configure-target-libvtv \
-    pdf-target-libvtv 
+    pdf-target-libvtv
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47177,7 +47702,7 @@ maybe-install-html-target-libvtv: install-html-target-libvtv
 
 install-html-target-libvtv: \
     configure-target-libvtv \
-    html-target-libvtv 
+    html-target-libvtv
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47203,7 +47728,7 @@ maybe-installcheck-target-libvtv:
 maybe-installcheck-target-libvtv: installcheck-target-libvtv
 
 installcheck-target-libvtv: \
-    configure-target-libvtv 
+    configure-target-libvtv
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47228,7 +47753,7 @@ maybe-mostlyclean-target-libvtv:
 @if target-libvtv
 maybe-mostlyclean-target-libvtv: mostlyclean-target-libvtv
 
-mostlyclean-target-libvtv: 
+mostlyclean-target-libvtv:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47253,7 +47778,7 @@ maybe-clean-target-libvtv:
 @if target-libvtv
 maybe-clean-target-libvtv: clean-target-libvtv
 
-clean-target-libvtv: 
+clean-target-libvtv:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47278,7 +47803,7 @@ maybe-distclean-target-libvtv:
 @if target-libvtv
 maybe-distclean-target-libvtv: distclean-target-libvtv
 
-distclean-target-libvtv: 
+distclean-target-libvtv:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47303,7 +47828,7 @@ maybe-maintainer-clean-target-libvtv:
 @if target-libvtv
 maybe-maintainer-clean-target-libvtv: maintainer-clean-target-libvtv
 
-maintainer-clean-target-libvtv: 
+maintainer-clean-target-libvtv:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libvtv/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47334,7 +47859,7 @@ configure-target-liboffloadmic: stage_current
 @endif gcc-bootstrap
 @if target-liboffloadmic
 maybe-configure-target-liboffloadmic: configure-target-liboffloadmic
-configure-target-liboffloadmic: 
+configure-target-liboffloadmic:
        @: $(MAKE); $(unstage)
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -47450,7 +47975,7 @@ maybe-info-target-liboffloadmic:
 maybe-info-target-liboffloadmic: info-target-liboffloadmic
 
 info-target-liboffloadmic: \
-    configure-target-liboffloadmic 
+    configure-target-liboffloadmic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47476,7 +48001,7 @@ maybe-dvi-target-liboffloadmic:
 maybe-dvi-target-liboffloadmic: dvi-target-liboffloadmic
 
 dvi-target-liboffloadmic: \
-    configure-target-liboffloadmic 
+    configure-target-liboffloadmic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47502,7 +48027,7 @@ maybe-pdf-target-liboffloadmic:
 maybe-pdf-target-liboffloadmic: pdf-target-liboffloadmic
 
 pdf-target-liboffloadmic: \
-    configure-target-liboffloadmic 
+    configure-target-liboffloadmic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47528,7 +48053,7 @@ maybe-html-target-liboffloadmic:
 maybe-html-target-liboffloadmic: html-target-liboffloadmic
 
 html-target-liboffloadmic: \
-    configure-target-liboffloadmic 
+    configure-target-liboffloadmic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47554,7 +48079,7 @@ maybe-TAGS-target-liboffloadmic:
 maybe-TAGS-target-liboffloadmic: TAGS-target-liboffloadmic
 
 TAGS-target-liboffloadmic: \
-    configure-target-liboffloadmic 
+    configure-target-liboffloadmic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47581,7 +48106,7 @@ maybe-install-info-target-liboffloadmic: install-info-target-liboffloadmic
 
 install-info-target-liboffloadmic: \
     configure-target-liboffloadmic \
-    info-target-liboffloadmic 
+    info-target-liboffloadmic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47608,7 +48133,7 @@ maybe-install-dvi-target-liboffloadmic: install-dvi-target-liboffloadmic
 
 install-dvi-target-liboffloadmic: \
     configure-target-liboffloadmic \
-    dvi-target-liboffloadmic 
+    dvi-target-liboffloadmic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47635,7 +48160,7 @@ maybe-install-pdf-target-liboffloadmic: install-pdf-target-liboffloadmic
 
 install-pdf-target-liboffloadmic: \
     configure-target-liboffloadmic \
-    pdf-target-liboffloadmic 
+    pdf-target-liboffloadmic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47662,7 +48187,7 @@ maybe-install-html-target-liboffloadmic: install-html-target-liboffloadmic
 
 install-html-target-liboffloadmic: \
     configure-target-liboffloadmic \
-    html-target-liboffloadmic 
+    html-target-liboffloadmic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47688,7 +48213,7 @@ maybe-installcheck-target-liboffloadmic:
 maybe-installcheck-target-liboffloadmic: installcheck-target-liboffloadmic
 
 installcheck-target-liboffloadmic: \
-    configure-target-liboffloadmic 
+    configure-target-liboffloadmic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47713,7 +48238,7 @@ maybe-mostlyclean-target-liboffloadmic:
 @if target-liboffloadmic
 maybe-mostlyclean-target-liboffloadmic: mostlyclean-target-liboffloadmic
 
-mostlyclean-target-liboffloadmic: 
+mostlyclean-target-liboffloadmic:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47738,7 +48263,7 @@ maybe-clean-target-liboffloadmic:
 @if target-liboffloadmic
 maybe-clean-target-liboffloadmic: clean-target-liboffloadmic
 
-clean-target-liboffloadmic: 
+clean-target-liboffloadmic:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47763,7 +48288,7 @@ maybe-distclean-target-liboffloadmic:
 @if target-liboffloadmic
 maybe-distclean-target-liboffloadmic: distclean-target-liboffloadmic
 
-distclean-target-liboffloadmic: 
+distclean-target-liboffloadmic:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47788,7 +48313,7 @@ maybe-maintainer-clean-target-liboffloadmic:
 @if target-liboffloadmic
 maybe-maintainer-clean-target-liboffloadmic: maintainer-clean-target-liboffloadmic
 
-maintainer-clean-target-liboffloadmic: 
+maintainer-clean-target-liboffloadmic:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/liboffloadmic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -47819,7 +48344,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; \
@@ -47935,7 +48460,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; \
@@ -47961,7 +48486,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; \
@@ -47987,7 +48512,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; \
@@ -48013,7 +48538,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; \
@@ -48039,7 +48564,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; \
@@ -48066,7 +48591,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; \
@@ -48093,7 +48618,7 @@ maybe-install-dvi-target-libssp: install-dvi-target-libssp
 
 install-dvi-target-libssp: \
     configure-target-libssp \
-    dvi-target-libssp 
+    dvi-target-libssp
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libssp/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -48120,7 +48645,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; \
@@ -48147,7 +48672,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; \
@@ -48173,7 +48698,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; \
@@ -48198,7 +48723,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; \
@@ -48223,7 +48748,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; \
@@ -48248,7 +48773,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; \
@@ -48273,7 +48798,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; \
@@ -48304,7 +48829,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; \
@@ -48420,7 +48945,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; \
@@ -48446,7 +48971,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; \
@@ -48472,7 +48997,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; \
@@ -48498,7 +49023,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; \
@@ -48524,7 +49049,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; \
@@ -48551,7 +49076,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; \
@@ -48578,7 +49103,7 @@ maybe-install-dvi-target-newlib: install-dvi-target-newlib
 
 install-dvi-target-newlib: \
     configure-target-newlib \
-    dvi-target-newlib 
+    dvi-target-newlib
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/newlib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -48605,7 +49130,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; \
@@ -48632,7 +49157,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; \
@@ -48658,7 +49183,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; \
@@ -48683,7 +49208,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; \
@@ -48708,7 +49233,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; \
@@ -48733,7 +49258,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; \
@@ -48758,7 +49283,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; \
@@ -48789,7 +49314,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..."; \
@@ -49685,7 +50210,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; \
@@ -49711,7 +50236,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; \
@@ -49737,7 +50262,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; \
@@ -49763,7 +50288,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; \
@@ -49800,7 +50325,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; \
@@ -49837,7 +50362,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; \
@@ -49864,7 +50389,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; \
@@ -49890,7 +50415,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; \
@@ -49915,7 +50440,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; \
@@ -49940,7 +50465,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; \
@@ -49965,7 +50490,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; \
@@ -49990,7 +50515,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; \
@@ -50021,7 +50546,7 @@ configure-target-libbacktrace: stage_current
 @endif gcc-bootstrap
 @if target-libbacktrace
 maybe-configure-target-libbacktrace: configure-target-libbacktrace
-configure-target-libbacktrace: 
+configure-target-libbacktrace:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        echo "Checking multilib configuration for libbacktrace..."; \
@@ -50922,7 +51447,7 @@ maybe-info-target-libbacktrace:
 maybe-info-target-libbacktrace: info-target-libbacktrace
 
 info-target-libbacktrace: \
-    configure-target-libbacktrace 
+    configure-target-libbacktrace
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -50948,7 +51473,7 @@ maybe-dvi-target-libbacktrace:
 maybe-dvi-target-libbacktrace: dvi-target-libbacktrace
 
 dvi-target-libbacktrace: \
-    configure-target-libbacktrace 
+    configure-target-libbacktrace
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -50974,7 +51499,7 @@ maybe-pdf-target-libbacktrace:
 maybe-pdf-target-libbacktrace: pdf-target-libbacktrace
 
 pdf-target-libbacktrace: \
-    configure-target-libbacktrace 
+    configure-target-libbacktrace
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51000,7 +51525,7 @@ maybe-html-target-libbacktrace:
 maybe-html-target-libbacktrace: html-target-libbacktrace
 
 html-target-libbacktrace: \
-    configure-target-libbacktrace 
+    configure-target-libbacktrace
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51026,7 +51551,7 @@ maybe-TAGS-target-libbacktrace:
 maybe-TAGS-target-libbacktrace: TAGS-target-libbacktrace
 
 TAGS-target-libbacktrace: \
-    configure-target-libbacktrace 
+    configure-target-libbacktrace
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51053,7 +51578,7 @@ maybe-install-info-target-libbacktrace: install-info-target-libbacktrace
 
 install-info-target-libbacktrace: \
     configure-target-libbacktrace \
-    info-target-libbacktrace 
+    info-target-libbacktrace
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51080,7 +51605,7 @@ maybe-install-dvi-target-libbacktrace: install-dvi-target-libbacktrace
 
 install-dvi-target-libbacktrace: \
     configure-target-libbacktrace \
-    dvi-target-libbacktrace 
+    dvi-target-libbacktrace
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51107,7 +51632,7 @@ maybe-install-pdf-target-libbacktrace: install-pdf-target-libbacktrace
 
 install-pdf-target-libbacktrace: \
     configure-target-libbacktrace \
-    pdf-target-libbacktrace 
+    pdf-target-libbacktrace
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51134,7 +51659,7 @@ maybe-install-html-target-libbacktrace: install-html-target-libbacktrace
 
 install-html-target-libbacktrace: \
     configure-target-libbacktrace \
-    html-target-libbacktrace 
+    html-target-libbacktrace
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51160,7 +51685,7 @@ maybe-installcheck-target-libbacktrace:
 maybe-installcheck-target-libbacktrace: installcheck-target-libbacktrace
 
 installcheck-target-libbacktrace: \
-    configure-target-libbacktrace 
+    configure-target-libbacktrace
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51185,7 +51710,7 @@ maybe-mostlyclean-target-libbacktrace:
 @if target-libbacktrace
 maybe-mostlyclean-target-libbacktrace: mostlyclean-target-libbacktrace
 
-mostlyclean-target-libbacktrace: 
+mostlyclean-target-libbacktrace:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51210,7 +51735,7 @@ maybe-clean-target-libbacktrace:
 @if target-libbacktrace
 maybe-clean-target-libbacktrace: clean-target-libbacktrace
 
-clean-target-libbacktrace: 
+clean-target-libbacktrace:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51235,7 +51760,7 @@ maybe-distclean-target-libbacktrace:
 @if target-libbacktrace
 maybe-distclean-target-libbacktrace: distclean-target-libbacktrace
 
-distclean-target-libbacktrace: 
+distclean-target-libbacktrace:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51260,7 +51785,7 @@ maybe-maintainer-clean-target-libbacktrace:
 @if target-libbacktrace
 maybe-maintainer-clean-target-libbacktrace: maintainer-clean-target-libbacktrace
 
-maintainer-clean-target-libbacktrace: 
+maintainer-clean-target-libbacktrace:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libbacktrace/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51291,7 +51816,7 @@ configure-target-libquadmath: stage_current
 @endif gcc-bootstrap
 @if target-libquadmath
 maybe-configure-target-libquadmath: configure-target-libquadmath
-configure-target-libquadmath: 
+configure-target-libquadmath:
        @: $(MAKE); $(unstage)
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -51407,7 +51932,7 @@ maybe-info-target-libquadmath:
 maybe-info-target-libquadmath: info-target-libquadmath
 
 info-target-libquadmath: \
-    configure-target-libquadmath 
+    configure-target-libquadmath
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51433,7 +51958,7 @@ maybe-dvi-target-libquadmath:
 maybe-dvi-target-libquadmath: dvi-target-libquadmath
 
 dvi-target-libquadmath: \
-    configure-target-libquadmath 
+    configure-target-libquadmath
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51459,7 +51984,7 @@ maybe-pdf-target-libquadmath:
 maybe-pdf-target-libquadmath: pdf-target-libquadmath
 
 pdf-target-libquadmath: \
-    configure-target-libquadmath 
+    configure-target-libquadmath
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51485,7 +52010,7 @@ maybe-html-target-libquadmath:
 maybe-html-target-libquadmath: html-target-libquadmath
 
 html-target-libquadmath: \
-    configure-target-libquadmath 
+    configure-target-libquadmath
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51511,7 +52036,7 @@ maybe-TAGS-target-libquadmath:
 maybe-TAGS-target-libquadmath: TAGS-target-libquadmath
 
 TAGS-target-libquadmath: \
-    configure-target-libquadmath 
+    configure-target-libquadmath
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51538,7 +52063,7 @@ maybe-install-info-target-libquadmath: install-info-target-libquadmath
 
 install-info-target-libquadmath: \
     configure-target-libquadmath \
-    info-target-libquadmath 
+    info-target-libquadmath
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51565,7 +52090,7 @@ maybe-install-dvi-target-libquadmath: install-dvi-target-libquadmath
 
 install-dvi-target-libquadmath: \
     configure-target-libquadmath \
-    dvi-target-libquadmath 
+    dvi-target-libquadmath
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51592,7 +52117,7 @@ maybe-install-pdf-target-libquadmath: install-pdf-target-libquadmath
 
 install-pdf-target-libquadmath: \
     configure-target-libquadmath \
-    pdf-target-libquadmath 
+    pdf-target-libquadmath
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51619,7 +52144,7 @@ maybe-install-html-target-libquadmath: install-html-target-libquadmath
 
 install-html-target-libquadmath: \
     configure-target-libquadmath \
-    html-target-libquadmath 
+    html-target-libquadmath
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51645,7 +52170,7 @@ maybe-installcheck-target-libquadmath:
 maybe-installcheck-target-libquadmath: installcheck-target-libquadmath
 
 installcheck-target-libquadmath: \
-    configure-target-libquadmath 
+    configure-target-libquadmath
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51670,7 +52195,7 @@ maybe-mostlyclean-target-libquadmath:
 @if target-libquadmath
 maybe-mostlyclean-target-libquadmath: mostlyclean-target-libquadmath
 
-mostlyclean-target-libquadmath: 
+mostlyclean-target-libquadmath:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51695,7 +52220,7 @@ maybe-clean-target-libquadmath:
 @if target-libquadmath
 maybe-clean-target-libquadmath: clean-target-libquadmath
 
-clean-target-libquadmath: 
+clean-target-libquadmath:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51720,7 +52245,7 @@ maybe-distclean-target-libquadmath:
 @if target-libquadmath
 maybe-distclean-target-libquadmath: distclean-target-libquadmath
 
-distclean-target-libquadmath: 
+distclean-target-libquadmath:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51745,7 +52270,7 @@ maybe-maintainer-clean-target-libquadmath:
 @if target-libquadmath
 maybe-maintainer-clean-target-libquadmath: maintainer-clean-target-libquadmath
 
-maintainer-clean-target-libquadmath: 
+maintainer-clean-target-libquadmath:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libquadmath/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -51776,7 +52301,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; \
@@ -51892,7 +52417,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; \
@@ -51918,7 +52443,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; \
@@ -51944,7 +52469,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; \
@@ -51970,7 +52495,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; \
@@ -51996,7 +52521,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; \
@@ -52023,7 +52548,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; \
@@ -52050,7 +52575,7 @@ maybe-install-dvi-target-libgfortran: install-dvi-target-libgfortran
 
 install-dvi-target-libgfortran: \
     configure-target-libgfortran \
-    dvi-target-libgfortran 
+    dvi-target-libgfortran
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgfortran/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -52077,7 +52602,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; \
@@ -52104,7 +52629,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; \
@@ -52130,7 +52655,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; \
@@ -52155,7 +52680,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; \
@@ -52180,7 +52705,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; \
@@ -52205,7 +52730,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; \
@@ -52230,7 +52755,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; \
@@ -52261,7 +52786,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; \
@@ -52377,7 +52902,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; \
@@ -52403,7 +52928,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; \
@@ -52429,7 +52954,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; \
@@ -52455,7 +52980,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; \
@@ -52492,7 +53017,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; \
@@ -52529,7 +53054,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; \
@@ -52556,7 +53081,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; \
@@ -52582,7 +53107,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; \
@@ -52607,7 +53132,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; \
@@ -52632,7 +53157,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; \
@@ -52657,7 +53182,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; \
@@ -52682,7 +53207,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; \
@@ -52713,7 +53238,7 @@ configure-target-libgo: stage_current
 @endif gcc-bootstrap
 @if target-libgo
 maybe-configure-target-libgo: configure-target-libgo
-configure-target-libgo: 
+configure-target-libgo:
        @: $(MAKE); $(unstage)
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -52829,7 +53354,7 @@ maybe-info-target-libgo:
 maybe-info-target-libgo: info-target-libgo
 
 info-target-libgo: \
-    configure-target-libgo 
+    configure-target-libgo
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -52855,7 +53380,7 @@ maybe-dvi-target-libgo:
 maybe-dvi-target-libgo: dvi-target-libgo
 
 dvi-target-libgo: \
-    configure-target-libgo 
+    configure-target-libgo
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -52881,7 +53406,7 @@ maybe-pdf-target-libgo:
 maybe-pdf-target-libgo: pdf-target-libgo
 
 pdf-target-libgo: \
-    configure-target-libgo 
+    configure-target-libgo
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -52907,7 +53432,7 @@ maybe-html-target-libgo:
 maybe-html-target-libgo: html-target-libgo
 
 html-target-libgo: \
-    configure-target-libgo 
+    configure-target-libgo
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -52933,7 +53458,7 @@ maybe-TAGS-target-libgo:
 maybe-TAGS-target-libgo: TAGS-target-libgo
 
 TAGS-target-libgo: \
-    configure-target-libgo 
+    configure-target-libgo
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -52960,7 +53485,7 @@ maybe-install-info-target-libgo: install-info-target-libgo
 
 install-info-target-libgo: \
     configure-target-libgo \
-    info-target-libgo 
+    info-target-libgo
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -52987,7 +53512,7 @@ maybe-install-dvi-target-libgo: install-dvi-target-libgo
 
 install-dvi-target-libgo: \
     configure-target-libgo \
-    dvi-target-libgo 
+    dvi-target-libgo
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -53014,7 +53539,7 @@ maybe-install-pdf-target-libgo: install-pdf-target-libgo
 
 install-pdf-target-libgo: \
     configure-target-libgo \
-    pdf-target-libgo 
+    pdf-target-libgo
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -53041,7 +53566,7 @@ maybe-install-html-target-libgo: install-html-target-libgo
 
 install-html-target-libgo: \
     configure-target-libgo \
-    html-target-libgo 
+    html-target-libgo
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -53067,7 +53592,7 @@ maybe-installcheck-target-libgo:
 maybe-installcheck-target-libgo: installcheck-target-libgo
 
 installcheck-target-libgo: \
-    configure-target-libgo 
+    configure-target-libgo
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -53092,7 +53617,7 @@ maybe-mostlyclean-target-libgo:
 @if target-libgo
 maybe-mostlyclean-target-libgo: mostlyclean-target-libgo
 
-mostlyclean-target-libgo: 
+mostlyclean-target-libgo:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -53117,7 +53642,7 @@ maybe-clean-target-libgo:
 @if target-libgo
 maybe-clean-target-libgo: clean-target-libgo
 
-clean-target-libgo: 
+clean-target-libgo:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -53142,7 +53667,7 @@ maybe-distclean-target-libgo:
 @if target-libgo
 maybe-distclean-target-libgo: distclean-target-libgo
 
-distclean-target-libgo: 
+distclean-target-libgo:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -53167,7 +53692,7 @@ maybe-maintainer-clean-target-libgo:
 @if target-libgo
 maybe-maintainer-clean-target-libgo: maintainer-clean-target-libgo
 
-maintainer-clean-target-libgo: 
+maintainer-clean-target-libgo:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgo/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -53198,7 +53723,7 @@ configure-target-libphobos: stage_current
 @endif gcc-bootstrap
 @if target-libphobos
 maybe-configure-target-libphobos: configure-target-libphobos
-configure-target-libphobos: 
+configure-target-libphobos:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        echo "Checking multilib configuration for libphobos..."; \
@@ -54099,7 +54624,7 @@ maybe-info-target-libphobos:
 maybe-info-target-libphobos: info-target-libphobos
 
 info-target-libphobos: \
-    configure-target-libphobos 
+    configure-target-libphobos
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54125,7 +54650,7 @@ maybe-dvi-target-libphobos:
 maybe-dvi-target-libphobos: dvi-target-libphobos
 
 dvi-target-libphobos: \
-    configure-target-libphobos 
+    configure-target-libphobos
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54151,7 +54676,7 @@ maybe-pdf-target-libphobos:
 maybe-pdf-target-libphobos: pdf-target-libphobos
 
 pdf-target-libphobos: \
-    configure-target-libphobos 
+    configure-target-libphobos
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54177,7 +54702,7 @@ maybe-html-target-libphobos:
 maybe-html-target-libphobos: html-target-libphobos
 
 html-target-libphobos: \
-    configure-target-libphobos 
+    configure-target-libphobos
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54203,7 +54728,7 @@ maybe-TAGS-target-libphobos:
 maybe-TAGS-target-libphobos: TAGS-target-libphobos
 
 TAGS-target-libphobos: \
-    configure-target-libphobos 
+    configure-target-libphobos
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54230,7 +54755,7 @@ maybe-install-info-target-libphobos: install-info-target-libphobos
 
 install-info-target-libphobos: \
     configure-target-libphobos \
-    info-target-libphobos 
+    info-target-libphobos
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54257,7 +54782,7 @@ maybe-install-dvi-target-libphobos: install-dvi-target-libphobos
 
 install-dvi-target-libphobos: \
     configure-target-libphobos \
-    dvi-target-libphobos 
+    dvi-target-libphobos
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54284,7 +54809,7 @@ maybe-install-pdf-target-libphobos: install-pdf-target-libphobos
 
 install-pdf-target-libphobos: \
     configure-target-libphobos \
-    pdf-target-libphobos 
+    pdf-target-libphobos
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54311,7 +54836,7 @@ maybe-install-html-target-libphobos: install-html-target-libphobos
 
 install-html-target-libphobos: \
     configure-target-libphobos \
-    html-target-libphobos 
+    html-target-libphobos
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54337,7 +54862,7 @@ maybe-installcheck-target-libphobos:
 maybe-installcheck-target-libphobos: installcheck-target-libphobos
 
 installcheck-target-libphobos: \
-    configure-target-libphobos 
+    configure-target-libphobos
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54362,7 +54887,7 @@ maybe-mostlyclean-target-libphobos:
 @if target-libphobos
 maybe-mostlyclean-target-libphobos: mostlyclean-target-libphobos
 
-mostlyclean-target-libphobos: 
+mostlyclean-target-libphobos:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54387,7 +54912,7 @@ maybe-clean-target-libphobos:
 @if target-libphobos
 maybe-clean-target-libphobos: clean-target-libphobos
 
-clean-target-libphobos: 
+clean-target-libphobos:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54412,7 +54937,7 @@ maybe-distclean-target-libphobos:
 @if target-libphobos
 maybe-distclean-target-libphobos: distclean-target-libphobos
 
-distclean-target-libphobos: 
+distclean-target-libphobos:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54437,7 +54962,7 @@ maybe-maintainer-clean-target-libphobos:
 @if target-libphobos
 maybe-maintainer-clean-target-libphobos: maintainer-clean-target-libphobos
 
-maintainer-clean-target-libphobos: 
+maintainer-clean-target-libphobos:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libphobos/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54468,7 +54993,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; \
@@ -54579,7 +55104,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; \
@@ -54605,7 +55130,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; \
@@ -54631,7 +55156,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; \
@@ -54657,7 +55182,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; \
@@ -54683,7 +55208,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; \
@@ -54710,7 +55235,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; \
@@ -54737,7 +55262,7 @@ maybe-install-dvi-target-libtermcap: install-dvi-target-libtermcap
 
 install-dvi-target-libtermcap: \
     configure-target-libtermcap \
-    dvi-target-libtermcap 
+    dvi-target-libtermcap
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libtermcap/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -54764,7 +55289,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; \
@@ -54791,7 +55316,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; \
@@ -54817,7 +55342,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; \
@@ -54888,7 +55413,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; \
@@ -55004,7 +55529,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; \
@@ -55030,7 +55555,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; \
@@ -55056,7 +55581,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; \
@@ -55082,7 +55607,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; \
@@ -55108,7 +55633,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; \
@@ -55135,7 +55660,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; \
@@ -55162,7 +55687,7 @@ maybe-install-dvi-target-winsup: install-dvi-target-winsup
 
 install-dvi-target-winsup: \
     configure-target-winsup \
-    dvi-target-winsup 
+    dvi-target-winsup
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/winsup/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -55189,7 +55714,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; \
@@ -55216,7 +55741,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; \
@@ -55242,7 +55767,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; \
@@ -55267,7 +55792,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; \
@@ -55292,7 +55817,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; \
@@ -55317,7 +55842,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; \
@@ -55342,7 +55867,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; \
@@ -55373,7 +55898,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; \
@@ -55484,7 +56009,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; \
@@ -55510,7 +56035,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; \
@@ -55536,7 +56061,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; \
@@ -55562,7 +56087,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; \
@@ -55588,7 +56113,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; \
@@ -55615,7 +56140,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; \
@@ -55642,7 +56167,7 @@ maybe-install-dvi-target-libgloss: install-dvi-target-libgloss
 
 install-dvi-target-libgloss: \
     configure-target-libgloss \
-    dvi-target-libgloss 
+    dvi-target-libgloss
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgloss/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -55669,7 +56194,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; \
@@ -55696,7 +56221,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; \
@@ -55722,7 +56247,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; \
@@ -55747,7 +56272,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; \
@@ -55772,7 +56297,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; \
@@ -55797,7 +56322,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; \
@@ -55822,7 +56347,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; \
@@ -55853,7 +56378,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; \
@@ -55959,7 +56484,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; \
@@ -55985,7 +56510,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; \
@@ -56011,7 +56536,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; \
@@ -56037,7 +56562,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; \
@@ -56063,7 +56588,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; \
@@ -56090,7 +56615,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; \
@@ -56117,7 +56642,7 @@ maybe-install-dvi-target-libffi: install-dvi-target-libffi
 
 install-dvi-target-libffi: \
     configure-target-libffi \
-    dvi-target-libffi 
+    dvi-target-libffi
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libffi/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -56144,7 +56669,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; \
@@ -56171,7 +56696,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; \
@@ -56197,7 +56722,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; \
@@ -56222,7 +56747,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; \
@@ -56247,7 +56772,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; \
@@ -56272,7 +56797,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; \
@@ -56297,7 +56822,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; \
@@ -56328,7 +56853,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:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        echo "Checking multilib configuration for zlib..."; \
@@ -57229,7 +57754,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; \
@@ -57255,7 +57780,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; \
@@ -57281,7 +57806,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; \
@@ -57307,7 +57832,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; \
@@ -57333,7 +57858,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; \
@@ -57360,7 +57885,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; \
@@ -57387,7 +57912,7 @@ maybe-install-dvi-target-zlib: install-dvi-target-zlib
 
 install-dvi-target-zlib: \
     configure-target-zlib \
-    dvi-target-zlib 
+    dvi-target-zlib
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/zlib/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -57414,7 +57939,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; \
@@ -57441,7 +57966,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; \
@@ -57467,7 +57992,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; \
@@ -57492,7 +58017,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; \
@@ -57517,7 +58042,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; \
@@ -57542,7 +58067,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; \
@@ -57567,7 +58092,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; \
@@ -57598,7 +58123,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; \
@@ -57714,7 +58239,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; \
@@ -57740,7 +58265,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; \
@@ -57766,7 +58291,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; \
@@ -57792,7 +58317,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; \
@@ -57818,7 +58343,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; \
@@ -57845,7 +58370,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; \
@@ -57872,7 +58397,7 @@ maybe-install-dvi-target-rda: install-dvi-target-rda
 
 install-dvi-target-rda: \
     configure-target-rda \
-    dvi-target-rda 
+    dvi-target-rda
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/rda/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -57899,7 +58424,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; \
@@ -57926,7 +58451,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; \
@@ -57952,7 +58477,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; \
@@ -57977,7 +58502,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; \
@@ -58002,7 +58527,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; \
@@ -58027,7 +58552,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; \
@@ -58052,7 +58577,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; \
@@ -58083,7 +58608,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; \
@@ -58199,7 +58724,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; \
@@ -58225,7 +58750,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; \
@@ -58251,7 +58776,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; \
@@ -58277,7 +58802,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; \
@@ -58303,7 +58828,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; \
@@ -58330,7 +58855,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; \
@@ -58357,7 +58882,7 @@ maybe-install-dvi-target-libada: install-dvi-target-libada
 
 install-dvi-target-libada: \
     configure-target-libada \
-    dvi-target-libada 
+    dvi-target-libada
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libada/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -58384,7 +58909,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; \
@@ -58411,7 +58936,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; \
@@ -58437,7 +58962,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; \
@@ -58462,7 +58987,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; \
@@ -58487,7 +59012,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; \
@@ -58512,7 +59037,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; \
@@ -58537,7 +59062,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; \
@@ -58561,6 +59086,491 @@ maintainer-clean-target-libada:
 
 
 
+.PHONY: configure-target-libgm2 maybe-configure-target-libgm2
+maybe-configure-target-libgm2:
+@if gcc-bootstrap
+configure-target-libgm2: stage_current
+@endif gcc-bootstrap
+@if target-libgm2
+maybe-configure-target-libgm2: configure-target-libgm2
+configure-target-libgm2:
+       @: $(MAKE); $(unstage)
+       @r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       echo "Checking multilib configuration for libgm2..."; \
+       $(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgm2; \
+       $(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgm2/multilib.tmp 2> /dev/null; \
+       if test -r $(TARGET_SUBDIR)/libgm2/multilib.out; then \
+         if cmp -s $(TARGET_SUBDIR)/libgm2/multilib.tmp $(TARGET_SUBDIR)/libgm2/multilib.out; then \
+           rm -f $(TARGET_SUBDIR)/libgm2/multilib.tmp; \
+         else \
+           rm -f $(TARGET_SUBDIR)/libgm2/Makefile; \
+           mv $(TARGET_SUBDIR)/libgm2/multilib.tmp $(TARGET_SUBDIR)/libgm2/multilib.out; \
+         fi; \
+       else \
+         mv $(TARGET_SUBDIR)/libgm2/multilib.tmp $(TARGET_SUBDIR)/libgm2/multilib.out; \
+       fi; \
+       test ! -f $(TARGET_SUBDIR)/libgm2/Makefile || exit 0; \
+       $(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgm2; \
+       $(NORMAL_TARGET_EXPORTS)  \
+       echo Configuring in $(TARGET_SUBDIR)/libgm2; \
+       cd "$(TARGET_SUBDIR)/libgm2" || exit 1; \
+       case $(srcdir) in \
+         /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
+         *) topdir=`echo $(TARGET_SUBDIR)/libgm2/ | \
+               sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
+       esac; \
+       module_srcdir=libgm2; \
+       rm -f no-such-file || : ; \
+       CONFIG_SITE=no-such-file $(SHELL) \
+         $$s/$$module_srcdir/configure \
+         --srcdir=$${topdir}/$$module_srcdir \
+         $(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
+         --target=${target_alias}  \
+         || exit 1
+@endif target-libgm2
+
+
+
+
+
+.PHONY: all-target-libgm2 maybe-all-target-libgm2
+maybe-all-target-libgm2:
+@if gcc-bootstrap
+all-target-libgm2: stage_current
+@endif gcc-bootstrap
+@if target-libgm2
+TARGET-target-libgm2=all
+maybe-all-target-libgm2: all-target-libgm2
+all-target-libgm2: configure-target-libgm2
+       @: $(MAKE); $(unstage)
+       @r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS)  \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)   \
+               $(TARGET-target-libgm2))
+@endif target-libgm2
+
+
+
+
+
+.PHONY: check-target-libgm2 maybe-check-target-libgm2
+maybe-check-target-libgm2:
+@if target-libgm2
+maybe-check-target-libgm2: check-target-libgm2
+
+check-target-libgm2:
+       @: $(MAKE); $(unstage)
+       @r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(TARGET_FLAGS_TO_PASS)   check)
+
+@endif target-libgm2
+
+.PHONY: install-target-libgm2 maybe-install-target-libgm2
+maybe-install-target-libgm2:
+@if target-libgm2
+maybe-install-target-libgm2: install-target-libgm2
+
+install-target-libgm2: installdirs
+       @: $(MAKE); $(unstage)
+       @r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(TARGET_FLAGS_TO_PASS)  install)
+
+@endif target-libgm2
+
+.PHONY: install-strip-target-libgm2 maybe-install-strip-target-libgm2
+maybe-install-strip-target-libgm2:
+@if target-libgm2
+maybe-install-strip-target-libgm2: install-strip-target-libgm2
+
+install-strip-target-libgm2: installdirs
+       @: $(MAKE); $(unstage)
+       @r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(TARGET_FLAGS_TO_PASS)  install-strip)
+
+@endif target-libgm2
+
+# Other targets (info, dvi, pdf, etc.)
+
+.PHONY: maybe-info-target-libgm2 info-target-libgm2
+maybe-info-target-libgm2:
+@if target-libgm2
+maybe-info-target-libgm2: info-target-libgm2
+
+info-target-libgm2: \
+    configure-target-libgm2
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing info in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  info) \
+         || exit 1
+
+@endif target-libgm2
+
+.PHONY: maybe-dvi-target-libgm2 dvi-target-libgm2
+maybe-dvi-target-libgm2:
+@if target-libgm2
+maybe-dvi-target-libgm2: dvi-target-libgm2
+
+dvi-target-libgm2: \
+    configure-target-libgm2
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing dvi in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  dvi) \
+         || exit 1
+
+@endif target-libgm2
+
+.PHONY: maybe-pdf-target-libgm2 pdf-target-libgm2
+maybe-pdf-target-libgm2:
+@if target-libgm2
+maybe-pdf-target-libgm2: pdf-target-libgm2
+
+pdf-target-libgm2: \
+    configure-target-libgm2
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing pdf in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  pdf) \
+         || exit 1
+
+@endif target-libgm2
+
+.PHONY: maybe-html-target-libgm2 html-target-libgm2
+maybe-html-target-libgm2:
+@if target-libgm2
+maybe-html-target-libgm2: html-target-libgm2
+
+html-target-libgm2: \
+    configure-target-libgm2
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing html in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  html) \
+         || exit 1
+
+@endif target-libgm2
+
+.PHONY: maybe-TAGS-target-libgm2 TAGS-target-libgm2
+maybe-TAGS-target-libgm2:
+@if target-libgm2
+maybe-TAGS-target-libgm2: TAGS-target-libgm2
+
+TAGS-target-libgm2: \
+    configure-target-libgm2
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing TAGS in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  TAGS) \
+         || exit 1
+
+@endif target-libgm2
+
+.PHONY: maybe-install-info-target-libgm2 install-info-target-libgm2
+maybe-install-info-target-libgm2:
+@if target-libgm2
+maybe-install-info-target-libgm2: install-info-target-libgm2
+
+install-info-target-libgm2: \
+    configure-target-libgm2 \
+    info-target-libgm2
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing install-info in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  install-info) \
+         || exit 1
+
+@endif target-libgm2
+
+.PHONY: maybe-install-dvi-target-libgm2 install-dvi-target-libgm2
+maybe-install-dvi-target-libgm2:
+@if target-libgm2
+maybe-install-dvi-target-libgm2: install-dvi-target-libgm2
+
+install-dvi-target-libgm2: \
+    configure-target-libgm2 \
+    dvi-target-libgm2
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing install-dvi in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  install-dvi) \
+         || exit 1
+
+@endif target-libgm2
+
+.PHONY: maybe-install-pdf-target-libgm2 install-pdf-target-libgm2
+maybe-install-pdf-target-libgm2:
+@if target-libgm2
+maybe-install-pdf-target-libgm2: install-pdf-target-libgm2
+
+install-pdf-target-libgm2: \
+    configure-target-libgm2 \
+    pdf-target-libgm2
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing install-pdf in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  install-pdf) \
+         || exit 1
+
+@endif target-libgm2
+
+.PHONY: maybe-install-html-target-libgm2 install-html-target-libgm2
+maybe-install-html-target-libgm2:
+@if target-libgm2
+maybe-install-html-target-libgm2: install-html-target-libgm2
+
+install-html-target-libgm2: \
+    configure-target-libgm2 \
+    html-target-libgm2
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing install-html in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  install-html) \
+         || exit 1
+
+@endif target-libgm2
+
+.PHONY: maybe-installcheck-target-libgm2 installcheck-target-libgm2
+maybe-installcheck-target-libgm2:
+@if target-libgm2
+maybe-installcheck-target-libgm2: installcheck-target-libgm2
+
+installcheck-target-libgm2: \
+    configure-target-libgm2
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing installcheck in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  installcheck) \
+         || exit 1
+
+@endif target-libgm2
+
+.PHONY: maybe-mostlyclean-target-libgm2 mostlyclean-target-libgm2
+maybe-mostlyclean-target-libgm2:
+@if target-libgm2
+maybe-mostlyclean-target-libgm2: mostlyclean-target-libgm2
+
+mostlyclean-target-libgm2:
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing mostlyclean in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  mostlyclean) \
+         || exit 1
+
+@endif target-libgm2
+
+.PHONY: maybe-clean-target-libgm2 clean-target-libgm2
+maybe-clean-target-libgm2:
+@if target-libgm2
+maybe-clean-target-libgm2: clean-target-libgm2
+
+clean-target-libgm2:
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing clean in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  clean) \
+         || exit 1
+
+@endif target-libgm2
+
+.PHONY: maybe-distclean-target-libgm2 distclean-target-libgm2
+maybe-distclean-target-libgm2:
+@if target-libgm2
+maybe-distclean-target-libgm2: distclean-target-libgm2
+
+distclean-target-libgm2:
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing distclean in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  distclean) \
+         || exit 1
+
+@endif target-libgm2
+
+.PHONY: maybe-maintainer-clean-target-libgm2 maintainer-clean-target-libgm2
+maybe-maintainer-clean-target-libgm2:
+@if target-libgm2
+maybe-maintainer-clean-target-libgm2: maintainer-clean-target-libgm2
+
+maintainer-clean-target-libgm2:
+       @: $(MAKE); $(unstage)
+       @[ -f $(TARGET_SUBDIR)/libgm2/Makefile ] || exit 0; \
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(NORMAL_TARGET_EXPORTS) \
+       echo "Doing maintainer-clean in $(TARGET_SUBDIR)/libgm2"; \
+       for flag in $(EXTRA_TARGET_FLAGS); do \
+         eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+       done; \
+       (cd $(TARGET_SUBDIR)/libgm2 && \
+         $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+                 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+                 "RANLIB=$${RANLIB}" \
+                 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
+                  maintainer-clean) \
+         || exit 1
+
+@endif target-libgm2
+
+
+
+
+
 .PHONY: configure-target-libgomp maybe-configure-target-libgomp
 maybe-configure-target-libgomp:
 @if gcc-bootstrap
@@ -58568,7 +59578,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:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        echo "Checking multilib configuration for libgomp..."; \
@@ -59469,7 +60479,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; \
@@ -59495,7 +60505,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; \
@@ -59521,7 +60531,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; \
@@ -59547,7 +60557,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; \
@@ -59573,7 +60583,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; \
@@ -59600,7 +60610,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; \
@@ -59627,7 +60637,7 @@ maybe-install-dvi-target-libgomp: install-dvi-target-libgomp
 
 install-dvi-target-libgomp: \
     configure-target-libgomp \
-    dvi-target-libgomp 
+    dvi-target-libgomp
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libgomp/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -59654,7 +60664,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; \
@@ -59681,7 +60691,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; \
@@ -59707,7 +60717,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; \
@@ -59732,7 +60742,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; \
@@ -59757,7 +60767,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; \
@@ -59782,7 +60792,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; \
@@ -59807,7 +60817,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; \
@@ -59838,7 +60848,7 @@ configure-target-libitm: stage_current
 @endif gcc-bootstrap
 @if target-libitm
 maybe-configure-target-libitm: configure-target-libitm
-configure-target-libitm: 
+configure-target-libitm:
        @: $(MAKE); $(unstage)
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -59954,7 +60964,7 @@ maybe-info-target-libitm:
 maybe-info-target-libitm: info-target-libitm
 
 info-target-libitm: \
-    configure-target-libitm 
+    configure-target-libitm
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -59980,7 +60990,7 @@ maybe-dvi-target-libitm:
 maybe-dvi-target-libitm: dvi-target-libitm
 
 dvi-target-libitm: \
-    configure-target-libitm 
+    configure-target-libitm
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -60006,7 +61016,7 @@ maybe-pdf-target-libitm:
 maybe-pdf-target-libitm: pdf-target-libitm
 
 pdf-target-libitm: \
-    configure-target-libitm 
+    configure-target-libitm
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -60032,7 +61042,7 @@ maybe-html-target-libitm:
 maybe-html-target-libitm: html-target-libitm
 
 html-target-libitm: \
-    configure-target-libitm 
+    configure-target-libitm
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -60058,7 +61068,7 @@ maybe-TAGS-target-libitm:
 maybe-TAGS-target-libitm: TAGS-target-libitm
 
 TAGS-target-libitm: \
-    configure-target-libitm 
+    configure-target-libitm
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -60085,7 +61095,7 @@ maybe-install-info-target-libitm: install-info-target-libitm
 
 install-info-target-libitm: \
     configure-target-libitm \
-    info-target-libitm 
+    info-target-libitm
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -60112,7 +61122,7 @@ maybe-install-dvi-target-libitm: install-dvi-target-libitm
 
 install-dvi-target-libitm: \
     configure-target-libitm \
-    dvi-target-libitm 
+    dvi-target-libitm
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -60139,7 +61149,7 @@ maybe-install-pdf-target-libitm: install-pdf-target-libitm
 
 install-pdf-target-libitm: \
     configure-target-libitm \
-    pdf-target-libitm 
+    pdf-target-libitm
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -60166,7 +61176,7 @@ maybe-install-html-target-libitm: install-html-target-libitm
 
 install-html-target-libitm: \
     configure-target-libitm \
-    html-target-libitm 
+    html-target-libitm
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -60192,7 +61202,7 @@ maybe-installcheck-target-libitm:
 maybe-installcheck-target-libitm: installcheck-target-libitm
 
 installcheck-target-libitm: \
-    configure-target-libitm 
+    configure-target-libitm
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -60217,7 +61227,7 @@ maybe-mostlyclean-target-libitm:
 @if target-libitm
 maybe-mostlyclean-target-libitm: mostlyclean-target-libitm
 
-mostlyclean-target-libitm: 
+mostlyclean-target-libitm:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -60242,7 +61252,7 @@ maybe-clean-target-libitm:
 @if target-libitm
 maybe-clean-target-libitm: clean-target-libitm
 
-clean-target-libitm: 
+clean-target-libitm:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -60267,7 +61277,7 @@ maybe-distclean-target-libitm:
 @if target-libitm
 maybe-distclean-target-libitm: distclean-target-libitm
 
-distclean-target-libitm: 
+distclean-target-libitm:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -60292,7 +61302,7 @@ maybe-maintainer-clean-target-libitm:
 @if target-libitm
 maybe-maintainer-clean-target-libitm: maintainer-clean-target-libitm
 
-maintainer-clean-target-libitm: 
+maintainer-clean-target-libitm:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libitm/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -60323,7 +61333,7 @@ configure-target-libatomic: stage_current
 @endif gcc-bootstrap
 @if target-libatomic
 maybe-configure-target-libatomic: configure-target-libatomic
-configure-target-libatomic: 
+configure-target-libatomic:
        @r=`${PWD_COMMAND}`; export r; \
        s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
        echo "Checking multilib configuration for libatomic..."; \
@@ -61224,7 +62234,7 @@ maybe-info-target-libatomic:
 maybe-info-target-libatomic: info-target-libatomic
 
 info-target-libatomic: \
-    configure-target-libatomic 
+    configure-target-libatomic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61250,7 +62260,7 @@ maybe-dvi-target-libatomic:
 maybe-dvi-target-libatomic: dvi-target-libatomic
 
 dvi-target-libatomic: \
-    configure-target-libatomic 
+    configure-target-libatomic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61276,7 +62286,7 @@ maybe-pdf-target-libatomic:
 maybe-pdf-target-libatomic: pdf-target-libatomic
 
 pdf-target-libatomic: \
-    configure-target-libatomic 
+    configure-target-libatomic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61302,7 +62312,7 @@ maybe-html-target-libatomic:
 maybe-html-target-libatomic: html-target-libatomic
 
 html-target-libatomic: \
-    configure-target-libatomic 
+    configure-target-libatomic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61328,7 +62338,7 @@ maybe-TAGS-target-libatomic:
 maybe-TAGS-target-libatomic: TAGS-target-libatomic
 
 TAGS-target-libatomic: \
-    configure-target-libatomic 
+    configure-target-libatomic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61355,7 +62365,7 @@ maybe-install-info-target-libatomic: install-info-target-libatomic
 
 install-info-target-libatomic: \
     configure-target-libatomic \
-    info-target-libatomic 
+    info-target-libatomic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61382,7 +62392,7 @@ maybe-install-dvi-target-libatomic: install-dvi-target-libatomic
 
 install-dvi-target-libatomic: \
     configure-target-libatomic \
-    dvi-target-libatomic 
+    dvi-target-libatomic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61409,7 +62419,7 @@ maybe-install-pdf-target-libatomic: install-pdf-target-libatomic
 
 install-pdf-target-libatomic: \
     configure-target-libatomic \
-    pdf-target-libatomic 
+    pdf-target-libatomic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61436,7 +62446,7 @@ maybe-install-html-target-libatomic: install-html-target-libatomic
 
 install-html-target-libatomic: \
     configure-target-libatomic \
-    html-target-libatomic 
+    html-target-libatomic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61462,7 +62472,7 @@ maybe-installcheck-target-libatomic:
 maybe-installcheck-target-libatomic: installcheck-target-libatomic
 
 installcheck-target-libatomic: \
-    configure-target-libatomic 
+    configure-target-libatomic
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61487,7 +62497,7 @@ maybe-mostlyclean-target-libatomic:
 @if target-libatomic
 maybe-mostlyclean-target-libatomic: mostlyclean-target-libatomic
 
-mostlyclean-target-libatomic: 
+mostlyclean-target-libatomic:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61512,7 +62522,7 @@ maybe-clean-target-libatomic:
 @if target-libatomic
 maybe-clean-target-libatomic: clean-target-libatomic
 
-clean-target-libatomic: 
+clean-target-libatomic:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61537,7 +62547,7 @@ maybe-distclean-target-libatomic:
 @if target-libatomic
 maybe-distclean-target-libatomic: distclean-target-libatomic
 
-distclean-target-libatomic: 
+distclean-target-libatomic:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61562,7 +62572,7 @@ maybe-maintainer-clean-target-libatomic:
 @if target-libatomic
 maybe-maintainer-clean-target-libatomic: maintainer-clean-target-libatomic
 
-maintainer-clean-target-libatomic: 
+maintainer-clean-target-libatomic:
        @: $(MAKE); $(unstage)
        @[ -f $(TARGET_SUBDIR)/libatomic/Makefile ] || exit 0; \
        r=`${PWD_COMMAND}`; export r; \
@@ -61678,6 +62688,14 @@ check-gcc-go:
        (cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-go);
 check-go: check-gcc-go check-target-libgo check-gotools
 
+.PHONY: check-gcc-m2 check-m2
+check-gcc-m2:
+       r=`${PWD_COMMAND}`; export r; \
+       s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+       $(HOST_EXPORTS) \
+       (cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-m2);
+check-m2: check-gcc-m2 check-target-libgm2 check-gm2tools
+
 .PHONY: check-gcc-d check-d
 check-gcc-d:
        r=`${PWD_COMMAND}`; export r; \
@@ -61753,7 +62771,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
@@ -61890,7 +62908,7 @@ stage1-start::
          mkdir stage1-$(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; \
@@ -62020,7 +63038,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 \
@@ -62046,7 +63064,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
@@ -62063,152 +63081,152 @@ 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 fixincludes
        @cd $(HOST_SUBDIR); [ -d stage2-fixincludes ] || \
          mkdir stage2-fixincludes; \
        mv stage2-fixincludes fixincludes; \
-       mv stage1-fixincludes prev-fixincludes || test -f stage1-lean 
+       mv stage1-fixincludes prev-fixincludes || test -f stage1-lean
 @endif fixincludes
 @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 isl
        @cd $(HOST_SUBDIR); [ -d stage2-isl ] || \
          mkdir stage2-isl; \
        mv stage2-isl isl; \
-       mv stage1-isl prev-isl || test -f stage1-lean 
+       mv stage1-isl prev-isl || test -f stage1-lean
 @endif isl
 @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 libbacktrace
        @cd $(HOST_SUBDIR); [ -d stage2-libbacktrace ] || \
          mkdir stage2-libbacktrace; \
        mv stage2-libbacktrace libbacktrace; \
-       mv stage1-libbacktrace prev-libbacktrace || test -f stage1-lean 
+       mv stage1-libbacktrace prev-libbacktrace || test -f stage1-lean
 @endif libbacktrace
 @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 libcody
        @cd $(HOST_SUBDIR); [ -d stage2-libcody ] || \
          mkdir stage2-libcody; \
        mv stage2-libcody libcody; \
-       mv stage1-libcody prev-libcody || test -f stage1-lean 
+       mv stage1-libcody prev-libcody || test -f stage1-lean
 @endif libcody
 @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 libiberty-linker-plugin
        @cd $(HOST_SUBDIR); [ -d stage2-libiberty-linker-plugin ] || \
          mkdir stage2-libiberty-linker-plugin; \
        mv stage2-libiberty-linker-plugin libiberty-linker-plugin; \
-       mv stage1-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stage1-lean 
+       mv stage1-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stage1-lean
 @endif libiberty-linker-plugin
 @if libiconv
        @cd $(HOST_SUBDIR); [ -d stage2-libiconv ] || \
          mkdir stage2-libiconv; \
        mv stage2-libiconv libiconv; \
-       mv stage1-libiconv prev-libiconv || test -f stage1-lean 
+       mv stage1-libiconv prev-libiconv || test -f stage1-lean
 @endif libiconv
 @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
 @if libctf
        @cd $(HOST_SUBDIR); [ -d stage2-libctf ] || \
          mkdir stage2-libctf; \
        mv stage2-libctf libctf; \
-       mv stage1-libctf prev-libctf || test -f stage1-lean 
+       mv stage1-libctf prev-libctf || test -f stage1-lean
 @endif libctf
        @[ -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; \
@@ -62407,12 +63425,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
@@ -62429,152 +63447,152 @@ 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 fixincludes
        @cd $(HOST_SUBDIR); [ -d stage3-fixincludes ] || \
          mkdir stage3-fixincludes; \
        mv stage3-fixincludes fixincludes; \
-       mv stage2-fixincludes prev-fixincludes || test -f stage2-lean 
+       mv stage2-fixincludes prev-fixincludes || test -f stage2-lean
 @endif fixincludes
 @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 isl
        @cd $(HOST_SUBDIR); [ -d stage3-isl ] || \
          mkdir stage3-isl; \
        mv stage3-isl isl; \
-       mv stage2-isl prev-isl || test -f stage2-lean 
+       mv stage2-isl prev-isl || test -f stage2-lean
 @endif isl
 @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 libbacktrace
        @cd $(HOST_SUBDIR); [ -d stage3-libbacktrace ] || \
          mkdir stage3-libbacktrace; \
        mv stage3-libbacktrace libbacktrace; \
-       mv stage2-libbacktrace prev-libbacktrace || test -f stage2-lean 
+       mv stage2-libbacktrace prev-libbacktrace || test -f stage2-lean
 @endif libbacktrace
 @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 libcody
        @cd $(HOST_SUBDIR); [ -d stage3-libcody ] || \
          mkdir stage3-libcody; \
        mv stage3-libcody libcody; \
-       mv stage2-libcody prev-libcody || test -f stage2-lean 
+       mv stage2-libcody prev-libcody || test -f stage2-lean
 @endif libcody
 @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 libiberty-linker-plugin
        @cd $(HOST_SUBDIR); [ -d stage3-libiberty-linker-plugin ] || \
          mkdir stage3-libiberty-linker-plugin; \
        mv stage3-libiberty-linker-plugin libiberty-linker-plugin; \
-       mv stage2-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stage2-lean 
+       mv stage2-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stage2-lean
 @endif libiberty-linker-plugin
 @if libiconv
        @cd $(HOST_SUBDIR); [ -d stage3-libiconv ] || \
          mkdir stage3-libiconv; \
        mv stage3-libiconv libiconv; \
-       mv stage2-libiconv prev-libiconv || test -f stage2-lean 
+       mv stage2-libiconv prev-libiconv || test -f stage2-lean
 @endif libiconv
 @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
 @if libctf
        @cd $(HOST_SUBDIR); [ -d stage3-libctf ] || \
          mkdir stage3-libctf; \
        mv stage3-libctf libctf; \
-       mv stage2-libctf prev-libctf || test -f stage2-lean 
+       mv stage2-libctf prev-libctf || test -f stage2-lean
 @endif libctf
        @[ -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; \
@@ -62817,12 +63835,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
@@ -62851,152 +63869,152 @@ 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 fixincludes
        @cd $(HOST_SUBDIR); [ -d stage4-fixincludes ] || \
          mkdir stage4-fixincludes; \
        mv stage4-fixincludes fixincludes; \
-       mv stage3-fixincludes prev-fixincludes || test -f stage3-lean 
+       mv stage3-fixincludes prev-fixincludes || test -f stage3-lean
 @endif fixincludes
 @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 isl
        @cd $(HOST_SUBDIR); [ -d stage4-isl ] || \
          mkdir stage4-isl; \
        mv stage4-isl isl; \
-       mv stage3-isl prev-isl || test -f stage3-lean 
+       mv stage3-isl prev-isl || test -f stage3-lean
 @endif isl
 @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 libbacktrace
        @cd $(HOST_SUBDIR); [ -d stage4-libbacktrace ] || \
          mkdir stage4-libbacktrace; \
        mv stage4-libbacktrace libbacktrace; \
-       mv stage3-libbacktrace prev-libbacktrace || test -f stage3-lean 
+       mv stage3-libbacktrace prev-libbacktrace || test -f stage3-lean
 @endif libbacktrace
 @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 libcody
        @cd $(HOST_SUBDIR); [ -d stage4-libcody ] || \
          mkdir stage4-libcody; \
        mv stage4-libcody libcody; \
-       mv stage3-libcody prev-libcody || test -f stage3-lean 
+       mv stage3-libcody prev-libcody || test -f stage3-lean
 @endif libcody
 @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 libiberty-linker-plugin
        @cd $(HOST_SUBDIR); [ -d stage4-libiberty-linker-plugin ] || \
          mkdir stage4-libiberty-linker-plugin; \
        mv stage4-libiberty-linker-plugin libiberty-linker-plugin; \
-       mv stage3-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stage3-lean 
+       mv stage3-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stage3-lean
 @endif libiberty-linker-plugin
 @if libiconv
        @cd $(HOST_SUBDIR); [ -d stage4-libiconv ] || \
          mkdir stage4-libiconv; \
        mv stage4-libiconv libiconv; \
-       mv stage3-libiconv prev-libiconv || test -f stage3-lean 
+       mv stage3-libiconv prev-libiconv || test -f stage3-lean
 @endif libiconv
 @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
 @if libctf
        @cd $(HOST_SUBDIR); [ -d stage4-libctf ] || \
          mkdir stage4-libctf; \
        mv stage4-libctf libctf; \
-       mv stage3-libctf prev-libctf || test -f stage3-lean 
+       mv stage3-libctf prev-libctf || test -f stage3-lean
 @endif libctf
        @[ -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; \
@@ -63239,12 +64257,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
@@ -63261,152 +64279,152 @@ 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 fixincludes
        @cd $(HOST_SUBDIR); [ -d stageprofile-fixincludes ] || \
          mkdir stageprofile-fixincludes; \
        mv stageprofile-fixincludes fixincludes; \
-       mv stage1-fixincludes prev-fixincludes || test -f stage1-lean 
+       mv stage1-fixincludes prev-fixincludes || test -f stage1-lean
 @endif fixincludes
 @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 isl
        @cd $(HOST_SUBDIR); [ -d stageprofile-isl ] || \
          mkdir stageprofile-isl; \
        mv stageprofile-isl isl; \
-       mv stage1-isl prev-isl || test -f stage1-lean 
+       mv stage1-isl prev-isl || test -f stage1-lean
 @endif isl
 @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 libbacktrace
        @cd $(HOST_SUBDIR); [ -d stageprofile-libbacktrace ] || \
          mkdir stageprofile-libbacktrace; \
        mv stageprofile-libbacktrace libbacktrace; \
-       mv stage1-libbacktrace prev-libbacktrace || test -f stage1-lean 
+       mv stage1-libbacktrace prev-libbacktrace || test -f stage1-lean
 @endif libbacktrace
 @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 libcody
        @cd $(HOST_SUBDIR); [ -d stageprofile-libcody ] || \
          mkdir stageprofile-libcody; \
        mv stageprofile-libcody libcody; \
-       mv stage1-libcody prev-libcody || test -f stage1-lean 
+       mv stage1-libcody prev-libcody || test -f stage1-lean
 @endif libcody
 @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 libiberty-linker-plugin
        @cd $(HOST_SUBDIR); [ -d stageprofile-libiberty-linker-plugin ] || \
          mkdir stageprofile-libiberty-linker-plugin; \
        mv stageprofile-libiberty-linker-plugin libiberty-linker-plugin; \
-       mv stage1-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stage1-lean 
+       mv stage1-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stage1-lean
 @endif libiberty-linker-plugin
 @if libiconv
        @cd $(HOST_SUBDIR); [ -d stageprofile-libiconv ] || \
          mkdir stageprofile-libiconv; \
        mv stageprofile-libiconv libiconv; \
-       mv stage1-libiconv prev-libiconv || test -f stage1-lean 
+       mv stage1-libiconv prev-libiconv || test -f stage1-lean
 @endif libiconv
 @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
 @if libctf
        @cd $(HOST_SUBDIR); [ -d stageprofile-libctf ] || \
          mkdir stageprofile-libctf; \
        mv stageprofile-libctf libctf; \
-       mv stage1-libctf prev-libctf || test -f stage1-lean 
+       mv stage1-libctf prev-libctf || test -f stage1-lean
 @endif libctf
        @[ -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; \
@@ -63582,12 +64600,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
@@ -63604,152 +64622,152 @@ stagetrain-start::
        @cd $(HOST_SUBDIR); [ -d stagetrain-bfd ] || \
          mkdir stagetrain-bfd; \
        mv stagetrain-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 stagetrain-opcodes ] || \
          mkdir stagetrain-opcodes; \
        mv stagetrain-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 stagetrain-binutils ] || \
          mkdir stagetrain-binutils; \
        mv stagetrain-binutils binutils; \
-       mv stageprofile-binutils prev-binutils || test -f stageprofile-lean 
+       mv stageprofile-binutils prev-binutils || test -f stageprofile-lean
 @endif binutils
 @if fixincludes
        @cd $(HOST_SUBDIR); [ -d stagetrain-fixincludes ] || \
          mkdir stagetrain-fixincludes; \
        mv stagetrain-fixincludes fixincludes; \
-       mv stageprofile-fixincludes prev-fixincludes || test -f stageprofile-lean 
+       mv stageprofile-fixincludes prev-fixincludes || test -f stageprofile-lean
 @endif fixincludes
 @if gas
        @cd $(HOST_SUBDIR); [ -d stagetrain-gas ] || \
          mkdir stagetrain-gas; \
        mv stagetrain-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 stagetrain-gcc ] || \
          mkdir stagetrain-gcc; \
        mv stagetrain-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 stagetrain-gmp ] || \
          mkdir stagetrain-gmp; \
        mv stagetrain-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 stagetrain-mpfr ] || \
          mkdir stagetrain-mpfr; \
        mv stagetrain-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 stagetrain-mpc ] || \
          mkdir stagetrain-mpc; \
        mv stagetrain-mpc mpc; \
-       mv stageprofile-mpc prev-mpc || test -f stageprofile-lean 
+       mv stageprofile-mpc prev-mpc || test -f stageprofile-lean
 @endif mpc
 @if isl
        @cd $(HOST_SUBDIR); [ -d stagetrain-isl ] || \
          mkdir stagetrain-isl; \
        mv stagetrain-isl isl; \
-       mv stageprofile-isl prev-isl || test -f stageprofile-lean 
+       mv stageprofile-isl prev-isl || test -f stageprofile-lean
 @endif isl
 @if libelf
        @cd $(HOST_SUBDIR); [ -d stagetrain-libelf ] || \
          mkdir stagetrain-libelf; \
        mv stagetrain-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 stagetrain-gold ] || \
          mkdir stagetrain-gold; \
        mv stagetrain-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 stagetrain-intl ] || \
          mkdir stagetrain-intl; \
        mv stagetrain-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 stagetrain-ld ] || \
          mkdir stagetrain-ld; \
        mv stagetrain-ld ld; \
-       mv stageprofile-ld prev-ld || test -f stageprofile-lean 
+       mv stageprofile-ld prev-ld || test -f stageprofile-lean
 @endif ld
 @if libbacktrace
        @cd $(HOST_SUBDIR); [ -d stagetrain-libbacktrace ] || \
          mkdir stagetrain-libbacktrace; \
        mv stagetrain-libbacktrace libbacktrace; \
-       mv stageprofile-libbacktrace prev-libbacktrace || test -f stageprofile-lean 
+       mv stageprofile-libbacktrace prev-libbacktrace || test -f stageprofile-lean
 @endif libbacktrace
 @if libcpp
        @cd $(HOST_SUBDIR); [ -d stagetrain-libcpp ] || \
          mkdir stagetrain-libcpp; \
        mv stagetrain-libcpp libcpp; \
-       mv stageprofile-libcpp prev-libcpp || test -f stageprofile-lean 
+       mv stageprofile-libcpp prev-libcpp || test -f stageprofile-lean
 @endif libcpp
 @if libcody
        @cd $(HOST_SUBDIR); [ -d stagetrain-libcody ] || \
          mkdir stagetrain-libcody; \
        mv stagetrain-libcody libcody; \
-       mv stageprofile-libcody prev-libcody || test -f stageprofile-lean 
+       mv stageprofile-libcody prev-libcody || test -f stageprofile-lean
 @endif libcody
 @if libdecnumber
        @cd $(HOST_SUBDIR); [ -d stagetrain-libdecnumber ] || \
          mkdir stagetrain-libdecnumber; \
        mv stagetrain-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 stagetrain-libiberty ] || \
          mkdir stagetrain-libiberty; \
        mv stagetrain-libiberty libiberty; \
-       mv stageprofile-libiberty prev-libiberty || test -f stageprofile-lean 
+       mv stageprofile-libiberty prev-libiberty || test -f stageprofile-lean
 @endif libiberty
 @if libiberty-linker-plugin
        @cd $(HOST_SUBDIR); [ -d stagetrain-libiberty-linker-plugin ] || \
          mkdir stagetrain-libiberty-linker-plugin; \
        mv stagetrain-libiberty-linker-plugin libiberty-linker-plugin; \
-       mv stageprofile-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stageprofile-lean 
+       mv stageprofile-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stageprofile-lean
 @endif libiberty-linker-plugin
 @if libiconv
        @cd $(HOST_SUBDIR); [ -d stagetrain-libiconv ] || \
          mkdir stagetrain-libiconv; \
        mv stagetrain-libiconv libiconv; \
-       mv stageprofile-libiconv prev-libiconv || test -f stageprofile-lean 
+       mv stageprofile-libiconv prev-libiconv || test -f stageprofile-lean
 @endif libiconv
 @if zlib
        @cd $(HOST_SUBDIR); [ -d stagetrain-zlib ] || \
          mkdir stagetrain-zlib; \
        mv stagetrain-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 stagetrain-lto-plugin ] || \
          mkdir stagetrain-lto-plugin; \
        mv stagetrain-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
 @if libctf
        @cd $(HOST_SUBDIR); [ -d stagetrain-libctf ] || \
          mkdir stagetrain-libctf; \
        mv stagetrain-libctf libctf; \
-       mv stageprofile-libctf prev-libctf || test -f stageprofile-lean 
+       mv stageprofile-libctf prev-libctf || test -f stageprofile-lean
 @endif libctf
        @[ -d stagetrain-$(TARGET_SUBDIR) ] || \
          mkdir stagetrain-$(TARGET_SUBDIR); \
        mv stagetrain-$(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
 
-stagetrain-end:: 
+stagetrain-end::
 @if bfd
        @if test -d $(HOST_SUBDIR)/bfd; then \
          cd $(HOST_SUBDIR); mv bfd stagetrain-bfd; \
@@ -63925,12 +64943,12 @@ do-clean: clean-stagetrain
 
 
 # Rules to wipe a stage and all the following ones, also used for cleanstrap
-distclean-stageprofile:: distclean-stagetrain 
+distclean-stageprofile:: distclean-stagetrain
 .PHONY: distclean-stagetrain
 distclean-stagetrain::
        @: $(MAKE); $(stage)
        @test "`cat stage_last`" != stagetrain || rm -f stage_last
-       rm -rf stagetrain-* 
+       rm -rf stagetrain-*
 
 
 @endif gcc-bootstrap
@@ -63947,152 +64965,152 @@ stagefeedback-start::
        @cd $(HOST_SUBDIR); [ -d stagefeedback-bfd ] || \
          mkdir stagefeedback-bfd; \
        mv stagefeedback-bfd bfd; \
-       mv stagetrain-bfd prev-bfd || test -f stagetrain-lean 
+       mv stagetrain-bfd prev-bfd || test -f stagetrain-lean
 @endif bfd
 @if opcodes
        @cd $(HOST_SUBDIR); [ -d stagefeedback-opcodes ] || \
          mkdir stagefeedback-opcodes; \
        mv stagefeedback-opcodes opcodes; \
-       mv stagetrain-opcodes prev-opcodes || test -f stagetrain-lean 
+       mv stagetrain-opcodes prev-opcodes || test -f stagetrain-lean
 @endif opcodes
 @if binutils
        @cd $(HOST_SUBDIR); [ -d stagefeedback-binutils ] || \
          mkdir stagefeedback-binutils; \
        mv stagefeedback-binutils binutils; \
-       mv stagetrain-binutils prev-binutils || test -f stagetrain-lean 
+       mv stagetrain-binutils prev-binutils || test -f stagetrain-lean
 @endif binutils
 @if fixincludes
        @cd $(HOST_SUBDIR); [ -d stagefeedback-fixincludes ] || \
          mkdir stagefeedback-fixincludes; \
        mv stagefeedback-fixincludes fixincludes; \
-       mv stagetrain-fixincludes prev-fixincludes || test -f stagetrain-lean 
+       mv stagetrain-fixincludes prev-fixincludes || test -f stagetrain-lean
 @endif fixincludes
 @if gas
        @cd $(HOST_SUBDIR); [ -d stagefeedback-gas ] || \
          mkdir stagefeedback-gas; \
        mv stagefeedback-gas gas; \
-       mv stagetrain-gas prev-gas || test -f stagetrain-lean 
+       mv stagetrain-gas prev-gas || test -f stagetrain-lean
 @endif gas
 @if gcc
        @cd $(HOST_SUBDIR); [ -d stagefeedback-gcc ] || \
          mkdir stagefeedback-gcc; \
        mv stagefeedback-gcc gcc; \
-       mv stagetrain-gcc prev-gcc || test -f stagetrain-lean 
+       mv stagetrain-gcc prev-gcc || test -f stagetrain-lean
 @endif gcc
 @if gmp
        @cd $(HOST_SUBDIR); [ -d stagefeedback-gmp ] || \
          mkdir stagefeedback-gmp; \
        mv stagefeedback-gmp gmp; \
-       mv stagetrain-gmp prev-gmp || test -f stagetrain-lean 
+       mv stagetrain-gmp prev-gmp || test -f stagetrain-lean
 @endif gmp
 @if mpfr
        @cd $(HOST_SUBDIR); [ -d stagefeedback-mpfr ] || \
          mkdir stagefeedback-mpfr; \
        mv stagefeedback-mpfr mpfr; \
-       mv stagetrain-mpfr prev-mpfr || test -f stagetrain-lean 
+       mv stagetrain-mpfr prev-mpfr || test -f stagetrain-lean
 @endif mpfr
 @if mpc
        @cd $(HOST_SUBDIR); [ -d stagefeedback-mpc ] || \
          mkdir stagefeedback-mpc; \
        mv stagefeedback-mpc mpc; \
-       mv stagetrain-mpc prev-mpc || test -f stagetrain-lean 
+       mv stagetrain-mpc prev-mpc || test -f stagetrain-lean
 @endif mpc
 @if isl
        @cd $(HOST_SUBDIR); [ -d stagefeedback-isl ] || \
          mkdir stagefeedback-isl; \
        mv stagefeedback-isl isl; \
-       mv stagetrain-isl prev-isl || test -f stagetrain-lean 
+       mv stagetrain-isl prev-isl || test -f stagetrain-lean
 @endif isl
 @if libelf
        @cd $(HOST_SUBDIR); [ -d stagefeedback-libelf ] || \
          mkdir stagefeedback-libelf; \
        mv stagefeedback-libelf libelf; \
-       mv stagetrain-libelf prev-libelf || test -f stagetrain-lean 
+       mv stagetrain-libelf prev-libelf || test -f stagetrain-lean
 @endif libelf
 @if gold
        @cd $(HOST_SUBDIR); [ -d stagefeedback-gold ] || \
          mkdir stagefeedback-gold; \
        mv stagefeedback-gold gold; \
-       mv stagetrain-gold prev-gold || test -f stagetrain-lean 
+       mv stagetrain-gold prev-gold || test -f stagetrain-lean
 @endif gold
 @if intl
        @cd $(HOST_SUBDIR); [ -d stagefeedback-intl ] || \
          mkdir stagefeedback-intl; \
        mv stagefeedback-intl intl; \
-       mv stagetrain-intl prev-intl || test -f stagetrain-lean 
+       mv stagetrain-intl prev-intl || test -f stagetrain-lean
 @endif intl
 @if ld
        @cd $(HOST_SUBDIR); [ -d stagefeedback-ld ] || \
          mkdir stagefeedback-ld; \
        mv stagefeedback-ld ld; \
-       mv stagetrain-ld prev-ld || test -f stagetrain-lean 
+       mv stagetrain-ld prev-ld || test -f stagetrain-lean
 @endif ld
 @if libbacktrace
        @cd $(HOST_SUBDIR); [ -d stagefeedback-libbacktrace ] || \
          mkdir stagefeedback-libbacktrace; \
        mv stagefeedback-libbacktrace libbacktrace; \
-       mv stagetrain-libbacktrace prev-libbacktrace || test -f stagetrain-lean 
+       mv stagetrain-libbacktrace prev-libbacktrace || test -f stagetrain-lean
 @endif libbacktrace
 @if libcpp
        @cd $(HOST_SUBDIR); [ -d stagefeedback-libcpp ] || \
          mkdir stagefeedback-libcpp; \
        mv stagefeedback-libcpp libcpp; \
-       mv stagetrain-libcpp prev-libcpp || test -f stagetrain-lean 
+       mv stagetrain-libcpp prev-libcpp || test -f stagetrain-lean
 @endif libcpp
 @if libcody
        @cd $(HOST_SUBDIR); [ -d stagefeedback-libcody ] || \
          mkdir stagefeedback-libcody; \
        mv stagefeedback-libcody libcody; \
-       mv stagetrain-libcody prev-libcody || test -f stagetrain-lean 
+       mv stagetrain-libcody prev-libcody || test -f stagetrain-lean
 @endif libcody
 @if libdecnumber
        @cd $(HOST_SUBDIR); [ -d stagefeedback-libdecnumber ] || \
          mkdir stagefeedback-libdecnumber; \
        mv stagefeedback-libdecnumber libdecnumber; \
-       mv stagetrain-libdecnumber prev-libdecnumber || test -f stagetrain-lean 
+       mv stagetrain-libdecnumber prev-libdecnumber || test -f stagetrain-lean
 @endif libdecnumber
 @if libiberty
        @cd $(HOST_SUBDIR); [ -d stagefeedback-libiberty ] || \
          mkdir stagefeedback-libiberty; \
        mv stagefeedback-libiberty libiberty; \
-       mv stagetrain-libiberty prev-libiberty || test -f stagetrain-lean 
+       mv stagetrain-libiberty prev-libiberty || test -f stagetrain-lean
 @endif libiberty
 @if libiberty-linker-plugin
        @cd $(HOST_SUBDIR); [ -d stagefeedback-libiberty-linker-plugin ] || \
          mkdir stagefeedback-libiberty-linker-plugin; \
        mv stagefeedback-libiberty-linker-plugin libiberty-linker-plugin; \
-       mv stagetrain-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stagetrain-lean 
+       mv stagetrain-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stagetrain-lean
 @endif libiberty-linker-plugin
 @if libiconv
        @cd $(HOST_SUBDIR); [ -d stagefeedback-libiconv ] || \
          mkdir stagefeedback-libiconv; \
        mv stagefeedback-libiconv libiconv; \
-       mv stagetrain-libiconv prev-libiconv || test -f stagetrain-lean 
+       mv stagetrain-libiconv prev-libiconv || test -f stagetrain-lean
 @endif libiconv
 @if zlib
        @cd $(HOST_SUBDIR); [ -d stagefeedback-zlib ] || \
          mkdir stagefeedback-zlib; \
        mv stagefeedback-zlib zlib; \
-       mv stagetrain-zlib prev-zlib || test -f stagetrain-lean 
+       mv stagetrain-zlib prev-zlib || test -f stagetrain-lean
 @endif zlib
 @if lto-plugin
        @cd $(HOST_SUBDIR); [ -d stagefeedback-lto-plugin ] || \
          mkdir stagefeedback-lto-plugin; \
        mv stagefeedback-lto-plugin lto-plugin; \
-       mv stagetrain-lto-plugin prev-lto-plugin || test -f stagetrain-lean 
+       mv stagetrain-lto-plugin prev-lto-plugin || test -f stagetrain-lean
 @endif lto-plugin
 @if libctf
        @cd $(HOST_SUBDIR); [ -d stagefeedback-libctf ] || \
          mkdir stagefeedback-libctf; \
        mv stagefeedback-libctf libctf; \
-       mv stagetrain-libctf prev-libctf || test -f stagetrain-lean 
+       mv stagetrain-libctf prev-libctf || test -f stagetrain-lean
 @endif libctf
        @[ -d stagefeedback-$(TARGET_SUBDIR) ] || \
          mkdir stagefeedback-$(TARGET_SUBDIR); \
        mv stagefeedback-$(TARGET_SUBDIR) $(TARGET_SUBDIR); \
-       mv stagetrain-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stagetrain-lean 
+       mv stagetrain-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stagetrain-lean
 
-stagefeedback-end:: 
+stagefeedback-end::
 @if bfd
        @if test -d $(HOST_SUBDIR)/bfd; then \
          cd $(HOST_SUBDIR); mv bfd stagefeedback-bfd; \
@@ -64291,12 +65309,12 @@ profiledbootstrap-lean:
 
 
 # Rules to wipe a stage and all the following ones, also used for cleanstrap
-distclean-stagetrain:: distclean-stagefeedback 
+distclean-stagetrain:: 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
@@ -64313,152 +65331,152 @@ stageautoprofile-start::
        @cd $(HOST_SUBDIR); [ -d stageautoprofile-bfd ] || \
          mkdir stageautoprofile-bfd; \
        mv stageautoprofile-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 stageautoprofile-opcodes ] || \
          mkdir stageautoprofile-opcodes; \
        mv stageautoprofile-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 stageautoprofile-binutils ] || \
          mkdir stageautoprofile-binutils; \
        mv stageautoprofile-binutils binutils; \
-       mv stage1-binutils prev-binutils || test -f stage1-lean 
+       mv stage1-binutils prev-binutils || test -f stage1-lean
 @endif binutils
 @if fixincludes
        @cd $(HOST_SUBDIR); [ -d stageautoprofile-fixincludes ] || \
          mkdir stageautoprofile-fixincludes; \
        mv stageautoprofile-fixincludes fixincludes; \
-       mv stage1-fixincludes prev-fixincludes || test -f stage1-lean 
+       mv stage1-fixincludes prev-fixincludes || test -f stage1-lean
 @endif fixincludes
 @if gas
        @cd $(HOST_SUBDIR); [ -d stageautoprofile-gas ] || \
          mkdir stageautoprofile-gas; \
        mv stageautoprofile-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 stageautoprofile-gcc ] || \
          mkdir stageautoprofile-gcc; \
        mv stageautoprofile-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 stageautoprofile-gmp ] || \
          mkdir stageautoprofile-gmp; \
        mv stageautoprofile-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 stageautoprofile-mpfr ] || \
          mkdir stageautoprofile-mpfr; \
        mv stageautoprofile-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 stageautoprofile-mpc ] || \
          mkdir stageautoprofile-mpc; \
        mv stageautoprofile-mpc mpc; \
-       mv stage1-mpc prev-mpc || test -f stage1-lean 
+       mv stage1-mpc prev-mpc || test -f stage1-lean
 @endif mpc
 @if isl
        @cd $(HOST_SUBDIR); [ -d stageautoprofile-isl ] || \
          mkdir stageautoprofile-isl; \
        mv stageautoprofile-isl isl; \
-       mv stage1-isl prev-isl || test -f stage1-lean 
+       mv stage1-isl prev-isl || test -f stage1-lean
 @endif isl
 @if libelf
        @cd $(HOST_SUBDIR); [ -d stageautoprofile-libelf ] || \
          mkdir stageautoprofile-libelf; \
        mv stageautoprofile-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 stageautoprofile-gold ] || \
          mkdir stageautoprofile-gold; \
        mv stageautoprofile-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 stageautoprofile-intl ] || \
          mkdir stageautoprofile-intl; \
        mv stageautoprofile-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 stageautoprofile-ld ] || \
          mkdir stageautoprofile-ld; \
        mv stageautoprofile-ld ld; \
-       mv stage1-ld prev-ld || test -f stage1-lean 
+       mv stage1-ld prev-ld || test -f stage1-lean
 @endif ld
 @if libbacktrace
        @cd $(HOST_SUBDIR); [ -d stageautoprofile-libbacktrace ] || \
          mkdir stageautoprofile-libbacktrace; \
        mv stageautoprofile-libbacktrace libbacktrace; \
-       mv stage1-libbacktrace prev-libbacktrace || test -f stage1-lean 
+       mv stage1-libbacktrace prev-libbacktrace || test -f stage1-lean
 @endif libbacktrace
 @if libcpp
        @cd $(HOST_SUBDIR); [ -d stageautoprofile-libcpp ] || \
          mkdir stageautoprofile-libcpp; \
        mv stageautoprofile-libcpp libcpp; \
-       mv stage1-libcpp prev-libcpp || test -f stage1-lean 
+       mv stage1-libcpp prev-libcpp || test -f stage1-lean
 @endif libcpp
 @if libcody
        @cd $(HOST_SUBDIR); [ -d stageautoprofile-libcody ] || \
          mkdir stageautoprofile-libcody; \
        mv stageautoprofile-libcody libcody; \
-       mv stage1-libcody prev-libcody || test -f stage1-lean 
+       mv stage1-libcody prev-libcody || test -f stage1-lean
 @endif libcody
 @if libdecnumber
        @cd $(HOST_SUBDIR); [ -d stageautoprofile-libdecnumber ] || \
          mkdir stageautoprofile-libdecnumber; \
        mv stageautoprofile-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 stageautoprofile-libiberty ] || \
          mkdir stageautoprofile-libiberty; \
        mv stageautoprofile-libiberty libiberty; \
-       mv stage1-libiberty prev-libiberty || test -f stage1-lean 
+       mv stage1-libiberty prev-libiberty || test -f stage1-lean
 @endif libiberty
 @if libiberty-linker-plugin
        @cd $(HOST_SUBDIR); [ -d stageautoprofile-libiberty-linker-plugin ] || \
          mkdir stageautoprofile-libiberty-linker-plugin; \
        mv stageautoprofile-libiberty-linker-plugin libiberty-linker-plugin; \
-       mv stage1-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stage1-lean 
+       mv stage1-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stage1-lean
 @endif libiberty-linker-plugin
 @if libiconv
        @cd $(HOST_SUBDIR); [ -d stageautoprofile-libiconv ] || \
          mkdir stageautoprofile-libiconv; \
        mv stageautoprofile-libiconv libiconv; \
-       mv stage1-libiconv prev-libiconv || test -f stage1-lean 
+       mv stage1-libiconv prev-libiconv || test -f stage1-lean
 @endif libiconv
 @if zlib
        @cd $(HOST_SUBDIR); [ -d stageautoprofile-zlib ] || \
          mkdir stageautoprofile-zlib; \
        mv stageautoprofile-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 stageautoprofile-lto-plugin ] || \
          mkdir stageautoprofile-lto-plugin; \
        mv stageautoprofile-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
 @if libctf
        @cd $(HOST_SUBDIR); [ -d stageautoprofile-libctf ] || \
          mkdir stageautoprofile-libctf; \
        mv stageautoprofile-libctf libctf; \
-       mv stage1-libctf prev-libctf || test -f stage1-lean 
+       mv stage1-libctf prev-libctf || test -f stage1-lean
 @endif libctf
        @[ -d stageautoprofile-$(TARGET_SUBDIR) ] || \
          mkdir stageautoprofile-$(TARGET_SUBDIR); \
        mv stageautoprofile-$(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
 
-stageautoprofile-end:: 
+stageautoprofile-end::
 @if bfd
        @if test -d $(HOST_SUBDIR)/bfd; then \
          cd $(HOST_SUBDIR); mv bfd stageautoprofile-bfd; \
@@ -64634,12 +65652,12 @@ do-clean: clean-stageautoprofile
 
 
 # Rules to wipe a stage and all the following ones, also used for cleanstrap
-distclean-stage1:: distclean-stageautoprofile 
+distclean-stage1:: distclean-stageautoprofile
 .PHONY: distclean-stageautoprofile
 distclean-stageautoprofile::
        @: $(MAKE); $(stage)
        @test "`cat stage_last`" != stageautoprofile || rm -f stage_last
-       rm -rf stageautoprofile-* 
+       rm -rf stageautoprofile-*
 
 
 @endif gcc-bootstrap
@@ -64656,152 +65674,152 @@ stageautofeedback-start::
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-bfd ] || \
          mkdir stageautofeedback-bfd; \
        mv stageautofeedback-bfd bfd; \
-       mv stageautoprofile-bfd prev-bfd || test -f stageautoprofile-lean 
+       mv stageautoprofile-bfd prev-bfd || test -f stageautoprofile-lean
 @endif bfd
 @if opcodes
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-opcodes ] || \
          mkdir stageautofeedback-opcodes; \
        mv stageautofeedback-opcodes opcodes; \
-       mv stageautoprofile-opcodes prev-opcodes || test -f stageautoprofile-lean 
+       mv stageautoprofile-opcodes prev-opcodes || test -f stageautoprofile-lean
 @endif opcodes
 @if binutils
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-binutils ] || \
          mkdir stageautofeedback-binutils; \
        mv stageautofeedback-binutils binutils; \
-       mv stageautoprofile-binutils prev-binutils || test -f stageautoprofile-lean 
+       mv stageautoprofile-binutils prev-binutils || test -f stageautoprofile-lean
 @endif binutils
 @if fixincludes
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-fixincludes ] || \
          mkdir stageautofeedback-fixincludes; \
        mv stageautofeedback-fixincludes fixincludes; \
-       mv stageautoprofile-fixincludes prev-fixincludes || test -f stageautoprofile-lean 
+       mv stageautoprofile-fixincludes prev-fixincludes || test -f stageautoprofile-lean
 @endif fixincludes
 @if gas
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-gas ] || \
          mkdir stageautofeedback-gas; \
        mv stageautofeedback-gas gas; \
-       mv stageautoprofile-gas prev-gas || test -f stageautoprofile-lean 
+       mv stageautoprofile-gas prev-gas || test -f stageautoprofile-lean
 @endif gas
 @if gcc
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-gcc ] || \
          mkdir stageautofeedback-gcc; \
        mv stageautofeedback-gcc gcc; \
-       mv stageautoprofile-gcc prev-gcc || test -f stageautoprofile-lean 
+       mv stageautoprofile-gcc prev-gcc || test -f stageautoprofile-lean
 @endif gcc
 @if gmp
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-gmp ] || \
          mkdir stageautofeedback-gmp; \
        mv stageautofeedback-gmp gmp; \
-       mv stageautoprofile-gmp prev-gmp || test -f stageautoprofile-lean 
+       mv stageautoprofile-gmp prev-gmp || test -f stageautoprofile-lean
 @endif gmp
 @if mpfr
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-mpfr ] || \
          mkdir stageautofeedback-mpfr; \
        mv stageautofeedback-mpfr mpfr; \
-       mv stageautoprofile-mpfr prev-mpfr || test -f stageautoprofile-lean 
+       mv stageautoprofile-mpfr prev-mpfr || test -f stageautoprofile-lean
 @endif mpfr
 @if mpc
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-mpc ] || \
          mkdir stageautofeedback-mpc; \
        mv stageautofeedback-mpc mpc; \
-       mv stageautoprofile-mpc prev-mpc || test -f stageautoprofile-lean 
+       mv stageautoprofile-mpc prev-mpc || test -f stageautoprofile-lean
 @endif mpc
 @if isl
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-isl ] || \
          mkdir stageautofeedback-isl; \
        mv stageautofeedback-isl isl; \
-       mv stageautoprofile-isl prev-isl || test -f stageautoprofile-lean 
+       mv stageautoprofile-isl prev-isl || test -f stageautoprofile-lean
 @endif isl
 @if libelf
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-libelf ] || \
          mkdir stageautofeedback-libelf; \
        mv stageautofeedback-libelf libelf; \
-       mv stageautoprofile-libelf prev-libelf || test -f stageautoprofile-lean 
+       mv stageautoprofile-libelf prev-libelf || test -f stageautoprofile-lean
 @endif libelf
 @if gold
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-gold ] || \
          mkdir stageautofeedback-gold; \
        mv stageautofeedback-gold gold; \
-       mv stageautoprofile-gold prev-gold || test -f stageautoprofile-lean 
+       mv stageautoprofile-gold prev-gold || test -f stageautoprofile-lean
 @endif gold
 @if intl
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-intl ] || \
          mkdir stageautofeedback-intl; \
        mv stageautofeedback-intl intl; \
-       mv stageautoprofile-intl prev-intl || test -f stageautoprofile-lean 
+       mv stageautoprofile-intl prev-intl || test -f stageautoprofile-lean
 @endif intl
 @if ld
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-ld ] || \
          mkdir stageautofeedback-ld; \
        mv stageautofeedback-ld ld; \
-       mv stageautoprofile-ld prev-ld || test -f stageautoprofile-lean 
+       mv stageautoprofile-ld prev-ld || test -f stageautoprofile-lean
 @endif ld
 @if libbacktrace
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-libbacktrace ] || \
          mkdir stageautofeedback-libbacktrace; \
        mv stageautofeedback-libbacktrace libbacktrace; \
-       mv stageautoprofile-libbacktrace prev-libbacktrace || test -f stageautoprofile-lean 
+       mv stageautoprofile-libbacktrace prev-libbacktrace || test -f stageautoprofile-lean
 @endif libbacktrace
 @if libcpp
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-libcpp ] || \
          mkdir stageautofeedback-libcpp; \
        mv stageautofeedback-libcpp libcpp; \
-       mv stageautoprofile-libcpp prev-libcpp || test -f stageautoprofile-lean 
+       mv stageautoprofile-libcpp prev-libcpp || test -f stageautoprofile-lean
 @endif libcpp
 @if libcody
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-libcody ] || \
          mkdir stageautofeedback-libcody; \
        mv stageautofeedback-libcody libcody; \
-       mv stageautoprofile-libcody prev-libcody || test -f stageautoprofile-lean 
+       mv stageautoprofile-libcody prev-libcody || test -f stageautoprofile-lean
 @endif libcody
 @if libdecnumber
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-libdecnumber ] || \
          mkdir stageautofeedback-libdecnumber; \
        mv stageautofeedback-libdecnumber libdecnumber; \
-       mv stageautoprofile-libdecnumber prev-libdecnumber || test -f stageautoprofile-lean 
+       mv stageautoprofile-libdecnumber prev-libdecnumber || test -f stageautoprofile-lean
 @endif libdecnumber
 @if libiberty
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-libiberty ] || \
          mkdir stageautofeedback-libiberty; \
        mv stageautofeedback-libiberty libiberty; \
-       mv stageautoprofile-libiberty prev-libiberty || test -f stageautoprofile-lean 
+       mv stageautoprofile-libiberty prev-libiberty || test -f stageautoprofile-lean
 @endif libiberty
 @if libiberty-linker-plugin
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-libiberty-linker-plugin ] || \
          mkdir stageautofeedback-libiberty-linker-plugin; \
        mv stageautofeedback-libiberty-linker-plugin libiberty-linker-plugin; \
-       mv stageautoprofile-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stageautoprofile-lean 
+       mv stageautoprofile-libiberty-linker-plugin prev-libiberty-linker-plugin || test -f stageautoprofile-lean
 @endif libiberty-linker-plugin
 @if libiconv
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-libiconv ] || \
          mkdir stageautofeedback-libiconv; \
        mv stageautofeedback-libiconv libiconv; \
-       mv stageautoprofile-libiconv prev-libiconv || test -f stageautoprofile-lean 
+       mv stageautoprofile-libiconv prev-libiconv || test -f stageautoprofile-lean
 @endif libiconv
 @if zlib
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-zlib ] || \
          mkdir stageautofeedback-zlib; \
        mv stageautofeedback-zlib zlib; \
-       mv stageautoprofile-zlib prev-zlib || test -f stageautoprofile-lean 
+       mv stageautoprofile-zlib prev-zlib || test -f stageautoprofile-lean
 @endif zlib
 @if lto-plugin
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-lto-plugin ] || \
          mkdir stageautofeedback-lto-plugin; \
        mv stageautofeedback-lto-plugin lto-plugin; \
-       mv stageautoprofile-lto-plugin prev-lto-plugin || test -f stageautoprofile-lean 
+       mv stageautoprofile-lto-plugin prev-lto-plugin || test -f stageautoprofile-lean
 @endif lto-plugin
 @if libctf
        @cd $(HOST_SUBDIR); [ -d stageautofeedback-libctf ] || \
          mkdir stageautofeedback-libctf; \
        mv stageautofeedback-libctf libctf; \
-       mv stageautoprofile-libctf prev-libctf || test -f stageautoprofile-lean 
+       mv stageautoprofile-libctf prev-libctf || test -f stageautoprofile-lean
 @endif libctf
        @[ -d stageautofeedback-$(TARGET_SUBDIR) ] || \
          mkdir stageautofeedback-$(TARGET_SUBDIR); \
        mv stageautofeedback-$(TARGET_SUBDIR) $(TARGET_SUBDIR); \
-       mv stageautoprofile-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stageautoprofile-lean 
+       mv stageautoprofile-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stageautoprofile-lean
 
-stageautofeedback-end:: 
+stageautofeedback-end::
 @if bfd
        @if test -d $(HOST_SUBDIR)/bfd; then \
          cd $(HOST_SUBDIR); mv bfd stageautofeedback-bfd; \
@@ -65000,12 +66018,12 @@ autoprofiledbootstrap-lean:
 
 
 # Rules to wipe a stage and all the following ones, also used for cleanstrap
-distclean-stageautoprofile:: distclean-stageautofeedback 
+distclean-stageautoprofile:: distclean-stageautofeedback
 .PHONY: distclean-stageautofeedback
 distclean-stageautofeedback::
        @: $(MAKE); $(stage)
        @test "`cat stage_last`" != stageautofeedback || rm -f stage_last
-       rm -rf stageautofeedback-* 
+       rm -rf stageautofeedback-*
 
 
 @endif gcc-bootstrap
@@ -65129,6 +66147,7 @@ configure-stageautoprofile-target-zlib: maybe-all-stageautoprofile-gcc
 configure-stageautofeedback-target-zlib: maybe-all-stageautofeedback-gcc
 configure-target-rda: stage_last
 configure-target-libada: stage_last
+configure-target-libgm2: stage_last
 configure-stage1-target-libgomp: maybe-all-stage1-gcc
 configure-stage2-target-libgomp: maybe-all-stage2-gcc
 configure-stage3-target-libgomp: maybe-all-stage3-gcc
@@ -65171,6 +66190,7 @@ configure-target-libffi: maybe-all-gcc
 configure-target-zlib: maybe-all-gcc
 configure-target-rda: maybe-all-gcc
 configure-target-libada: maybe-all-gcc
+configure-target-libgm2: maybe-all-gcc
 configure-target-libgomp: maybe-all-gcc
 configure-target-libitm: maybe-all-gcc
 configure-target-libatomic: maybe-all-gcc
@@ -65658,6 +66678,7 @@ all-stagefeedback-lto-plugin: maybe-all-stagefeedback-libiberty-linker-plugin
 all-stageautoprofile-lto-plugin: maybe-all-stageautoprofile-libiberty-linker-plugin
 all-stageautofeedback-lto-plugin: maybe-all-stageautofeedback-libiberty-linker-plugin
 all-gotools: maybe-all-target-libgo
+all-gm2tools: maybe-all-target-libgm2
 configure-intl: maybe-all-libiconv
 configure-stage1-intl: maybe-all-stage1-libiconv
 configure-stage2-intl: maybe-all-stage2-libiconv
@@ -66290,7 +67311,9 @@ all-flex: maybe-all-build-bison
 all-flex: maybe-all-m4
 all-flex: maybe-all-build-texinfo
 all-m4: maybe-all-build-texinfo
+configure-target-libgm2: maybe-configure-target-libatomic
 configure-target-libgo: maybe-configure-target-libffi
+all-target-libgm2: maybe-all-target-libatomic
 all-target-libgo: maybe-all-target-libffi
 configure-target-libphobos: maybe-configure-target-libbacktrace
 configure-stage1-target-libphobos: maybe-configure-stage1-target-libbacktrace
@@ -66404,6 +67427,7 @@ configure-target-libgfortran: maybe-all-target-libquadmath
 configure-gnattools: stage_last
 configure-libcc1: stage_last
 configure-c++tools: stage_last
+configure-gm2tools: stage_last
 configure-utils: stage_last
 configure-gdb: stage_last
 configure-gdbserver: stage_last
@@ -66422,6 +67446,7 @@ all-gnattools: maybe-all-target-libstdc++-v3
 configure-libcc1: maybe-configure-gcc
 all-libcc1: maybe-all-gcc
 all-c++tools: maybe-all-gcc
+all-gm2tools: maybe-all-target-libstdc++-v3
 all-utils: maybe-all-libiberty
 configure-gdb: maybe-all-intl
 configure-gdb: maybe-all-bfd
@@ -66456,10 +67481,12 @@ all-flex: maybe-all-intl
 all-m4: maybe-all-intl
 configure-target-fastjar: maybe-configure-target-zlib
 all-target-fastjar: maybe-all-target-zlib
+configure-target-libgm2: maybe-all-target-libstdc++-v3
 configure-target-libgo: maybe-all-target-libstdc++-v3
 configure-target-libffi: maybe-all-target-libstdc++-v3
 all-target-libgo: maybe-all-target-libbacktrace
 all-target-libgo: maybe-all-target-libatomic
+all-target-libgm2: maybe-all-target-libatomic
 configure-target-liboffloadmic: maybe-configure-target-libgomp
 all-target-liboffloadmic: maybe-all-target-libgomp
 configure-target-newlib: maybe-all-binutils
@@ -66567,6 +67594,7 @@ configure-target-libffi: maybe-all-target-libgcc
 configure-target-zlib: maybe-all-target-libgcc
 configure-target-rda: maybe-all-target-libgcc
 configure-target-libada: maybe-all-target-libgcc
+configure-target-libgm2: maybe-all-target-libgcc
 configure-target-libgomp: maybe-all-target-libgcc
 configure-target-libitm: maybe-all-target-libgcc
 configure-target-libatomic: maybe-all-target-libgcc
@@ -66612,6 +67640,8 @@ configure-target-rda: maybe-all-target-newlib maybe-all-target-libgloss
 
 configure-target-libada: maybe-all-target-newlib maybe-all-target-libgloss
 
+configure-target-libgm2: maybe-all-target-newlib maybe-all-target-libgloss
+
 configure-target-libgomp: maybe-all-target-newlib maybe-all-target-libgloss
 
 configure-target-libitm: maybe-all-target-newlib maybe-all-target-libgloss
@@ -66628,7 +67658,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@
 
This page took 0.437327 seconds and 5 git commands to generate.