[PATCH] Add support for html/install-html.

DJ Delorie dj@redhat.com
Mon May 22 17:54:00 GMT 2006


> before (normally DJ's syncs turn it up).  But you appear to have

It's just an email to the maintainers, it isn't semi-automatic like
the libiberty stuff.

The latest such email is attached for reference.

Date: Mon, 22 May 2006 11:13:23 -0400
From: DJ Delorie <dj@redhat.com>
Subject: ./ diff Makefile.def Makefile.in Makefile.tpl config config.guess config.sub configure configure.in

*** gcc/Makefile.tpl	Tue Feb 21 11:13:10 2006
--- src/Makefile.tpl	Thu Apr  6 18:13:19 2006
***************
*** 54,57 ****
--- 54,60 ----
  oldincludedir = @oldincludedir@
  infodir = @infodir@
+ datarootdir = @datarootdir@
+ docdir = @docdir@
+ htmldir = @htmldir@
  mandir = @mandir@
  man1dir = $(mandir)/man1
***************
*** 533,537 ****
  # Here are the targets which correspond to the do-X targets.
  
! .PHONY: info installcheck dvi html install-info
  .PHONY: clean distclean mostlyclean maintainer-clean realclean
  .PHONY: local-clean local-distclean local-maintainer-clean
--- 536,540 ----
  # Here are the targets which correspond to the do-X targets.
  
! .PHONY: info installcheck dvi html install-info install-html
  .PHONY: clean distclean mostlyclean maintainer-clean realclean
  .PHONY: local-clean local-distclean local-maintainer-clean
***************
*** 551,554 ****
--- 554,559 ----
  	else true ; fi
  
+ install-html: do-install-html
+ 
  local-clean:
  	-rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E *.log
*** gcc/Makefile.def	Mon May 22 11:13:07 2006
--- src/Makefile.def	Thu Apr  6 18:13:19 2006
***************
*** 118,121 ****
--- 118,122 ----
  target_modules = { module= libmudflap; lib_path=.libs; };
  target_modules = { module= libssp; lib_path=.libs; };
+ target_modules = { module= libgcc-math; lib_path=.libs; };
  target_modules = { module= newlib; };
  target_modules = { module= libgfortran; };
***************
*** 155,158 ****
--- 156,162 ----
                        depend=configure;
                        depend=info; };
+ recursive_targets = { make_target= install-html; 
+                       depend=configure;
+                       depend=html; };
  recursive_targets = { make_target= installcheck; 
                        depend=configure; };
***************
*** 172,176 ****
--- 176,183 ----
  flags_to_pass = { flag= exec_prefix ; };
  flags_to_pass = { flag= includedir ; };
+ flags_to_pass = { flag= datarootdir ; };
+ flags_to_pass = { flag= docdir ; };
  flags_to_pass = { flag= infodir ; };
+ flags_to_pass = { flag= htmldir ; };
  flags_to_pass = { flag= libdir ; };
  flags_to_pass = { flag= libexecdir ; };
*** gcc/Makefile.in	Mon May 22 11:13:07 2006
--- src/Makefile.in	Thu Apr  6 18:13:19 2006
***************
*** 51,54 ****
--- 51,57 ----
  oldincludedir = @oldincludedir@
  infodir = @infodir@
+ datarootdir = @datarootdir@
+ docdir = @docdir@
+ htmldir = @htmldir@
  mandir = @mandir@
  man1dir = $(mandir)/man1
***************
*** 352,356 ****
  # This is the list of directories that may be needed in RPATH_ENVVAR
  # so that prorgams built for the target machine work.
! TARGET_LIB_PATH = $(TARGET_LIB_PATH_libstdc++-v3)$(TARGET_LIB_PATH_libmudflap)$(TARGET_LIB_PATH_libssp)$(TARGET_LIB_PATH_libgomp)$(HOST_LIB_PATH_gcc)
  
  @if target-libstdc++-v3
--- 355,359 ----
  # This is the list of directories that may be needed in RPATH_ENVVAR
  # so that prorgams built for the target machine work.
! TARGET_LIB_PATH = $(TARGET_LIB_PATH_libstdc++-v3)$(TARGET_LIB_PATH_libmudflap)$(TARGET_LIB_PATH_libssp)$(TARGET_LIB_PATH_libgcc-math)$(TARGET_LIB_PATH_libgomp)$(HOST_LIB_PATH_gcc)
  
  @if target-libstdc++-v3
***************
*** 366,369 ****
--- 369,376 ----
  @endif target-libssp
  
+ @if target-libgcc-math
+ TARGET_LIB_PATH_libgcc-math = $$r/$(TARGET_SUBDIR)/libgcc-math/.libs:
+ @endif target-libgcc-math
+ 
  @if target-libgomp
  TARGET_LIB_PATH_libgomp = $$r/$(TARGET_SUBDIR)/libgomp/.libs:
***************
*** 402,406 ****
--- 409,416 ----
  	"exec_prefix=$(exec_prefix)" \
  	"includedir=$(includedir)" \
+ 	"datarootdir=$(datarootdir)" \
+ 	"docdir=$(docdir)" \
  	"infodir=$(infodir)" \
+ 	"htmldir=$(htmldir)" \
  	"libdir=$(libdir)" \
  	"libexecdir=$(libexecdir)" \
***************
*** 617,620 ****
--- 627,631 ----
      maybe-configure-target-libmudflap \
      maybe-configure-target-libssp \
+     maybe-configure-target-libgcc-math \
      maybe-configure-target-newlib \
      maybe-configure-target-libgfortran \
***************
*** 761,764 ****
--- 772,776 ----
  all-target: maybe-all-target-libmudflap
  all-target: maybe-all-target-libssp
+ all-target: maybe-all-target-libgcc-math
  all-target: maybe-all-target-newlib
  all-target: maybe-all-target-libgfortran
***************
*** 869,872 ****
--- 881,885 ----
  info-target: maybe-info-target-libmudflap
  info-target: maybe-info-target-libssp
+ info-target: maybe-info-target-libgcc-math
  info-target: maybe-info-target-newlib
  info-target: maybe-info-target-libgfortran
***************
*** 972,975 ****
--- 985,989 ----
  dvi-target: maybe-dvi-target-libmudflap
  dvi-target: maybe-dvi-target-libssp
+ dvi-target: maybe-dvi-target-libgcc-math
  dvi-target: maybe-dvi-target-newlib
  dvi-target: maybe-dvi-target-libgfortran
***************
*** 1075,1078 ****
--- 1089,1093 ----
  html-target: maybe-html-target-libmudflap
  html-target: maybe-html-target-libssp
+ html-target: maybe-html-target-libgcc-math
  html-target: maybe-html-target-newlib
  html-target: maybe-html-target-libgfortran
***************
*** 1178,1181 ****
--- 1193,1197 ----
  TAGS-target: maybe-TAGS-target-libmudflap
  TAGS-target: maybe-TAGS-target-libssp
+ TAGS-target: maybe-TAGS-target-libgcc-math
  TAGS-target: maybe-TAGS-target-newlib
  TAGS-target: maybe-TAGS-target-libgfortran
***************
*** 1281,1284 ****
--- 1297,1301 ----
  install-info-target: maybe-install-info-target-libmudflap
  install-info-target: maybe-install-info-target-libssp
+ install-info-target: maybe-install-info-target-libgcc-math
  install-info-target: maybe-install-info-target-newlib
  install-info-target: maybe-install-info-target-libgfortran
***************
*** 1299,1302 ****
--- 1316,1423 ----
  install-info-target: maybe-install-info-target-libgomp
  
+ .PHONY: do-install-html
+ do-install-html:
+ 	@: $(MAKE); $(unstage)
+ 	@r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(MAKE) $(RECURSE_FLAGS_TO_PASS) install-html-host \
+ 	  install-html-target
+ 
+ 
+ .PHONY: install-html-host
+ 
+ install-html-host: maybe-install-html-ash
+ install-html-host: maybe-install-html-autoconf
+ install-html-host: maybe-install-html-automake
+ install-html-host: maybe-install-html-bash
+ install-html-host: maybe-install-html-bfd
+ install-html-host: maybe-install-html-opcodes
+ install-html-host: maybe-install-html-binutils
+ install-html-host: maybe-install-html-bison
+ install-html-host: maybe-install-html-byacc
+ install-html-host: maybe-install-html-bzip2
+ install-html-host: maybe-install-html-dejagnu
+ install-html-host: maybe-install-html-diff
+ install-html-host: maybe-install-html-dosutils
+ install-html-host: maybe-install-html-etc
+ install-html-host: maybe-install-html-fastjar
+ install-html-host: maybe-install-html-fileutils
+ install-html-host: maybe-install-html-findutils
+ install-html-host: maybe-install-html-find
+ install-html-host: maybe-install-html-fixincludes
+ install-html-host: maybe-install-html-flex
+ install-html-host: maybe-install-html-gas
+ install-html-host: maybe-install-html-gcc
+ install-html-host: maybe-install-html-gawk
+ install-html-host: maybe-install-html-gettext
+ install-html-host: maybe-install-html-gnuserv
+ install-html-host: maybe-install-html-gprof
+ install-html-host: maybe-install-html-gzip
+ install-html-host: maybe-install-html-hello
+ install-html-host: maybe-install-html-indent
+ install-html-host: maybe-install-html-intl
+ install-html-host: maybe-install-html-tcl
+ install-html-host: maybe-install-html-itcl
+ install-html-host: maybe-install-html-ld
+ install-html-host: maybe-install-html-libcpp
+ install-html-host: maybe-install-html-libdecnumber
+ install-html-host: maybe-install-html-libgui
+ install-html-host: maybe-install-html-libiberty
+ install-html-host: maybe-install-html-libtool
+ install-html-host: maybe-install-html-m4
+ install-html-host: maybe-install-html-make
+ install-html-host: maybe-install-html-mmalloc
+ install-html-host: maybe-install-html-patch
+ install-html-host: maybe-install-html-perl
+ install-html-host: maybe-install-html-prms
+ install-html-host: maybe-install-html-rcs
+ install-html-host: maybe-install-html-readline
+ install-html-host: maybe-install-html-release
+ install-html-host: maybe-install-html-recode
+ install-html-host: maybe-install-html-sed
+ install-html-host: maybe-install-html-send-pr
+ install-html-host: maybe-install-html-shellutils
+ install-html-host: maybe-install-html-sid
+ install-html-host: maybe-install-html-sim
+ install-html-host: maybe-install-html-tar
+ install-html-host: maybe-install-html-texinfo
+ install-html-host: maybe-install-html-textutils
+ install-html-host: maybe-install-html-time
+ install-html-host: maybe-install-html-uudecode
+ install-html-host: maybe-install-html-wdiff
+ install-html-host: maybe-install-html-zip
+ install-html-host: maybe-install-html-zlib
+ install-html-host: maybe-install-html-gdb
+ install-html-host: maybe-install-html-expect
+ install-html-host: maybe-install-html-guile
+ install-html-host: maybe-install-html-tk
+ install-html-host: maybe-install-html-libtermcap
+ install-html-host: maybe-install-html-utils
+ install-html-host: maybe-install-html-gnattools
+ 
+ .PHONY: install-html-target
+ 
+ install-html-target: maybe-install-html-target-libstdc++-v3
+ install-html-target: maybe-install-html-target-libmudflap
+ install-html-target: maybe-install-html-target-libssp
+ install-html-target: maybe-install-html-target-libgcc-math
+ install-html-target: maybe-install-html-target-newlib
+ install-html-target: maybe-install-html-target-libgfortran
+ install-html-target: maybe-install-html-target-libobjc
+ install-html-target: maybe-install-html-target-libtermcap
+ install-html-target: maybe-install-html-target-winsup
+ install-html-target: maybe-install-html-target-libgloss
+ install-html-target: maybe-install-html-target-libiberty
+ install-html-target: maybe-install-html-target-gperf
+ install-html-target: maybe-install-html-target-examples
+ install-html-target: maybe-install-html-target-libffi
+ install-html-target: maybe-install-html-target-libjava
+ install-html-target: maybe-install-html-target-zlib
+ install-html-target: maybe-install-html-target-boehm-gc
+ install-html-target: maybe-install-html-target-qthreads
+ install-html-target: maybe-install-html-target-rda
+ install-html-target: maybe-install-html-target-libada
+ install-html-target: maybe-install-html-target-libgomp
+ 
  .PHONY: do-installcheck
  do-installcheck:
***************
*** 1384,1387 ****
--- 1505,1509 ----
  installcheck-target: maybe-installcheck-target-libmudflap
  installcheck-target: maybe-installcheck-target-libssp
+ installcheck-target: maybe-installcheck-target-libgcc-math
  installcheck-target: maybe-installcheck-target-newlib
  installcheck-target: maybe-installcheck-target-libgfortran
***************
*** 1487,1490 ****
--- 1609,1613 ----
  mostlyclean-target: maybe-mostlyclean-target-libmudflap
  mostlyclean-target: maybe-mostlyclean-target-libssp
+ mostlyclean-target: maybe-mostlyclean-target-libgcc-math
  mostlyclean-target: maybe-mostlyclean-target-newlib
  mostlyclean-target: maybe-mostlyclean-target-libgfortran
***************
*** 1590,1593 ****
--- 1713,1717 ----
  clean-target: maybe-clean-target-libmudflap
  clean-target: maybe-clean-target-libssp
+ clean-target: maybe-clean-target-libgcc-math
  clean-target: maybe-clean-target-newlib
  clean-target: maybe-clean-target-libgfortran
***************
*** 1693,1696 ****
--- 1817,1821 ----
  distclean-target: maybe-distclean-target-libmudflap
  distclean-target: maybe-distclean-target-libssp
+ distclean-target: maybe-distclean-target-libgcc-math
  distclean-target: maybe-distclean-target-newlib
  distclean-target: maybe-distclean-target-libgfortran
***************
*** 1796,1799 ****
--- 1921,1925 ----
  maintainer-clean-target: maybe-maintainer-clean-target-libmudflap
  maintainer-clean-target: maybe-maintainer-clean-target-libssp
+ maintainer-clean-target: maybe-maintainer-clean-target-libgcc-math
  maintainer-clean-target: maybe-maintainer-clean-target-newlib
  maintainer-clean-target: maybe-maintainer-clean-target-libgfortran
***************
*** 1817,1821 ****
  # Here are the targets which correspond to the do-X targets.
  
! .PHONY: info installcheck dvi html install-info
  .PHONY: clean distclean mostlyclean maintainer-clean realclean
  .PHONY: local-clean local-distclean local-maintainer-clean
--- 1943,1947 ----
  # Here are the targets which correspond to the do-X targets.
  
! .PHONY: info installcheck dvi html install-info install-html
  .PHONY: clean distclean mostlyclean maintainer-clean realclean
  .PHONY: local-clean local-distclean local-maintainer-clean
***************
*** 1835,1838 ****
--- 1961,1966 ----
  	else true ; fi
  
+ install-html: do-install-html
+ 
  local-clean:
  	-rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E *.log
***************
*** 1952,1955 ****
--- 2080,2084 ----
      maybe-check-target-libmudflap \
      maybe-check-target-libssp \
+     maybe-check-target-libgcc-math \
      maybe-check-target-newlib \
      maybe-check-target-libgfortran \
***************
*** 2152,2155 ****
--- 2281,2285 ----
      maybe-install-target-libmudflap \
      maybe-install-target-libssp \
+     maybe-install-target-libgcc-math \
      maybe-install-target-newlib \
      maybe-install-target-libgfortran \
***************
*** 2784,2787 ****
--- 2914,2944 ----
  @endif ash
  
+ .PHONY: maybe-install-html-ash install-html-ash
+ maybe-install-html-ash:
+ @if ash
+ maybe-install-html-ash: install-html-ash
+ 
+ install-html-ash: \
+     configure-ash \
+     html-ash 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./ash/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 ash" ; \
+ 	(cd $(HOST_SUBDIR)/ash && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif ash
+ 
  .PHONY: maybe-installcheck-ash installcheck-ash
  maybe-installcheck-ash:
***************
*** 3121,3124 ****
--- 3278,3308 ----
  @endif autoconf
  
+ .PHONY: maybe-install-html-autoconf install-html-autoconf
+ maybe-install-html-autoconf:
+ @if autoconf
+ maybe-install-html-autoconf: install-html-autoconf
+ 
+ install-html-autoconf: \
+     configure-autoconf \
+     html-autoconf 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./autoconf/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 autoconf" ; \
+ 	(cd $(HOST_SUBDIR)/autoconf && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif autoconf
+ 
  .PHONY: maybe-installcheck-autoconf installcheck-autoconf
  maybe-installcheck-autoconf:
***************
*** 3458,3461 ****
--- 3642,3672 ----
  @endif automake
  
+ .PHONY: maybe-install-html-automake install-html-automake
+ maybe-install-html-automake:
+ @if automake
+ maybe-install-html-automake: install-html-automake
+ 
+ install-html-automake: \
+     configure-automake \
+     html-automake 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./automake/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 automake" ; \
+ 	(cd $(HOST_SUBDIR)/automake && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif automake
+ 
  .PHONY: maybe-installcheck-automake installcheck-automake
  maybe-installcheck-automake:
***************
*** 3795,3798 ****
--- 4006,4036 ----
  @endif bash
  
+ .PHONY: maybe-install-html-bash install-html-bash
+ maybe-install-html-bash:
+ @if bash
+ maybe-install-html-bash: install-html-bash
+ 
+ install-html-bash: \
+     configure-bash \
+     html-bash 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./bash/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 bash" ; \
+ 	(cd $(HOST_SUBDIR)/bash && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif bash
+ 
  .PHONY: maybe-installcheck-bash installcheck-bash
  maybe-installcheck-bash:
***************
*** 4484,4487 ****
--- 4722,4751 ----
  @endif bfd
  
+ .PHONY: maybe-install-html-bfd install-html-bfd
+ maybe-install-html-bfd:
+ @if bfd
+ maybe-install-html-bfd: install-html-bfd
+ 
+ install-html-bfd: \
+     configure-bfd \
+     html-bfd 
+ 	@[ -f ./bfd/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 bfd" ; \
+ 	(cd $(HOST_SUBDIR)/bfd && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif bfd
+ 
  .PHONY: maybe-installcheck-bfd installcheck-bfd
  maybe-installcheck-bfd:
***************
*** 5168,5171 ****
--- 5432,5461 ----
  @endif opcodes
  
+ .PHONY: maybe-install-html-opcodes install-html-opcodes
+ maybe-install-html-opcodes:
+ @if opcodes
+ maybe-install-html-opcodes: install-html-opcodes
+ 
+ install-html-opcodes: \
+     configure-opcodes \
+     html-opcodes 
+ 	@[ -f ./opcodes/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 opcodes" ; \
+ 	(cd $(HOST_SUBDIR)/opcodes && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif opcodes
+ 
  .PHONY: maybe-installcheck-opcodes installcheck-opcodes
  maybe-installcheck-opcodes:
***************
*** 5852,5855 ****
--- 6142,6171 ----
  @endif binutils
  
+ .PHONY: maybe-install-html-binutils install-html-binutils
+ maybe-install-html-binutils:
+ @if binutils
+ maybe-install-html-binutils: install-html-binutils
+ 
+ install-html-binutils: \
+     configure-binutils \
+     html-binutils 
+ 	@[ -f ./binutils/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 binutils" ; \
+ 	(cd $(HOST_SUBDIR)/binutils && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif binutils
+ 
  .PHONY: maybe-installcheck-binutils installcheck-binutils
  maybe-installcheck-binutils:
***************
*** 6187,6190 ****
--- 6503,6533 ----
  @endif bison
  
+ .PHONY: maybe-install-html-bison install-html-bison
+ maybe-install-html-bison:
+ @if bison
+ maybe-install-html-bison: install-html-bison
+ 
+ install-html-bison: \
+     configure-bison \
+     html-bison 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./bison/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 bison" ; \
+ 	(cd $(HOST_SUBDIR)/bison && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif bison
+ 
  .PHONY: maybe-installcheck-bison installcheck-bison
  maybe-installcheck-bison:
***************
*** 6527,6530 ****
--- 6870,6900 ----
  @endif byacc
  
+ .PHONY: maybe-install-html-byacc install-html-byacc
+ maybe-install-html-byacc:
+ @if byacc
+ maybe-install-html-byacc: install-html-byacc
+ 
+ install-html-byacc: \
+     configure-byacc \
+     html-byacc 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./byacc/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 byacc" ; \
+ 	(cd $(HOST_SUBDIR)/byacc && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif byacc
+ 
  .PHONY: maybe-installcheck-byacc installcheck-byacc
  maybe-installcheck-byacc:
***************
*** 6864,6867 ****
--- 7234,7264 ----
  @endif bzip2
  
+ .PHONY: maybe-install-html-bzip2 install-html-bzip2
+ maybe-install-html-bzip2:
+ @if bzip2
+ maybe-install-html-bzip2: install-html-bzip2
+ 
+ install-html-bzip2: \
+     configure-bzip2 \
+     html-bzip2 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./bzip2/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 bzip2" ; \
+ 	(cd $(HOST_SUBDIR)/bzip2 && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif bzip2
+ 
  .PHONY: maybe-installcheck-bzip2 installcheck-bzip2
  maybe-installcheck-bzip2:
***************
*** 7201,7204 ****
--- 7598,7628 ----
  @endif dejagnu
  
+ .PHONY: maybe-install-html-dejagnu install-html-dejagnu
+ maybe-install-html-dejagnu:
+ @if dejagnu
+ maybe-install-html-dejagnu: install-html-dejagnu
+ 
+ install-html-dejagnu: \
+     configure-dejagnu \
+     html-dejagnu 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./dejagnu/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 dejagnu" ; \
+ 	(cd $(HOST_SUBDIR)/dejagnu && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif dejagnu
+ 
  .PHONY: maybe-installcheck-dejagnu installcheck-dejagnu
  maybe-installcheck-dejagnu:
***************
*** 7538,7541 ****
--- 7962,7992 ----
  @endif diff
  
+ .PHONY: maybe-install-html-diff install-html-diff
+ maybe-install-html-diff:
+ @if diff
+ maybe-install-html-diff: install-html-diff
+ 
+ install-html-diff: \
+     configure-diff \
+     html-diff 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./diff/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 diff" ; \
+ 	(cd $(HOST_SUBDIR)/diff && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif diff
+ 
  .PHONY: maybe-installcheck-diff installcheck-diff
  maybe-installcheck-diff:
***************
*** 7869,7872 ****
--- 8320,8350 ----
  @endif dosutils
  
+ .PHONY: maybe-install-html-dosutils install-html-dosutils
+ maybe-install-html-dosutils:
+ @if dosutils
+ maybe-install-html-dosutils: install-html-dosutils
+ 
+ install-html-dosutils: \
+     configure-dosutils \
+     html-dosutils 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./dosutils/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 dosutils" ; \
+ 	(cd $(HOST_SUBDIR)/dosutils && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif dosutils
+ 
  .PHONY: maybe-installcheck-dosutils installcheck-dosutils
  maybe-installcheck-dosutils:
***************
*** 8206,8209 ****
--- 8684,8714 ----
  @endif etc
  
+ .PHONY: maybe-install-html-etc install-html-etc
+ maybe-install-html-etc:
+ @if etc
+ maybe-install-html-etc: install-html-etc
+ 
+ install-html-etc: \
+     configure-etc \
+     html-etc 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./etc/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 etc" ; \
+ 	(cd $(HOST_SUBDIR)/etc && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif etc
+ 
  .PHONY: maybe-installcheck-etc installcheck-etc
  maybe-installcheck-etc:
***************
*** 8546,8549 ****
--- 9051,9081 ----
  @endif fastjar
  
+ .PHONY: maybe-install-html-fastjar install-html-fastjar
+ maybe-install-html-fastjar:
+ @if fastjar
+ maybe-install-html-fastjar: install-html-fastjar
+ 
+ install-html-fastjar: \
+     configure-fastjar \
+     html-fastjar 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./fastjar/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 fastjar" ; \
+ 	(cd $(HOST_SUBDIR)/fastjar && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif fastjar
+ 
  .PHONY: maybe-installcheck-fastjar installcheck-fastjar
  maybe-installcheck-fastjar:
***************
*** 8883,8886 ****
--- 9415,9445 ----
  @endif fileutils
  
+ .PHONY: maybe-install-html-fileutils install-html-fileutils
+ maybe-install-html-fileutils:
+ @if fileutils
+ maybe-install-html-fileutils: install-html-fileutils
+ 
+ install-html-fileutils: \
+     configure-fileutils \
+     html-fileutils 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./fileutils/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 fileutils" ; \
+ 	(cd $(HOST_SUBDIR)/fileutils && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif fileutils
+ 
  .PHONY: maybe-installcheck-fileutils installcheck-fileutils
  maybe-installcheck-fileutils:
***************
*** 9220,9223 ****
--- 9779,9809 ----
  @endif findutils
  
+ .PHONY: maybe-install-html-findutils install-html-findutils
+ maybe-install-html-findutils:
+ @if findutils
+ maybe-install-html-findutils: install-html-findutils
+ 
+ install-html-findutils: \
+     configure-findutils \
+     html-findutils 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./findutils/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 findutils" ; \
+ 	(cd $(HOST_SUBDIR)/findutils && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif findutils
+ 
  .PHONY: maybe-installcheck-findutils installcheck-findutils
  maybe-installcheck-findutils:
***************
*** 9557,9560 ****
--- 10143,10173 ----
  @endif find
  
+ .PHONY: maybe-install-html-find install-html-find
+ maybe-install-html-find:
+ @if find
+ maybe-install-html-find: install-html-find
+ 
+ install-html-find: \
+     configure-find \
+     html-find 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./find/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 find" ; \
+ 	(cd $(HOST_SUBDIR)/find && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif find
+ 
  .PHONY: maybe-installcheck-find installcheck-find
  maybe-installcheck-find:
***************
*** 9829,9832 ****
--- 10442,10472 ----
  @endif fixincludes
  
+ .PHONY: maybe-install-html-fixincludes install-html-fixincludes
+ maybe-install-html-fixincludes:
+ @if fixincludes
+ maybe-install-html-fixincludes: install-html-fixincludes
+ 
+ install-html-fixincludes: \
+     configure-fixincludes \
+     html-fixincludes 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./fixincludes/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 fixincludes" ; \
+ 	(cd $(HOST_SUBDIR)/fixincludes && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif fixincludes
+ 
  .PHONY: maybe-installcheck-fixincludes installcheck-fixincludes
  maybe-installcheck-fixincludes:
***************
*** 10153,10156 ****
--- 10793,10823 ----
  @endif flex
  
+ .PHONY: maybe-install-html-flex install-html-flex
+ maybe-install-html-flex:
+ @if flex
+ maybe-install-html-flex: install-html-flex
+ 
+ install-html-flex: \
+     configure-flex \
+     html-flex 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./flex/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 flex" ; \
+ 	(cd $(HOST_SUBDIR)/flex && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif flex
+ 
  .PHONY: maybe-installcheck-flex installcheck-flex
  maybe-installcheck-flex:
***************
*** 10842,10845 ****
--- 11509,11538 ----
  @endif gas
  
+ .PHONY: maybe-install-html-gas install-html-gas
+ maybe-install-html-gas:
+ @if gas
+ maybe-install-html-gas: install-html-gas
+ 
+ install-html-gas: \
+     configure-gas \
+     html-gas 
+ 	@[ -f ./gas/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 gas" ; \
+ 	(cd $(HOST_SUBDIR)/gas && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif gas
+ 
  .PHONY: maybe-installcheck-gas installcheck-gas
  maybe-installcheck-gas:
***************
*** 11526,11529 ****
--- 12219,12248 ----
  @endif gcc
  
+ .PHONY: maybe-install-html-gcc install-html-gcc
+ maybe-install-html-gcc:
+ @if gcc
+ maybe-install-html-gcc: install-html-gcc
+ 
+ install-html-gcc: \
+     configure-gcc \
+     html-gcc 
+ 	@[ -f ./gcc/Makefile ] || exit 0; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(HOST_EXPORTS) \
+ 	for flag in $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	echo "Doing install-html in gcc" ; \
+ 	(cd $(HOST_SUBDIR)/gcc && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif gcc
+ 
  .PHONY: maybe-installcheck-gcc installcheck-gcc
  maybe-installcheck-gcc:
***************
*** 11858,11861 ****
--- 12577,12607 ----
  @endif gawk
  
+ .PHONY: maybe-install-html-gawk install-html-gawk
+ maybe-install-html-gawk:
+ @if gawk
+ maybe-install-html-gawk: install-html-gawk
+ 
+ install-html-gawk: \
+     configure-gawk \
+     html-gawk 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./gawk/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 gawk" ; \
+ 	(cd $(HOST_SUBDIR)/gawk && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif gawk
+ 
  .PHONY: maybe-installcheck-gawk installcheck-gawk
  maybe-installcheck-gawk:
***************
*** 12195,12198 ****
--- 12941,12971 ----
  @endif gettext
  
+ .PHONY: maybe-install-html-gettext install-html-gettext
+ maybe-install-html-gettext:
+ @if gettext
+ maybe-install-html-gettext: install-html-gettext
+ 
+ install-html-gettext: \
+     configure-gettext \
+     html-gettext 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./gettext/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 gettext" ; \
+ 	(cd $(HOST_SUBDIR)/gettext && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif gettext
+ 
  .PHONY: maybe-installcheck-gettext installcheck-gettext
  maybe-installcheck-gettext:
***************
*** 12532,12535 ****
--- 13305,13335 ----
  @endif gnuserv
  
+ .PHONY: maybe-install-html-gnuserv install-html-gnuserv
+ maybe-install-html-gnuserv:
+ @if gnuserv
+ maybe-install-html-gnuserv: install-html-gnuserv
+ 
+ install-html-gnuserv: \
+     configure-gnuserv \
+     html-gnuserv 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./gnuserv/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 gnuserv" ; \
+ 	(cd $(HOST_SUBDIR)/gnuserv && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif gnuserv
+ 
  .PHONY: maybe-installcheck-gnuserv installcheck-gnuserv
  maybe-installcheck-gnuserv:
***************
*** 12869,12879 ****
  @endif gprof
  
! .PHONY: maybe-installcheck-gprof installcheck-gprof
! maybe-installcheck-gprof:
  @if gprof
! maybe-installcheck-gprof: installcheck-gprof
  
! installcheck-gprof: \
!     configure-gprof 
  	@: $(MAKE); $(unstage)
  	@[ -f ./gprof/Makefile ] || exit 0; \
--- 13669,13680 ----
  @endif gprof
  
! .PHONY: maybe-install-html-gprof install-html-gprof
! maybe-install-html-gprof:
  @if gprof
! maybe-install-html-gprof: install-html-gprof
  
! install-html-gprof: \
!     configure-gprof \
!     html-gprof 
  	@: $(MAKE); $(unstage)
  	@[ -f ./gprof/Makefile ] || exit 0; \
***************
*** 12884,12888 ****
  	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
  	done; \
! 	echo "Doing installcheck in gprof" ; \
  	(cd $(HOST_SUBDIR)/gprof && \
  	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
--- 13685,13689 ----
  	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
  	done; \
! 	echo "Doing install-html in gprof" ; \
  	(cd $(HOST_SUBDIR)/gprof && \
  	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
***************
*** 12890,12900 ****
  	          "RANLIB=$${RANLIB}" \
  	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
! 	          installcheck) \
  	  || exit 1
  
  @endif gprof
  
! .PHONY: maybe-mostlyclean-gprof mostlyclean-gprof
! maybe-mostlyclean-gprof:
  @if gprof
  maybe-mostlyclean-gprof: mostlyclean-gprof
--- 13691,13727 ----
  	          "RANLIB=$${RANLIB}" \
  	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
! 	          install-html) \
  	  || exit 1
  
  @endif gprof
  
! .PHONY: maybe-installcheck-gprof installcheck-gprof
! maybe-installcheck-gprof:
! @if gprof
! maybe-installcheck-gprof: installcheck-gprof
! 
! installcheck-gprof: \
!     configure-gprof 
! 	@: $(MAKE); $(unstage)
! 	@[ -f ./gprof/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 gprof" ; \
! 	(cd $(HOST_SUBDIR)/gprof && \
! 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
! 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
! 	          "RANLIB=$${RANLIB}" \
! 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
! 	          installcheck) \
! 	  || exit 1
! 
! @endif gprof
! 
! .PHONY: maybe-mostlyclean-gprof mostlyclean-gprof
! maybe-mostlyclean-gprof:
  @if gprof
  maybe-mostlyclean-gprof: mostlyclean-gprof
***************
*** 13206,13209 ****
--- 14033,14063 ----
  @endif gzip
  
+ .PHONY: maybe-install-html-gzip install-html-gzip
+ maybe-install-html-gzip:
+ @if gzip
+ maybe-install-html-gzip: install-html-gzip
+ 
+ install-html-gzip: \
+     configure-gzip \
+     html-gzip 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./gzip/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 gzip" ; \
+ 	(cd $(HOST_SUBDIR)/gzip && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif gzip
+ 
  .PHONY: maybe-installcheck-gzip installcheck-gzip
  maybe-installcheck-gzip:
***************
*** 13543,13546 ****
--- 14397,14427 ----
  @endif hello
  
+ .PHONY: maybe-install-html-hello install-html-hello
+ maybe-install-html-hello:
+ @if hello
+ maybe-install-html-hello: install-html-hello
+ 
+ install-html-hello: \
+     configure-hello \
+     html-hello 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./hello/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 hello" ; \
+ 	(cd $(HOST_SUBDIR)/hello && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif hello
+ 
  .PHONY: maybe-installcheck-hello installcheck-hello
  maybe-installcheck-hello:
***************
*** 13880,13883 ****
--- 14761,14791 ----
  @endif indent
  
+ .PHONY: maybe-install-html-indent install-html-indent
+ maybe-install-html-indent:
+ @if indent
+ maybe-install-html-indent: install-html-indent
+ 
+ install-html-indent: \
+     configure-indent \
+     html-indent 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./indent/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 indent" ; \
+ 	(cd $(HOST_SUBDIR)/indent && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif indent
+ 
  .PHONY: maybe-installcheck-indent installcheck-indent
  maybe-installcheck-indent:
***************
*** 14569,14572 ****
--- 15477,15506 ----
  @endif intl
  
+ .PHONY: maybe-install-html-intl install-html-intl
+ maybe-install-html-intl:
+ @if intl
+ maybe-install-html-intl: install-html-intl
+ 
+ install-html-intl: \
+     configure-intl \
+     html-intl 
+ 	@[ -f ./intl/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 intl" ; \
+ 	(cd $(HOST_SUBDIR)/intl && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif intl
+ 
  .PHONY: maybe-installcheck-intl installcheck-intl
  maybe-installcheck-intl:
***************
*** 14901,14904 ****
--- 15835,15865 ----
  @endif tcl
  
+ .PHONY: maybe-install-html-tcl install-html-tcl
+ maybe-install-html-tcl:
+ @if tcl
+ maybe-install-html-tcl: install-html-tcl
+ 
+ install-html-tcl: \
+     configure-tcl \
+     html-tcl 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./tcl/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 tcl" ; \
+ 	(cd $(HOST_SUBDIR)/tcl && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif tcl
+ 
  .PHONY: maybe-installcheck-tcl installcheck-tcl
  maybe-installcheck-tcl:
***************
*** 15223,15226 ****
--- 16184,16214 ----
  @endif itcl
  
+ .PHONY: maybe-install-html-itcl install-html-itcl
+ maybe-install-html-itcl:
+ @if itcl
+ maybe-install-html-itcl: install-html-itcl
+ 
+ install-html-itcl: \
+     configure-itcl \
+     html-itcl 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./itcl/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 itcl" ; \
+ 	(cd $(HOST_SUBDIR)/itcl && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif itcl
+ 
  .PHONY: maybe-installcheck-itcl installcheck-itcl
  maybe-installcheck-itcl:
***************
*** 15912,15915 ****
--- 16900,16929 ----
  @endif ld
  
+ .PHONY: maybe-install-html-ld install-html-ld
+ maybe-install-html-ld:
+ @if ld
+ maybe-install-html-ld: install-html-ld
+ 
+ install-html-ld: \
+     configure-ld \
+     html-ld 
+ 	@[ -f ./ld/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 ld" ; \
+ 	(cd $(HOST_SUBDIR)/ld && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif ld
+ 
  .PHONY: maybe-installcheck-ld installcheck-ld
  maybe-installcheck-ld:
***************
*** 16596,16599 ****
--- 17610,17639 ----
  @endif libcpp
  
+ .PHONY: maybe-install-html-libcpp install-html-libcpp
+ maybe-install-html-libcpp:
+ @if libcpp
+ maybe-install-html-libcpp: install-html-libcpp
+ 
+ install-html-libcpp: \
+     configure-libcpp \
+     html-libcpp 
+ 	@[ -f ./libcpp/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 libcpp" ; \
+ 	(cd $(HOST_SUBDIR)/libcpp && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif libcpp
+ 
  .PHONY: maybe-installcheck-libcpp installcheck-libcpp
  maybe-installcheck-libcpp:
***************
*** 17280,17283 ****
--- 18320,18349 ----
  @endif libdecnumber
  
+ .PHONY: maybe-install-html-libdecnumber install-html-libdecnumber
+ maybe-install-html-libdecnumber:
+ @if libdecnumber
+ maybe-install-html-libdecnumber: install-html-libdecnumber
+ 
+ install-html-libdecnumber: \
+     configure-libdecnumber \
+     html-libdecnumber 
+ 	@[ -f ./libdecnumber/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 libdecnumber" ; \
+ 	(cd $(HOST_SUBDIR)/libdecnumber && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif libdecnumber
+ 
  .PHONY: maybe-installcheck-libdecnumber installcheck-libdecnumber
  maybe-installcheck-libdecnumber:
***************
*** 17612,17615 ****
--- 18678,18708 ----
  @endif libgui
  
+ .PHONY: maybe-install-html-libgui install-html-libgui
+ maybe-install-html-libgui:
+ @if libgui
+ maybe-install-html-libgui: install-html-libgui
+ 
+ install-html-libgui: \
+     configure-libgui \
+     html-libgui 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./libgui/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 libgui" ; \
+ 	(cd $(HOST_SUBDIR)/libgui && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif libgui
+ 
  .PHONY: maybe-installcheck-libgui installcheck-libgui
  maybe-installcheck-libgui:
***************
*** 18301,18304 ****
--- 19394,19423 ----
  @endif libiberty
  
+ .PHONY: maybe-install-html-libiberty install-html-libiberty
+ maybe-install-html-libiberty:
+ @if libiberty
+ maybe-install-html-libiberty: install-html-libiberty
+ 
+ install-html-libiberty: \
+     configure-libiberty \
+     html-libiberty 
+ 	@[ -f ./libiberty/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 libiberty" ; \
+ 	(cd $(HOST_SUBDIR)/libiberty && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif libiberty
+ 
  .PHONY: maybe-installcheck-libiberty installcheck-libiberty
  maybe-installcheck-libiberty:
***************
*** 18633,18636 ****
--- 19752,19782 ----
  @endif libtool
  
+ .PHONY: maybe-install-html-libtool install-html-libtool
+ maybe-install-html-libtool:
+ @if libtool
+ maybe-install-html-libtool: install-html-libtool
+ 
+ install-html-libtool: \
+     configure-libtool \
+     html-libtool 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./libtool/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 libtool" ; \
+ 	(cd $(HOST_SUBDIR)/libtool && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif libtool
+ 
  .PHONY: maybe-installcheck-libtool installcheck-libtool
  maybe-installcheck-libtool:
***************
*** 18970,18973 ****
--- 20116,20146 ----
  @endif m4
  
+ .PHONY: maybe-install-html-m4 install-html-m4
+ maybe-install-html-m4:
+ @if m4
+ maybe-install-html-m4: install-html-m4
+ 
+ install-html-m4: \
+     configure-m4 \
+     html-m4 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./m4/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 m4" ; \
+ 	(cd $(HOST_SUBDIR)/m4 && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif m4
+ 
  .PHONY: maybe-installcheck-m4 installcheck-m4
  maybe-installcheck-m4:
***************
*** 19307,19310 ****
--- 20480,20510 ----
  @endif make
  
+ .PHONY: maybe-install-html-make install-html-make
+ maybe-install-html-make:
+ @if make
+ maybe-install-html-make: install-html-make
+ 
+ install-html-make: \
+     configure-make \
+     html-make 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./make/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 make" ; \
+ 	(cd $(HOST_SUBDIR)/make && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif make
+ 
  .PHONY: maybe-installcheck-make installcheck-make
  maybe-installcheck-make:
***************
*** 19638,19641 ****
--- 20838,20868 ----
  @endif mmalloc
  
+ .PHONY: maybe-install-html-mmalloc install-html-mmalloc
+ maybe-install-html-mmalloc:
+ @if mmalloc
+ maybe-install-html-mmalloc: install-html-mmalloc
+ 
+ install-html-mmalloc: \
+     configure-mmalloc \
+     html-mmalloc 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./mmalloc/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 mmalloc" ; \
+ 	(cd $(HOST_SUBDIR)/mmalloc && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif mmalloc
+ 
  .PHONY: maybe-installcheck-mmalloc installcheck-mmalloc
  maybe-installcheck-mmalloc:
***************
*** 19975,19978 ****
--- 21202,21232 ----
  @endif patch
  
+ .PHONY: maybe-install-html-patch install-html-patch
+ maybe-install-html-patch:
+ @if patch
+ maybe-install-html-patch: install-html-patch
+ 
+ install-html-patch: \
+     configure-patch \
+     html-patch 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./patch/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 patch" ; \
+ 	(cd $(HOST_SUBDIR)/patch && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif patch
+ 
  .PHONY: maybe-installcheck-patch installcheck-patch
  maybe-installcheck-patch:
***************
*** 20312,20315 ****
--- 21566,21596 ----
  @endif perl
  
+ .PHONY: maybe-install-html-perl install-html-perl
+ maybe-install-html-perl:
+ @if perl
+ maybe-install-html-perl: install-html-perl
+ 
+ install-html-perl: \
+     configure-perl \
+     html-perl 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./perl/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 perl" ; \
+ 	(cd $(HOST_SUBDIR)/perl && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif perl
+ 
  .PHONY: maybe-installcheck-perl installcheck-perl
  maybe-installcheck-perl:
***************
*** 20649,20652 ****
--- 21930,21960 ----
  @endif prms
  
+ .PHONY: maybe-install-html-prms install-html-prms
+ maybe-install-html-prms:
+ @if prms
+ maybe-install-html-prms: install-html-prms
+ 
+ install-html-prms: \
+     configure-prms \
+     html-prms 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./prms/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 prms" ; \
+ 	(cd $(HOST_SUBDIR)/prms && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif prms
+ 
  .PHONY: maybe-installcheck-prms installcheck-prms
  maybe-installcheck-prms:
***************
*** 20986,20989 ****
--- 22294,22324 ----
  @endif rcs
  
+ .PHONY: maybe-install-html-rcs install-html-rcs
+ maybe-install-html-rcs:
+ @if rcs
+ maybe-install-html-rcs: install-html-rcs
+ 
+ install-html-rcs: \
+     configure-rcs \
+     html-rcs 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./rcs/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 rcs" ; \
+ 	(cd $(HOST_SUBDIR)/rcs && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif rcs
+ 
  .PHONY: maybe-installcheck-rcs installcheck-rcs
  maybe-installcheck-rcs:
***************
*** 21323,21326 ****
--- 22658,22688 ----
  @endif readline
  
+ .PHONY: maybe-install-html-readline install-html-readline
+ maybe-install-html-readline:
+ @if readline
+ maybe-install-html-readline: install-html-readline
+ 
+ install-html-readline: \
+     configure-readline \
+     html-readline 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./readline/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 readline" ; \
+ 	(cd $(HOST_SUBDIR)/readline && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif readline
+ 
  .PHONY: maybe-installcheck-readline installcheck-readline
  maybe-installcheck-readline:
***************
*** 21648,21651 ****
--- 23010,23040 ----
  @endif release
  
+ .PHONY: maybe-install-html-release install-html-release
+ maybe-install-html-release:
+ @if release
+ maybe-install-html-release: install-html-release
+ 
+ install-html-release: \
+     configure-release \
+     html-release 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./release/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 release" ; \
+ 	(cd $(HOST_SUBDIR)/release && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif release
+ 
  .PHONY: maybe-installcheck-release installcheck-release
  maybe-installcheck-release:
***************
*** 21985,21988 ****
--- 23374,23404 ----
  @endif recode
  
+ .PHONY: maybe-install-html-recode install-html-recode
+ maybe-install-html-recode:
+ @if recode
+ maybe-install-html-recode: install-html-recode
+ 
+ install-html-recode: \
+     configure-recode \
+     html-recode 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./recode/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 recode" ; \
+ 	(cd $(HOST_SUBDIR)/recode && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif recode
+ 
  .PHONY: maybe-installcheck-recode installcheck-recode
  maybe-installcheck-recode:
***************
*** 22322,22325 ****
--- 23738,23768 ----
  @endif sed
  
+ .PHONY: maybe-install-html-sed install-html-sed
+ maybe-install-html-sed:
+ @if sed
+ maybe-install-html-sed: install-html-sed
+ 
+ install-html-sed: \
+     configure-sed \
+     html-sed 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./sed/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 sed" ; \
+ 	(cd $(HOST_SUBDIR)/sed && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif sed
+ 
  .PHONY: maybe-installcheck-sed installcheck-sed
  maybe-installcheck-sed:
***************
*** 22659,22662 ****
--- 24102,24132 ----
  @endif send-pr
  
+ .PHONY: maybe-install-html-send-pr install-html-send-pr
+ maybe-install-html-send-pr:
+ @if send-pr
+ maybe-install-html-send-pr: install-html-send-pr
+ 
+ install-html-send-pr: \
+     configure-send-pr \
+     html-send-pr 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./send-pr/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 send-pr" ; \
+ 	(cd $(HOST_SUBDIR)/send-pr && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif send-pr
+ 
  .PHONY: maybe-installcheck-send-pr installcheck-send-pr
  maybe-installcheck-send-pr:
***************
*** 22996,23006 ****
  @endif shellutils
  
! .PHONY: maybe-installcheck-shellutils installcheck-shellutils
! maybe-installcheck-shellutils:
  @if shellutils
! maybe-installcheck-shellutils: installcheck-shellutils
  
! installcheck-shellutils: \
!     configure-shellutils 
  	@: $(MAKE); $(unstage)
  	@[ -f ./shellutils/Makefile ] || exit 0; \
--- 24466,24477 ----
  @endif shellutils
  
! .PHONY: maybe-install-html-shellutils install-html-shellutils
! maybe-install-html-shellutils:
  @if shellutils
! maybe-install-html-shellutils: install-html-shellutils
  
! install-html-shellutils: \
!     configure-shellutils \
!     html-shellutils 
  	@: $(MAKE); $(unstage)
  	@[ -f ./shellutils/Makefile ] || exit 0; \
***************
*** 23011,23015 ****
  	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
  	done; \
! 	echo "Doing installcheck in shellutils" ; \
  	(cd $(HOST_SUBDIR)/shellutils && \
  	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
--- 24482,24486 ----
  	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
  	done; \
! 	echo "Doing install-html in shellutils" ; \
  	(cd $(HOST_SUBDIR)/shellutils && \
  	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
***************
*** 23017,23026 ****
  	          "RANLIB=$${RANLIB}" \
  	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
! 	          installcheck) \
  	  || exit 1
  
  @endif shellutils
  
! .PHONY: maybe-mostlyclean-shellutils mostlyclean-shellutils
  maybe-mostlyclean-shellutils:
  @if shellutils
--- 24488,24523 ----
  	          "RANLIB=$${RANLIB}" \
  	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
! 	          install-html) \
  	  || exit 1
  
  @endif shellutils
  
! .PHONY: maybe-installcheck-shellutils installcheck-shellutils
! maybe-installcheck-shellutils:
! @if shellutils
! maybe-installcheck-shellutils: installcheck-shellutils
! 
! installcheck-shellutils: \
!     configure-shellutils 
! 	@: $(MAKE); $(unstage)
! 	@[ -f ./shellutils/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 shellutils" ; \
! 	(cd $(HOST_SUBDIR)/shellutils && \
! 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
! 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
! 	          "RANLIB=$${RANLIB}" \
! 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
! 	          installcheck) \
! 	  || exit 1
! 
! @endif shellutils
! 
! .PHONY: maybe-mostlyclean-shellutils mostlyclean-shellutils
  maybe-mostlyclean-shellutils:
  @if shellutils
***************
*** 23333,23336 ****
--- 24830,24860 ----
  @endif sid
  
+ .PHONY: maybe-install-html-sid install-html-sid
+ maybe-install-html-sid:
+ @if sid
+ maybe-install-html-sid: install-html-sid
+ 
+ install-html-sid: \
+     configure-sid \
+     html-sid 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./sid/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 sid" ; \
+ 	(cd $(HOST_SUBDIR)/sid && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif sid
+ 
  .PHONY: maybe-installcheck-sid installcheck-sid
  maybe-installcheck-sid:
***************
*** 23670,23673 ****
--- 25194,25224 ----
  @endif sim
  
+ .PHONY: maybe-install-html-sim install-html-sim
+ maybe-install-html-sim:
+ @if sim
+ maybe-install-html-sim: install-html-sim
+ 
+ install-html-sim: \
+     configure-sim \
+     html-sim 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./sim/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 sim" ; \
+ 	(cd $(HOST_SUBDIR)/sim && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif sim
+ 
  .PHONY: maybe-installcheck-sim installcheck-sim
  maybe-installcheck-sim:
***************
*** 24007,24010 ****
--- 25558,25588 ----
  @endif tar
  
+ .PHONY: maybe-install-html-tar install-html-tar
+ maybe-install-html-tar:
+ @if tar
+ maybe-install-html-tar: install-html-tar
+ 
+ install-html-tar: \
+     configure-tar \
+     html-tar 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./tar/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 tar" ; \
+ 	(cd $(HOST_SUBDIR)/tar && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif tar
+ 
  .PHONY: maybe-installcheck-tar installcheck-tar
  maybe-installcheck-tar:
***************
*** 24338,24341 ****
--- 25916,25946 ----
  @endif texinfo
  
+ .PHONY: maybe-install-html-texinfo install-html-texinfo
+ maybe-install-html-texinfo:
+ @if texinfo
+ maybe-install-html-texinfo: install-html-texinfo
+ 
+ install-html-texinfo: \
+     configure-texinfo \
+     html-texinfo 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./texinfo/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 texinfo" ; \
+ 	(cd $(HOST_SUBDIR)/texinfo && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif texinfo
+ 
  .PHONY: maybe-installcheck-texinfo installcheck-texinfo
  maybe-installcheck-texinfo:
***************
*** 24675,24678 ****
--- 26280,26310 ----
  @endif textutils
  
+ .PHONY: maybe-install-html-textutils install-html-textutils
+ maybe-install-html-textutils:
+ @if textutils
+ maybe-install-html-textutils: install-html-textutils
+ 
+ install-html-textutils: \
+     configure-textutils \
+     html-textutils 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./textutils/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 textutils" ; \
+ 	(cd $(HOST_SUBDIR)/textutils && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif textutils
+ 
  .PHONY: maybe-installcheck-textutils installcheck-textutils
  maybe-installcheck-textutils:
***************
*** 25012,25015 ****
--- 26644,26674 ----
  @endif time
  
+ .PHONY: maybe-install-html-time install-html-time
+ maybe-install-html-time:
+ @if time
+ maybe-install-html-time: install-html-time
+ 
+ install-html-time: \
+     configure-time \
+     html-time 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./time/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 time" ; \
+ 	(cd $(HOST_SUBDIR)/time && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif time
+ 
  .PHONY: maybe-installcheck-time installcheck-time
  maybe-installcheck-time:
***************
*** 25349,25352 ****
--- 27008,27038 ----
  @endif uudecode
  
+ .PHONY: maybe-install-html-uudecode install-html-uudecode
+ maybe-install-html-uudecode:
+ @if uudecode
+ maybe-install-html-uudecode: install-html-uudecode
+ 
+ install-html-uudecode: \
+     configure-uudecode \
+     html-uudecode 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./uudecode/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 uudecode" ; \
+ 	(cd $(HOST_SUBDIR)/uudecode && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif uudecode
+ 
  .PHONY: maybe-installcheck-uudecode installcheck-uudecode
  maybe-installcheck-uudecode:
***************
*** 25686,25689 ****
--- 27372,27402 ----
  @endif wdiff
  
+ .PHONY: maybe-install-html-wdiff install-html-wdiff
+ maybe-install-html-wdiff:
+ @if wdiff
+ maybe-install-html-wdiff: install-html-wdiff
+ 
+ install-html-wdiff: \
+     configure-wdiff \
+     html-wdiff 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./wdiff/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 wdiff" ; \
+ 	(cd $(HOST_SUBDIR)/wdiff && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif wdiff
+ 
  .PHONY: maybe-installcheck-wdiff installcheck-wdiff
  maybe-installcheck-wdiff:
***************
*** 26026,26029 ****
--- 27739,27769 ----
  @endif zip
  
+ .PHONY: maybe-install-html-zip install-html-zip
+ maybe-install-html-zip:
+ @if zip
+ maybe-install-html-zip: install-html-zip
+ 
+ install-html-zip: \
+     configure-zip \
+     html-zip 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./zip/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 zip" ; \
+ 	(cd $(HOST_SUBDIR)/zip && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif zip
+ 
  .PHONY: maybe-installcheck-zip installcheck-zip
  maybe-installcheck-zip:
***************
*** 26703,26706 ****
--- 28443,28472 ----
  @endif zlib
  
+ .PHONY: maybe-install-html-zlib install-html-zlib
+ maybe-install-html-zlib:
+ @if zlib
+ maybe-install-html-zlib: install-html-zlib
+ 
+ install-html-zlib: \
+     configure-zlib \
+     html-zlib 
+ 	@[ -f ./zlib/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 zlib" ; \
+ 	(cd $(HOST_SUBDIR)/zlib && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif zlib
+ 
  .PHONY: maybe-installcheck-zlib installcheck-zlib
  maybe-installcheck-zlib:
***************
*** 27035,27038 ****
--- 28801,28831 ----
  @endif gdb
  
+ .PHONY: maybe-install-html-gdb install-html-gdb
+ maybe-install-html-gdb:
+ @if gdb
+ maybe-install-html-gdb: install-html-gdb
+ 
+ install-html-gdb: \
+     configure-gdb \
+     html-gdb 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./gdb/Makefile ] || exit 0; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(HOST_EXPORTS) \
+ 	for flag in $(EXTRA_HOST_FLAGS) $(X11_FLAGS_TO_PASS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	echo "Doing install-html in gdb" ; \
+ 	(cd $(HOST_SUBDIR)/gdb && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif gdb
+ 
  .PHONY: maybe-installcheck-gdb installcheck-gdb
  maybe-installcheck-gdb:
***************
*** 27372,27375 ****
--- 29165,29195 ----
  @endif expect
  
+ .PHONY: maybe-install-html-expect install-html-expect
+ maybe-install-html-expect:
+ @if expect
+ maybe-install-html-expect: install-html-expect
+ 
+ install-html-expect: \
+     configure-expect \
+     html-expect 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./expect/Makefile ] || exit 0; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(HOST_EXPORTS) \
+ 	for flag in $(EXTRA_HOST_FLAGS) $(X11_FLAGS_TO_PASS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	echo "Doing install-html in expect" ; \
+ 	(cd $(HOST_SUBDIR)/expect && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif expect
+ 
  .PHONY: maybe-installcheck-expect installcheck-expect
  maybe-installcheck-expect:
***************
*** 27709,27712 ****
--- 29529,29559 ----
  @endif guile
  
+ .PHONY: maybe-install-html-guile install-html-guile
+ maybe-install-html-guile:
+ @if guile
+ maybe-install-html-guile: install-html-guile
+ 
+ install-html-guile: \
+     configure-guile \
+     html-guile 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./guile/Makefile ] || exit 0; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(HOST_EXPORTS) \
+ 	for flag in $(EXTRA_HOST_FLAGS) $(X11_FLAGS_TO_PASS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	echo "Doing install-html in guile" ; \
+ 	(cd $(HOST_SUBDIR)/guile && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif guile
+ 
  .PHONY: maybe-installcheck-guile installcheck-guile
  maybe-installcheck-guile:
***************
*** 28046,28049 ****
--- 29893,29923 ----
  @endif tk
  
+ .PHONY: maybe-install-html-tk install-html-tk
+ maybe-install-html-tk:
+ @if tk
+ maybe-install-html-tk: install-html-tk
+ 
+ install-html-tk: \
+     configure-tk \
+     html-tk 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./tk/Makefile ] || exit 0; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(HOST_EXPORTS) \
+ 	for flag in $(EXTRA_HOST_FLAGS) $(X11_FLAGS_TO_PASS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	echo "Doing install-html in tk" ; \
+ 	(cd $(HOST_SUBDIR)/tk && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif tk
+ 
  .PHONY: maybe-installcheck-tk installcheck-tk
  maybe-installcheck-tk:
***************
*** 28377,28380 ****
--- 30251,30281 ----
  @endif libtermcap
  
+ .PHONY: maybe-install-html-libtermcap install-html-libtermcap
+ maybe-install-html-libtermcap:
+ @if libtermcap
+ maybe-install-html-libtermcap: install-html-libtermcap
+ 
+ install-html-libtermcap: \
+     configure-libtermcap \
+     html-libtermcap 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./libtermcap/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 libtermcap" ; \
+ 	(cd $(HOST_SUBDIR)/libtermcap && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif libtermcap
+ 
  .PHONY: maybe-installcheck-libtermcap installcheck-libtermcap
  maybe-installcheck-libtermcap:
***************
*** 28648,28651 ****
--- 30549,30579 ----
  @endif utils
  
+ .PHONY: maybe-install-html-utils install-html-utils
+ maybe-install-html-utils:
+ @if utils
+ maybe-install-html-utils: install-html-utils
+ 
+ install-html-utils: \
+     configure-utils \
+     html-utils 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./utils/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 utils" ; \
+ 	(cd $(HOST_SUBDIR)/utils && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif utils
+ 
  .PHONY: maybe-installcheck-utils installcheck-utils
  maybe-installcheck-utils:
***************
*** 28985,28988 ****
--- 30913,30943 ----
  @endif gnattools
  
+ .PHONY: maybe-install-html-gnattools install-html-gnattools
+ maybe-install-html-gnattools:
+ @if gnattools
+ maybe-install-html-gnattools: install-html-gnattools
+ 
+ install-html-gnattools: \
+     configure-gnattools \
+     html-gnattools 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f ./gnattools/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 gnattools" ; \
+ 	(cd $(HOST_SUBDIR)/gnattools && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	          install-html) \
+ 	  || exit 1
+ 
+ @endif gnattools
+ 
  .PHONY: maybe-installcheck-gnattools installcheck-gnattools
  maybe-installcheck-gnattools:
***************
*** 29344,29347 ****
--- 31299,31329 ----
  @endif target-libstdc++-v3
  
+ .PHONY: maybe-install-html-target-libstdc++-v3 install-html-target-libstdc++-v3
+ maybe-install-html-target-libstdc++-v3:
+ @if target-libstdc++-v3
+ maybe-install-html-target-libstdc++-v3: install-html-target-libstdc++-v3
+ 
+ install-html-target-libstdc++-v3: \
+     configure-target-libstdc++-v3 \
+     html-target-libstdc++-v3 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0 ; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(RAW_CXX_TARGET_EXPORTS) \
+ 	echo "Doing install-html in $(TARGET_SUBDIR)/libstdc++-v3" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-libstdc++-v3
+ 
  .PHONY: maybe-installcheck-target-libstdc++-v3 installcheck-target-libstdc++-v3
  maybe-installcheck-target-libstdc++-v3:
***************
*** 29698,29701 ****
--- 31680,31710 ----
  @endif target-libmudflap
  
+ .PHONY: maybe-install-html-target-libmudflap install-html-target-libmudflap
+ maybe-install-html-target-libmudflap:
+ @if target-libmudflap
+ maybe-install-html-target-libmudflap: install-html-target-libmudflap
+ 
+ install-html-target-libmudflap: \
+     configure-target-libmudflap \
+     html-target-libmudflap 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libmudflap/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)/libmudflap" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libmudflap && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-libmudflap
+ 
  .PHONY: maybe-installcheck-target-libmudflap installcheck-target-libmudflap
  maybe-installcheck-target-libmudflap:
***************
*** 30052,30055 ****
--- 32061,32091 ----
  @endif target-libssp
  
+ .PHONY: maybe-install-html-target-libssp install-html-target-libssp
+ maybe-install-html-target-libssp:
+ @if target-libssp
+ maybe-install-html-target-libssp: install-html-target-libssp
+ 
+ install-html-target-libssp: \
+     configure-target-libssp \
+     html-target-libssp 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libssp/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)/libssp" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libssp && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-libssp
+ 
  .PHONY: maybe-installcheck-target-libssp installcheck-target-libssp
  maybe-installcheck-target-libssp:
***************
*** 30182,30185 ****
--- 32218,32602 ----
  
  
+ .PHONY: configure-target-libgcc-math maybe-configure-target-libgcc-math
+ maybe-configure-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-configure-target-libgcc-math: configure-target-libgcc-math
+ configure-target-libgcc-math: 
+ 	@: $(MAKE); $(unstage)
+ 	@r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	echo "Checking multilib configuration for libgcc-math..."; \
+ 	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc-math ; \
+ 	$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc-math/multilib.tmp 2> /dev/null ; \
+ 	if test -r $(TARGET_SUBDIR)/libgcc-math/multilib.out; then \
+ 	  if cmp -s $(TARGET_SUBDIR)/libgcc-math/multilib.tmp $(TARGET_SUBDIR)/libgcc-math/multilib.out; then \
+ 	    rm -f $(TARGET_SUBDIR)/libgcc-math/multilib.tmp; \
+ 	  else \
+ 	    rm -f $(TARGET_SUBDIR)/libgcc-math/Makefile; \
+ 	    mv $(TARGET_SUBDIR)/libgcc-math/multilib.tmp $(TARGET_SUBDIR)/libgcc-math/multilib.out; \
+ 	  fi; \
+ 	else \
+ 	  mv $(TARGET_SUBDIR)/libgcc-math/multilib.tmp $(TARGET_SUBDIR)/libgcc-math/multilib.out; \
+ 	fi; \
+ 	test ! -f $(TARGET_SUBDIR)/libgcc-math/Makefile || exit 0; \
+ 	$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc-math ; \
+ 	$(NORMAL_TARGET_EXPORTS) \
+ 	echo Configuring in $(TARGET_SUBDIR)/libgcc-math; \
+ 	cd "$(TARGET_SUBDIR)/libgcc-math" || exit 1; \
+ 	case $(srcdir) in \
+ 	  /* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
+ 	  *) topdir=`echo $(TARGET_SUBDIR)/libgcc-math/ | \
+ 		sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
+ 	esac; \
+ 	srcdiroption="--srcdir=$${topdir}/libgcc-math"; \
+ 	libsrcdir="$$s/libgcc-math"; \
+ 	rm -f no-such-file || : ; \
+ 	CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
+ 	  $(TARGET_CONFIGARGS) $${srcdiroption}  \
+ 	  || exit 1
+ @endif target-libgcc-math
+ 
+ 
+ 
+ 
+ 
+ .PHONY: all-target-libgcc-math maybe-all-target-libgcc-math
+ maybe-all-target-libgcc-math:
+ @if target-libgcc-math
+ TARGET-target-libgcc-math=all
+ maybe-all-target-libgcc-math: all-target-libgcc-math
+ all-target-libgcc-math: configure-target-libgcc-math
+ 	@: $(MAKE); $(unstage)
+ 	@r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(NORMAL_TARGET_EXPORTS) \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(TARGET_FLAGS_TO_PASS)  $(TARGET-target-libgcc-math))
+ @endif target-libgcc-math
+ 
+ 
+ 
+ 
+ 
+ .PHONY: check-target-libgcc-math maybe-check-target-libgcc-math
+ maybe-check-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-check-target-libgcc-math: check-target-libgcc-math
+ 
+ check-target-libgcc-math:
+ 	@: $(MAKE); $(unstage)
+ 	@r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(NORMAL_TARGET_EXPORTS) \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(TARGET_FLAGS_TO_PASS)   check)
+ 
+ @endif target-libgcc-math
+ 
+ .PHONY: install-target-libgcc-math maybe-install-target-libgcc-math
+ maybe-install-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-install-target-libgcc-math: install-target-libgcc-math
+ 
+ install-target-libgcc-math: installdirs
+ 	@: $(MAKE); $(unstage)
+ 	@r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(NORMAL_TARGET_EXPORTS) \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(TARGET_FLAGS_TO_PASS)  install)
+ 
+ @endif target-libgcc-math
+ 
+ # Other targets (info, dvi, etc.)
+ 
+ .PHONY: maybe-info-target-libgcc-math info-target-libgcc-math
+ maybe-info-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-info-target-libgcc-math: info-target-libgcc-math
+ 
+ info-target-libgcc-math: \
+     configure-target-libgcc-math 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgcc-math/Makefile ] || exit 0 ; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(NORMAL_TARGET_EXPORTS) \
+ 	echo "Doing info in $(TARGET_SUBDIR)/libgcc-math" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           info) \
+ 	  || exit 1
+ 
+ @endif target-libgcc-math
+ 
+ .PHONY: maybe-dvi-target-libgcc-math dvi-target-libgcc-math
+ maybe-dvi-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-dvi-target-libgcc-math: dvi-target-libgcc-math
+ 
+ dvi-target-libgcc-math: \
+     configure-target-libgcc-math 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgcc-math/Makefile ] || exit 0 ; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(NORMAL_TARGET_EXPORTS) \
+ 	echo "Doing dvi in $(TARGET_SUBDIR)/libgcc-math" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           dvi) \
+ 	  || exit 1
+ 
+ @endif target-libgcc-math
+ 
+ .PHONY: maybe-html-target-libgcc-math html-target-libgcc-math
+ maybe-html-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-html-target-libgcc-math: html-target-libgcc-math
+ 
+ html-target-libgcc-math: \
+     configure-target-libgcc-math 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgcc-math/Makefile ] || exit 0 ; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(NORMAL_TARGET_EXPORTS) \
+ 	echo "Doing html in $(TARGET_SUBDIR)/libgcc-math" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           html) \
+ 	  || exit 1
+ 
+ @endif target-libgcc-math
+ 
+ .PHONY: maybe-TAGS-target-libgcc-math TAGS-target-libgcc-math
+ maybe-TAGS-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-TAGS-target-libgcc-math: TAGS-target-libgcc-math
+ 
+ TAGS-target-libgcc-math: \
+     configure-target-libgcc-math 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgcc-math/Makefile ] || exit 0 ; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(NORMAL_TARGET_EXPORTS) \
+ 	echo "Doing TAGS in $(TARGET_SUBDIR)/libgcc-math" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           TAGS) \
+ 	  || exit 1
+ 
+ @endif target-libgcc-math
+ 
+ .PHONY: maybe-install-info-target-libgcc-math install-info-target-libgcc-math
+ maybe-install-info-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-install-info-target-libgcc-math: install-info-target-libgcc-math
+ 
+ install-info-target-libgcc-math: \
+     configure-target-libgcc-math \
+     info-target-libgcc-math 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgcc-math/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)/libgcc-math" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-info) \
+ 	  || exit 1
+ 
+ @endif target-libgcc-math
+ 
+ .PHONY: maybe-install-html-target-libgcc-math install-html-target-libgcc-math
+ maybe-install-html-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-install-html-target-libgcc-math: install-html-target-libgcc-math
+ 
+ install-html-target-libgcc-math: \
+     configure-target-libgcc-math \
+     html-target-libgcc-math 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgcc-math/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)/libgcc-math" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-libgcc-math
+ 
+ .PHONY: maybe-installcheck-target-libgcc-math installcheck-target-libgcc-math
+ maybe-installcheck-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-installcheck-target-libgcc-math: installcheck-target-libgcc-math
+ 
+ installcheck-target-libgcc-math: \
+     configure-target-libgcc-math 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgcc-math/Makefile ] || exit 0 ; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(NORMAL_TARGET_EXPORTS) \
+ 	echo "Doing installcheck in $(TARGET_SUBDIR)/libgcc-math" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           installcheck) \
+ 	  || exit 1
+ 
+ @endif target-libgcc-math
+ 
+ .PHONY: maybe-mostlyclean-target-libgcc-math mostlyclean-target-libgcc-math
+ maybe-mostlyclean-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-mostlyclean-target-libgcc-math: mostlyclean-target-libgcc-math
+ 
+ mostlyclean-target-libgcc-math: 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgcc-math/Makefile ] || exit 0 ; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(NORMAL_TARGET_EXPORTS) \
+ 	echo "Doing mostlyclean in $(TARGET_SUBDIR)/libgcc-math" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           mostlyclean) \
+ 	  || exit 1
+ 
+ @endif target-libgcc-math
+ 
+ .PHONY: maybe-clean-target-libgcc-math clean-target-libgcc-math
+ maybe-clean-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-clean-target-libgcc-math: clean-target-libgcc-math
+ 
+ clean-target-libgcc-math: 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgcc-math/Makefile ] || exit 0 ; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(NORMAL_TARGET_EXPORTS) \
+ 	echo "Doing clean in $(TARGET_SUBDIR)/libgcc-math" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           clean) \
+ 	  || exit 1
+ 
+ @endif target-libgcc-math
+ 
+ .PHONY: maybe-distclean-target-libgcc-math distclean-target-libgcc-math
+ maybe-distclean-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-distclean-target-libgcc-math: distclean-target-libgcc-math
+ 
+ distclean-target-libgcc-math: 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgcc-math/Makefile ] || exit 0 ; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(NORMAL_TARGET_EXPORTS) \
+ 	echo "Doing distclean in $(TARGET_SUBDIR)/libgcc-math" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           distclean) \
+ 	  || exit 1
+ 
+ @endif target-libgcc-math
+ 
+ .PHONY: maybe-maintainer-clean-target-libgcc-math maintainer-clean-target-libgcc-math
+ maybe-maintainer-clean-target-libgcc-math:
+ @if target-libgcc-math
+ maybe-maintainer-clean-target-libgcc-math: maintainer-clean-target-libgcc-math
+ 
+ maintainer-clean-target-libgcc-math: 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgcc-math/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)/libgcc-math" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgcc-math && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           maintainer-clean) \
+ 	  || exit 1
+ 
+ @endif target-libgcc-math
+ 
+ 
+ 
+ 
+ 
  .PHONY: configure-target-newlib maybe-configure-target-newlib
  maybe-configure-target-newlib:
***************
*** 30406,30409 ****
--- 32823,32853 ----
  @endif target-newlib
  
+ .PHONY: maybe-install-html-target-newlib install-html-target-newlib
+ maybe-install-html-target-newlib:
+ @if target-newlib
+ maybe-install-html-target-newlib: install-html-target-newlib
+ 
+ install-html-target-newlib: \
+     configure-target-newlib \
+     html-target-newlib 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/newlib/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)/newlib" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/newlib && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-newlib
+ 
  .PHONY: maybe-installcheck-target-newlib installcheck-target-newlib
  maybe-installcheck-target-newlib:
***************
*** 30760,30763 ****
--- 33204,33234 ----
  @endif target-libgfortran
  
+ .PHONY: maybe-install-html-target-libgfortran install-html-target-libgfortran
+ maybe-install-html-target-libgfortran:
+ @if target-libgfortran
+ maybe-install-html-target-libgfortran: install-html-target-libgfortran
+ 
+ install-html-target-libgfortran: \
+     configure-target-libgfortran \
+     html-target-libgfortran 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgfortran/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)/libgfortran" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgfortran && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-libgfortran
+ 
  .PHONY: maybe-installcheck-target-libgfortran installcheck-target-libgfortran
  maybe-installcheck-target-libgfortran:
***************
*** 31114,31117 ****
--- 33585,33615 ----
  @endif target-libobjc
  
+ .PHONY: maybe-install-html-target-libobjc install-html-target-libobjc
+ maybe-install-html-target-libobjc:
+ @if target-libobjc
+ maybe-install-html-target-libobjc: install-html-target-libobjc
+ 
+ install-html-target-libobjc: \
+     configure-target-libobjc \
+     html-target-libobjc 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libobjc/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)/libobjc" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libobjc && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-libobjc
+ 
  .PHONY: maybe-installcheck-target-libobjc installcheck-target-libobjc
  maybe-installcheck-target-libobjc:
***************
*** 31463,31466 ****
--- 33961,33991 ----
  @endif target-libtermcap
  
+ .PHONY: maybe-install-html-target-libtermcap install-html-target-libtermcap
+ maybe-install-html-target-libtermcap:
+ @if target-libtermcap
+ maybe-install-html-target-libtermcap: install-html-target-libtermcap
+ 
+ install-html-target-libtermcap: \
+     configure-target-libtermcap \
+     html-target-libtermcap 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libtermcap/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)/libtermcap" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libtermcap && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-libtermcap
+ 
  .PHONY: maybe-installcheck-target-libtermcap installcheck-target-libtermcap
  maybe-installcheck-target-libtermcap:
***************
*** 31757,31760 ****
--- 34282,34312 ----
  @endif target-winsup
  
+ .PHONY: maybe-install-html-target-winsup install-html-target-winsup
+ maybe-install-html-target-winsup:
+ @if target-winsup
+ maybe-install-html-target-winsup: install-html-target-winsup
+ 
+ install-html-target-winsup: \
+     configure-target-winsup \
+     html-target-winsup 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/winsup/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)/winsup" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/winsup && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-winsup
+ 
  .PHONY: maybe-installcheck-target-winsup installcheck-target-winsup
  maybe-installcheck-target-winsup:
***************
*** 32106,32109 ****
--- 34658,34688 ----
  @endif target-libgloss
  
+ .PHONY: maybe-install-html-target-libgloss install-html-target-libgloss
+ maybe-install-html-target-libgloss:
+ @if target-libgloss
+ maybe-install-html-target-libgloss: install-html-target-libgloss
+ 
+ install-html-target-libgloss: \
+     configure-target-libgloss \
+     html-target-libgloss 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgloss/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)/libgloss" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgloss && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-libgloss
+ 
  .PHONY: maybe-installcheck-target-libgloss installcheck-target-libgloss
  maybe-installcheck-target-libgloss:
***************
*** 32460,32463 ****
--- 35039,35069 ----
  @endif target-libiberty
  
+ .PHONY: maybe-install-html-target-libiberty install-html-target-libiberty
+ maybe-install-html-target-libiberty:
+ @if target-libiberty
+ maybe-install-html-target-libiberty: install-html-target-libiberty
+ 
+ install-html-target-libiberty: \
+     configure-target-libiberty \
+     html-target-libiberty 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libiberty/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)/libiberty" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libiberty && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-libiberty
+ 
  .PHONY: maybe-installcheck-target-libiberty installcheck-target-libiberty
  maybe-installcheck-target-libiberty:
***************
*** 32814,32817 ****
--- 35420,35450 ----
  @endif target-gperf
  
+ .PHONY: maybe-install-html-target-gperf install-html-target-gperf
+ maybe-install-html-target-gperf:
+ @if target-gperf
+ maybe-install-html-target-gperf: install-html-target-gperf
+ 
+ install-html-target-gperf: \
+     configure-target-gperf \
+     html-target-gperf 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/gperf/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)/gperf" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/gperf && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-gperf
+ 
  .PHONY: maybe-installcheck-target-gperf installcheck-target-gperf
  maybe-installcheck-target-gperf:
***************
*** 33158,33161 ****
--- 35791,35821 ----
  @endif target-examples
  
+ .PHONY: maybe-install-html-target-examples install-html-target-examples
+ maybe-install-html-target-examples:
+ @if target-examples
+ maybe-install-html-target-examples: install-html-target-examples
+ 
+ install-html-target-examples: \
+     configure-target-examples \
+     html-target-examples 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/examples/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)/examples" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/examples && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-examples
+ 
  .PHONY: maybe-installcheck-target-examples installcheck-target-examples
  maybe-installcheck-target-examples:
***************
*** 33512,33515 ****
--- 36172,36202 ----
  @endif target-libffi
  
+ .PHONY: maybe-install-html-target-libffi install-html-target-libffi
+ maybe-install-html-target-libffi:
+ @if target-libffi
+ maybe-install-html-target-libffi: install-html-target-libffi
+ 
+ install-html-target-libffi: \
+     configure-target-libffi \
+     html-target-libffi 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libffi/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)/libffi" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libffi && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-libffi
+ 
  .PHONY: maybe-installcheck-target-libffi installcheck-target-libffi
  maybe-installcheck-target-libffi:
***************
*** 33866,33869 ****
--- 36553,36583 ----
  @endif target-libjava
  
+ .PHONY: maybe-install-html-target-libjava install-html-target-libjava
+ maybe-install-html-target-libjava:
+ @if target-libjava
+ maybe-install-html-target-libjava: install-html-target-libjava
+ 
+ install-html-target-libjava: \
+     configure-target-libjava \
+     html-target-libjava 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libjava/Makefile ] || exit 0 ; \
+ 	r=`${PWD_COMMAND}`; export r; \
+ 	s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
+ 	$(RAW_CXX_TARGET_EXPORTS) \
+ 	echo "Doing install-html in $(TARGET_SUBDIR)/libjava" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libjava && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-libjava
+ 
  .PHONY: maybe-installcheck-target-libjava installcheck-target-libjava
  maybe-installcheck-target-libjava:
***************
*** 34220,34223 ****
--- 36934,36964 ----
  @endif target-zlib
  
+ .PHONY: maybe-install-html-target-zlib install-html-target-zlib
+ maybe-install-html-target-zlib:
+ @if target-zlib
+ maybe-install-html-target-zlib: install-html-target-zlib
+ 
+ install-html-target-zlib: \
+     configure-target-zlib \
+     html-target-zlib 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/zlib/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)/zlib" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/zlib && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-zlib
+ 
  .PHONY: maybe-installcheck-target-zlib installcheck-target-zlib
  maybe-installcheck-target-zlib:
***************
*** 34574,34577 ****
--- 37315,37345 ----
  @endif target-boehm-gc
  
+ .PHONY: maybe-install-html-target-boehm-gc install-html-target-boehm-gc
+ maybe-install-html-target-boehm-gc:
+ @if target-boehm-gc
+ maybe-install-html-target-boehm-gc: install-html-target-boehm-gc
+ 
+ install-html-target-boehm-gc: \
+     configure-target-boehm-gc \
+     html-target-boehm-gc 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/boehm-gc/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)/boehm-gc" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/boehm-gc && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-boehm-gc
+ 
  .PHONY: maybe-installcheck-target-boehm-gc installcheck-target-boehm-gc
  maybe-installcheck-target-boehm-gc:
***************
*** 34928,34931 ****
--- 37696,37726 ----
  @endif target-qthreads
  
+ .PHONY: maybe-install-html-target-qthreads install-html-target-qthreads
+ maybe-install-html-target-qthreads:
+ @if target-qthreads
+ maybe-install-html-target-qthreads: install-html-target-qthreads
+ 
+ install-html-target-qthreads: \
+     configure-target-qthreads \
+     html-target-qthreads 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/qthreads/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)/qthreads" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/qthreads && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-qthreads
+ 
  .PHONY: maybe-installcheck-target-qthreads installcheck-target-qthreads
  maybe-installcheck-target-qthreads:
***************
*** 35282,35285 ****
--- 38077,38107 ----
  @endif target-rda
  
+ .PHONY: maybe-install-html-target-rda install-html-target-rda
+ maybe-install-html-target-rda:
+ @if target-rda
+ maybe-install-html-target-rda: install-html-target-rda
+ 
+ install-html-target-rda: \
+     configure-target-rda \
+     html-target-rda 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/rda/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)/rda" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/rda && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-rda
+ 
  .PHONY: maybe-installcheck-target-rda installcheck-target-rda
  maybe-installcheck-target-rda:
***************
*** 35636,35639 ****
--- 38458,38488 ----
  @endif target-libada
  
+ .PHONY: maybe-install-html-target-libada install-html-target-libada
+ maybe-install-html-target-libada:
+ @if target-libada
+ maybe-install-html-target-libada: install-html-target-libada
+ 
+ install-html-target-libada: \
+     configure-target-libada \
+     html-target-libada 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libada/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)/libada" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libada && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-libada
+ 
  .PHONY: maybe-installcheck-target-libada installcheck-target-libada
  maybe-installcheck-target-libada:
***************
*** 35990,35993 ****
--- 38839,38869 ----
  @endif target-libgomp
  
+ .PHONY: maybe-install-html-target-libgomp install-html-target-libgomp
+ maybe-install-html-target-libgomp:
+ @if target-libgomp
+ maybe-install-html-target-libgomp: install-html-target-libgomp
+ 
+ install-html-target-libgomp: \
+     configure-target-libgomp \
+     html-target-libgomp 
+ 	@: $(MAKE); $(unstage)
+ 	@[ -f $(TARGET_SUBDIR)/libgomp/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)/libgomp" ; \
+ 	for flag in $(EXTRA_TARGET_FLAGS); do \
+ 	  eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
+ 	done; \
+ 	(cd $(TARGET_SUBDIR)/libgomp && \
+ 	  $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
+ 	          "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
+ 	          "RANLIB=$${RANLIB}" \
+ 	          "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
+ 	           install-html) \
+ 	  || exit 1
+ 
+ @endif target-libgomp
+ 
  .PHONY: maybe-installcheck-target-libgomp installcheck-target-libgomp
  maybe-installcheck-target-libgomp:
***************
*** 37608,37611 ****
--- 40484,40488 ----
  configure-target-libmudflap: stage_last
  configure-target-libssp: stage_last
+ configure-target-libgcc-math: stage_last
  configure-target-newlib: stage_last
  configure-target-libgfortran: stage_last
***************
*** 37631,37634 ****
--- 40508,40512 ----
  configure-target-libmudflap: maybe-all-gcc
  configure-target-libssp: maybe-all-gcc
+ configure-target-libgcc-math: maybe-all-gcc
  configure-target-newlib: maybe-all-gcc
  configure-target-libgfortran: maybe-all-gcc
*** gcc/configure.in	Mon May 22 11:13:07 2006
--- src/configure.in	Mon May  1 21:13:20 2006
***************
*** 149,152 ****
--- 149,153 ----
  		target-libmudflap \
  		target-libssp \
+ 		target-libgcc-math \
  		target-libgfortran \
  		${libgcj} \
***************
*** 313,316 ****
--- 314,329 ----
  ENABLE_LIBSSP=yes)
  
+ # Set the default so we build libgcc-math for ix86 and x86_64
+ AC_ARG_ENABLE(libgcc-math,
+ [  --enable-libgcc-math   Builds libgcc-math directory],,
+ [
+ case "${target}" in
+   i?86-* | x86_64-* )
+     enable_libgcc_math=yes ;;
+   *)
+     enable_libgcc_math=no ;;
+ esac
+ ])
+ 
  # Save it here so that, even in case of --enable-libgcj, if the Java
  # front-end isn't enabled, we still get libgcj disabled.
***************
*** 572,578 ****
      noconfigdirs="$noconfigdirs ${libgcj}"
      ;;
-   hppa*-hp-hpux11*)
-     noconfigdirs="$noconfigdirs ld shellutils"
-     ;;
    hppa*-*-*)
      # According to Alexandre Oliva <aoliva@redhat.com>, libjava won't
--- 585,588 ----
***************
*** 2386,2388 ****
--- 2396,2418 ----
  AC_SUBST(stage2_werror_flag)
  
+ # Flags needed to enable html installing and building
+ AC_ARG_WITH(datarootdir,
+ [  --with-datarootdir	Use datarootdir as the data root directory.],
+ [datarootdir="\${prefix}/${withval}"],
+ [datarootdir="\${prefix}/share"])
+ 
+ AC_ARG_WITH(docdir,
+ [  --with-docdir	Install documentation in this directory.],
+ [docdir="\${prefix}/${withval}"],
+ [docdir="\${datarootdir}/doc"])
+ 
+ AC_ARG_WITH(htmldir,
+ [  --with-htmldir	Install html in this directory.],
+ [htmldir="\${prefix}/${withval}"],
+ [htmldir="\${docdir}"])
+ 
+ AC_SUBST(datarootdir)
+ AC_SUBST(docdir)
+ AC_SUBST(htmldir)
+ 
  AC_OUTPUT(Makefile)
*** gcc/configure	Mon May 22 11:13:07 2006
--- src/configure	Mon May  1 21:13:20 2006
***************
*** 17,20 ****
--- 17,22 ----
    --enable-libssp        Builds libssp directory"
  ac_help="$ac_help
+   --enable-libgcc-math   Builds libgcc-math directory"
+ ac_help="$ac_help
    --with-mpfr-dir=PATH    Specify source directory for MPFR library"
  ac_help="$ac_help
***************
*** 42,45 ****
--- 44,53 ----
  ac_help="$ac_help
    --enable-werror         enable -Werror in bootstrap stage2 and later"
+ ac_help="$ac_help
+   --with-datarootdir	Use datarootdir as the data root directory."
+ ac_help="$ac_help
+   --with-docdir	Install documentation in this directory."
+ ac_help="$ac_help
+   --with-htmldir	Install html in this directory."
  
  # Initialize some variables set by options.
***************
*** 600,604 ****
  
  echo $ac_n "checking host system type""... $ac_c" 1>&6
! echo "configure:603: checking host system type" >&5
  
  host_alias=$host
--- 608,612 ----
  
  echo $ac_n "checking host system type""... $ac_c" 1>&6
! echo "configure:611: checking host system type" >&5
  
  host_alias=$host
***************
*** 621,625 ****
  
  echo $ac_n "checking target system type""... $ac_c" 1>&6
! echo "configure:624: checking target system type" >&5
  
  target_alias=$target
--- 629,633 ----
  
  echo $ac_n "checking target system type""... $ac_c" 1>&6
! echo "configure:632: checking target system type" >&5
  
  target_alias=$target
***************
*** 639,643 ****
  
  echo $ac_n "checking build system type""... $ac_c" 1>&6
! echo "configure:642: checking build system type" >&5
  
  build_alias=$build
--- 647,651 ----
  
  echo $ac_n "checking build system type""... $ac_c" 1>&6
! echo "configure:650: checking build system type" >&5
  
  build_alias=$build
***************
*** 694,698 ****
  # ./install, which can be erroneously created by make from ./install.sh.
  echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
! echo "configure:697: checking for a BSD compatible install" >&5
  if test -z "$INSTALL"; then
  if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
--- 702,706 ----
  # ./install, which can be erroneously created by make from ./install.sh.
  echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
! echo "configure:705: checking for a BSD compatible install" >&5
  if test -z "$INSTALL"; then
  if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
***************
*** 747,751 ****
  
  echo $ac_n "checking whether ln works""... $ac_c" 1>&6
! echo "configure:750: checking whether ln works" >&5
  if eval "test \"`echo '$''{'acx_cv_prog_LN'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 755,759 ----
  
  echo $ac_n "checking whether ln works""... $ac_c" 1>&6
! echo "configure:758: checking whether ln works" >&5
  if eval "test \"`echo '$''{'acx_cv_prog_LN'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 771,775 ****
  
  echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
! echo "configure:774: checking whether ln -s works" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 779,783 ----
  
  echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
! echo "configure:782: checking whether ln -s works" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 910,913 ****
--- 918,922 ----
  		target-libmudflap \
  		target-libssp \
+ 		target-libgcc-math \
  		target-libgfortran \
  		${libgcj} \
***************
*** 1108,1111 ****
--- 1117,1137 ----
  
  
+ # Set the default so we build libgcc-math for ix86 and x86_64
+ # Check whether --enable-libgcc-math or --disable-libgcc-math was given.
+ if test "${enable_libgcc_math+set}" = set; then
+   enableval="$enable_libgcc_math"
+   :
+ else
+   
+ case "${target}" in
+   i?86-* | x86_64-* )
+     enable_libgcc_math=yes ;;
+   *)
+     enable_libgcc_math=no ;;
+ esac
+ 
+ fi
+ 
+ 
  # Save it here so that, even in case of --enable-libgcj, if the Java
  # front-end isn't enabled, we still get libgcj disabled.
***************
*** 1367,1373 ****
      noconfigdirs="$noconfigdirs ${libgcj}"
      ;;
-   hppa*-hp-hpux11*)
-     noconfigdirs="$noconfigdirs ld shellutils"
-     ;;
    hppa*-*-*)
      # According to Alexandre Oliva <aoliva@redhat.com>, libjava won't
--- 1393,1396 ----
***************
*** 1838,1842 ****
  set dummy gcc; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:1841: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 1861,1865 ----
  set dummy gcc; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:1864: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 1868,1872 ****
  set dummy cc; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:1871: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 1891,1895 ----
  set dummy cc; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:1894: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 1919,1923 ****
  set dummy cl; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:1922: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 1942,1946 ----
  set dummy cl; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:1945: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 1951,1955 ****
  
  echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
! echo "configure:1954: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
  
  ac_ext=c
--- 1974,1978 ----
  
  echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
! echo "configure:1977: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
  
  ac_ext=c
***************
*** 1962,1971 ****
  cat > conftest.$ac_ext << EOF
  
! #line 1965 "configure"
  #include "confdefs.h"
  
  main(){return(0);}
  EOF
! if { (eval echo configure:1970: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    ac_cv_prog_cc_works=yes
    # If we can't run a trivial program, we are probably using a cross compiler.
--- 1985,1994 ----
  cat > conftest.$ac_ext << EOF
  
! #line 1988 "configure"
  #include "confdefs.h"
  
  main(){return(0);}
  EOF
! if { (eval echo configure:1993: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    ac_cv_prog_cc_works=yes
    # If we can't run a trivial program, we are probably using a cross compiler.
***************
*** 1993,2002 ****
  fi
  echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
! echo "configure:1996: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
  echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
  cross_compiling=$ac_cv_prog_cc_cross
  
  echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
! echo "configure:2001: checking whether we are using GNU C" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 2016,2025 ----
  fi
  echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
! echo "configure:2019: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
  echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
  cross_compiling=$ac_cv_prog_cc_cross
  
  echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
! echo "configure:2024: checking whether we are using GNU C" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 2007,2011 ****
  #endif
  EOF
! if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2010: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
    ac_cv_prog_gcc=yes
  else
--- 2030,2034 ----
  #endif
  EOF
! if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2033: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
    ac_cv_prog_gcc=yes
  else
***************
*** 2026,2030 ****
  CFLAGS=
  echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
! echo "configure:2029: checking whether ${CC-cc} accepts -g" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 2049,2053 ----
  CFLAGS=
  echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
! echo "configure:2052: checking whether ${CC-cc} accepts -g" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 2093,2097 ****
  set dummy ${ac_tool_prefix}gnatbind; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:2096: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GNATBIND'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 2116,2120 ----
  set dummy ${ac_tool_prefix}gnatbind; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:2119: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GNATBIND'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 2125,2129 ****
  set dummy gnatbind; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:2128: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GNATBIND'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 2148,2152 ----
  set dummy gnatbind; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:2151: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GNATBIND'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 2158,2162 ****
  
  echo $ac_n "checking whether compiler driver understands Ada""... $ac_c" 1>&6
! echo "configure:2161: checking whether compiler driver understands Ada" >&5
  if eval "test \"`echo '$''{'acx_cv_cc_gcc_supports_ada'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 2181,2185 ----
  
  echo $ac_n "checking whether compiler driver understands Ada""... $ac_c" 1>&6
! echo "configure:2184: checking whether compiler driver understands Ada" >&5
  if eval "test \"`echo '$''{'acx_cv_cc_gcc_supports_ada'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 2190,2194 ****
  
  echo $ac_n "checking how to compare bootstrapped objects""... $ac_c" 1>&6
! echo "configure:2193: checking how to compare bootstrapped objects" >&5
  if eval "test \"`echo '$''{'gcc_cv_prog_cmp_skip'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 2213,2217 ----
  
  echo $ac_n "checking how to compare bootstrapped objects""... $ac_c" 1>&6
! echo "configure:2216: checking how to compare bootstrapped objects" >&5
  if eval "test \"`echo '$''{'gcc_cv_prog_cmp_skip'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 2288,2294 ****
  # Check GMP actually works
  echo $ac_n "checking for correct version of gmp.h""... $ac_c" 1>&6
! echo "configure:2291: checking for correct version of gmp.h" >&5
  cat > conftest.$ac_ext <<EOF
! #line 2293 "configure"
  #include "confdefs.h"
  #include "gmp.h"
--- 2311,2317 ----
  # Check GMP actually works
  echo $ac_n "checking for correct version of gmp.h""... $ac_c" 1>&6
! echo "configure:2314: checking for correct version of gmp.h" >&5
  cat > conftest.$ac_ext <<EOF
! #line 2316 "configure"
  #include "confdefs.h"
  #include "gmp.h"
***************
*** 2301,2305 ****
  ; return 0; }
  EOF
! if { (eval echo configure:2304: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    rm -rf conftest*
    echo "$ac_t""yes" 1>&6
--- 2324,2328 ----
  ; return 0; }
  EOF
! if { (eval echo configure:2327: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    rm -rf conftest*
    echo "$ac_t""yes" 1>&6
***************
*** 2314,2323 ****
  if test x"$have_gmp" = xyes; then
    echo $ac_n "checking for MPFR""... $ac_c" 1>&6
! echo "configure:2317: checking for MPFR" >&5
  
    saved_LIBS="$LIBS"
    LIBS="$LIBS $gmplibs"
    cat > conftest.$ac_ext <<EOF
! #line 2322 "configure"
  #include "confdefs.h"
  #include <gmp.h>
--- 2337,2346 ----
  if test x"$have_gmp" = xyes; then
    echo $ac_n "checking for MPFR""... $ac_c" 1>&6
! echo "configure:2340: checking for MPFR" >&5
  
    saved_LIBS="$LIBS"
    LIBS="$LIBS $gmplibs"
    cat > conftest.$ac_ext <<EOF
! #line 2345 "configure"
  #include "confdefs.h"
  #include <gmp.h>
***************
*** 2327,2331 ****
  ; return 0; }
  EOF
! if { (eval echo configure:2330: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    echo "$ac_t""yes" 1>&6
--- 2350,2354 ----
  ; return 0; }
  EOF
! if { (eval echo configure:2353: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    rm -rf conftest*
    echo "$ac_t""yes" 1>&6
***************
*** 3392,3396 ****
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3395: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3415,3419 ----
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3418: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3432,3436 ****
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3435: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_BISON'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3455,3459 ----
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3458: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_BISON'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3471,3475 ****
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3474: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_M4'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3494,3498 ----
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3497: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_M4'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3510,3514 ****
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3513: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3533,3537 ----
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3536: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3550,3554 ****
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3553: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_FLEX'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3573,3577 ----
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3576: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_FLEX'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3589,3593 ****
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3592: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_MAKEINFO'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3612,3616 ----
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3615: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_MAKEINFO'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3642,3646 ****
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3645: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_EXPECT'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3665,3669 ----
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3668: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_EXPECT'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3683,3687 ****
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3686: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_RUNTEST'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3706,3710 ----
  set dummy $ac_prog; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3709: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_RUNTEST'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3731,3735 ****
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3734: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3754,3758 ----
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3757: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3762,3766 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3765: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3785,3789 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3788: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3806,3810 ****
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3809: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3829,3833 ----
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3832: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3837,3841 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3840: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3860,3864 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3863: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3881,3885 ****
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3884: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3904,3908 ----
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3907: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3912,3916 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3915: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3935,3939 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3938: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3956,3960 ****
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3959: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 3979,3983 ----
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3982: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 3987,3991 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:3990: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4010,4014 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4013: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4031,4035 ****
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4034: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LIPO'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4054,4058 ----
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4057: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LIPO'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4062,4066 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4065: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LIPO'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4085,4089 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4088: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LIPO'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4106,4110 ****
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4109: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_NM'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4129,4133 ----
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4132: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_NM'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4137,4141 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4140: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_NM'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4160,4164 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4163: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_NM'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4181,4185 ****
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4184: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4204,4208 ----
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4207: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4212,4216 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4215: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4235,4239 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4238: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4251,4255 ****
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4254: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4274,4278 ----
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4277: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4282,4286 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4285: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4305,4309 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4308: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4321,4325 ****
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4324: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4344,4348 ----
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4347: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4352,4356 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4355: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4375,4379 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4378: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4396,4400 ****
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4399: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_OBJCOPY'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4419,4423 ----
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4422: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_OBJCOPY'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4427,4431 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4430: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_OBJCOPY'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4450,4454 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4453: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_OBJCOPY'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4471,4475 ****
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4474: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4494,4498 ----
  set dummy ${ncn_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4497: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4502,4506 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4505: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4525,4529 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4528: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4566,4570 ****
    for ncn_progname in cc gcc; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:4569: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_CC_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 4589,4593 ----
    for ncn_progname in cc gcc; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:4592: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_CC_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 4583,4587 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4586: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4606,4610 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4609: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4614,4618 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4617: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4637,4641 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4640: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CC_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4657,4661 ****
    for ncn_progname in c++ g++ cxx gxx; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:4660: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_CXX_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 4680,4684 ----
    for ncn_progname in c++ g++ cxx gxx; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:4683: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_CXX_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 4674,4678 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4677: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CXX_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4697,4701 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4700: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CXX_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4705,4709 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4708: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CXX_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4728,4732 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4731: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_CXX_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4748,4752 ****
    for ncn_progname in gcc; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:4751: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_GCC_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 4771,4775 ----
    for ncn_progname in gcc; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:4774: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_GCC_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 4765,4769 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4768: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GCC_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4788,4792 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4791: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GCC_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4796,4800 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4799: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GCC_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4819,4823 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4822: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GCC_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4834,4838 ****
    for ncn_progname in gcj; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:4837: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_GCJ_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 4857,4861 ----
    for ncn_progname in gcj; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:4860: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_GCJ_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 4851,4855 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4854: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GCJ_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4874,4878 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4877: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GCJ_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4882,4886 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4885: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GCJ_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4905,4909 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4908: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GCJ_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4925,4929 ****
    for ncn_progname in gfortran; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:4928: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_GFORTRAN_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 4948,4952 ----
    for ncn_progname in gfortran; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:4951: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_GFORTRAN_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 4942,4946 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4945: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GFORTRAN_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4965,4969 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4968: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GFORTRAN_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 4973,4977 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4976: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GFORTRAN_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 4996,5000 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:4999: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_GFORTRAN_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5080,5084 ****
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for ar in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5083: checking for ar in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/ar; then
        AR_FOR_TARGET=`cd $with_build_time_tools && pwd`/ar
--- 5103,5107 ----
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for ar in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5106: checking for ar in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/ar; then
        AR_FOR_TARGET=`cd $with_build_time_tools && pwd`/ar
***************
*** 5098,5102 ****
  set dummy ar; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5101: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_AR_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5121,5125 ----
  set dummy ar; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5124: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_AR_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5135,5139 ****
    for ncn_progname in ar; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5138: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_AR_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 5158,5162 ----
    for ncn_progname in ar; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5161: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_AR_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 5152,5156 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5155: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AR_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5175,5179 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5178: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AR_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5183,5187 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5186: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AR_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5206,5210 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5209: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AR_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5233,5237 ****
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for as in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5236: checking for as in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/as; then
        AS_FOR_TARGET=`cd $with_build_time_tools && pwd`/as
--- 5256,5260 ----
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for as in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5259: checking for as in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/as; then
        AS_FOR_TARGET=`cd $with_build_time_tools && pwd`/as
***************
*** 5251,5255 ****
  set dummy as; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5254: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_AS_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5274,5278 ----
  set dummy as; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5277: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_AS_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5288,5292 ****
    for ncn_progname in as; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5291: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_AS_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 5311,5315 ----
    for ncn_progname in as; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5314: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_AS_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 5305,5309 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5308: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AS_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5328,5332 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5331: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AS_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5336,5340 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5339: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AS_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5359,5363 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5362: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_AS_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5386,5390 ****
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for dlltool in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5389: checking for dlltool in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/dlltool; then
        DLLTOOL_FOR_TARGET=`cd $with_build_time_tools && pwd`/dlltool
--- 5409,5413 ----
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for dlltool in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5412: checking for dlltool in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/dlltool; then
        DLLTOOL_FOR_TARGET=`cd $with_build_time_tools && pwd`/dlltool
***************
*** 5404,5408 ****
  set dummy dlltool; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5407: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_DLLTOOL_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5427,5431 ----
  set dummy dlltool; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5430: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_DLLTOOL_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5441,5445 ****
    for ncn_progname in dlltool; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5444: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_DLLTOOL_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 5464,5468 ----
    for ncn_progname in dlltool; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5467: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_DLLTOOL_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 5458,5462 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5461: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5481,5485 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5484: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5489,5493 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5492: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5512,5516 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5515: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5539,5543 ****
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for ld in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5542: checking for ld in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/ld; then
        LD_FOR_TARGET=`cd $with_build_time_tools && pwd`/ld
--- 5562,5566 ----
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for ld in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5565: checking for ld in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/ld; then
        LD_FOR_TARGET=`cd $with_build_time_tools && pwd`/ld
***************
*** 5557,5561 ****
  set dummy ld; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5560: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_LD_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5580,5584 ----
  set dummy ld; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5583: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_LD_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5594,5598 ****
    for ncn_progname in ld; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5597: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_LD_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 5617,5621 ----
    for ncn_progname in ld; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5620: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_LD_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 5611,5615 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5614: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LD_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5634,5638 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5637: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LD_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5642,5646 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5645: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LD_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5665,5669 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5668: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LD_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5692,5696 ****
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for lipo in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5695: checking for lipo in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/lipo; then
        LIPO_FOR_TARGET=`cd $with_build_time_tools && pwd`/lipo
--- 5715,5719 ----
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for lipo in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5718: checking for lipo in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/lipo; then
        LIPO_FOR_TARGET=`cd $with_build_time_tools && pwd`/lipo
***************
*** 5710,5714 ****
  set dummy lipo; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5713: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_LIPO_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5733,5737 ----
  set dummy lipo; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5736: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_LIPO_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5747,5751 ****
    for ncn_progname in lipo; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5750: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_LIPO_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 5770,5774 ----
    for ncn_progname in lipo; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5773: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_LIPO_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 5764,5768 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5767: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LIPO_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5787,5791 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5790: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LIPO_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5795,5799 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5798: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LIPO_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5818,5822 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5821: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_LIPO_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5845,5849 ****
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for nm in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5848: checking for nm in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/nm; then
        NM_FOR_TARGET=`cd $with_build_time_tools && pwd`/nm
--- 5868,5872 ----
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for nm in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5871: checking for nm in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/nm; then
        NM_FOR_TARGET=`cd $with_build_time_tools && pwd`/nm
***************
*** 5863,5867 ****
  set dummy nm; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5866: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_NM_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5886,5890 ----
  set dummy nm; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5889: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_NM_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5900,5904 ****
    for ncn_progname in nm; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5903: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_NM_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 5923,5927 ----
    for ncn_progname in nm; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:5926: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_NM_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 5917,5921 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5920: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_NM_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5940,5944 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5943: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_NM_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5948,5952 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5951: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_NM_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 5971,5975 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:5974: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_NM_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 5998,6002 ****
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for objdump in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6001: checking for objdump in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/objdump; then
        OBJDUMP_FOR_TARGET=`cd $with_build_time_tools && pwd`/objdump
--- 6021,6025 ----
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for objdump in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6024: checking for objdump in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/objdump; then
        OBJDUMP_FOR_TARGET=`cd $with_build_time_tools && pwd`/objdump
***************
*** 6016,6020 ****
  set dummy objdump; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6019: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_OBJDUMP_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 6039,6043 ----
  set dummy objdump; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6042: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_OBJDUMP_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 6053,6057 ****
    for ncn_progname in objdump; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6056: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_OBJDUMP_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 6076,6080 ----
    for ncn_progname in objdump; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6079: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_OBJDUMP_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 6070,6074 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6073: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 6093,6097 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6096: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 6101,6105 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6104: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 6124,6128 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6127: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 6151,6155 ****
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for ranlib in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6154: checking for ranlib in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/ranlib; then
        RANLIB_FOR_TARGET=`cd $with_build_time_tools && pwd`/ranlib
--- 6174,6178 ----
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for ranlib in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6177: checking for ranlib in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/ranlib; then
        RANLIB_FOR_TARGET=`cd $with_build_time_tools && pwd`/ranlib
***************
*** 6169,6173 ****
  set dummy ranlib; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6172: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_RANLIB_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 6192,6196 ----
  set dummy ranlib; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6195: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_RANLIB_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 6206,6210 ****
    for ncn_progname in ranlib; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6209: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_RANLIB_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 6229,6233 ----
    for ncn_progname in ranlib; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6232: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_RANLIB_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 6223,6227 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6226: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_RANLIB_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 6246,6250 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6249: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_RANLIB_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 6254,6258 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6257: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_RANLIB_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 6277,6281 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6280: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_RANLIB_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 6304,6308 ****
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for strip in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6307: checking for strip in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/strip; then
        STRIP_FOR_TARGET=`cd $with_build_time_tools && pwd`/strip
--- 6327,6331 ----
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for strip in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6330: checking for strip in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/strip; then
        STRIP_FOR_TARGET=`cd $with_build_time_tools && pwd`/strip
***************
*** 6322,6326 ****
  set dummy strip; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6325: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_STRIP_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 6345,6349 ----
  set dummy strip; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6348: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_STRIP_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 6359,6363 ****
    for ncn_progname in strip; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6362: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_STRIP_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 6382,6386 ----
    for ncn_progname in strip; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6385: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_STRIP_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 6376,6380 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6379: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_STRIP_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 6399,6403 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6402: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_STRIP_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 6407,6411 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6410: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_STRIP_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 6430,6434 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6433: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_STRIP_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 6457,6461 ****
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for windres in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6460: checking for windres in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/windres; then
        WINDRES_FOR_TARGET=`cd $with_build_time_tools && pwd`/windres
--- 6480,6484 ----
    if test -n "$with_build_time_tools"; then
      echo $ac_n "checking for windres in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6483: checking for windres in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/windres; then
        WINDRES_FOR_TARGET=`cd $with_build_time_tools && pwd`/windres
***************
*** 6475,6479 ****
  set dummy windres; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6478: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_WINDRES_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 6498,6502 ----
  set dummy windres; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6501: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_path_WINDRES_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 6512,6516 ****
    for ncn_progname in windres; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6515: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_WINDRES_FOR_TARGET=$with_build_time_tools/${ncn_progname}
--- 6535,6539 ----
    for ncn_progname in windres; do
      echo $ac_n "checking for ${ncn_progname} in $with_build_time_tools""... $ac_c" 1>&6
! echo "configure:6538: checking for ${ncn_progname} in $with_build_time_tools" >&5
      if test -x $with_build_time_tools/${ncn_progname}; then
        ac_cv_prog_WINDRES_FOR_TARGET=$with_build_time_tools/${ncn_progname}
***************
*** 6529,6533 ****
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6532: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_WINDRES_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 6552,6556 ----
  set dummy ${ncn_target_tool_prefix}${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6555: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_WINDRES_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 6560,6564 ****
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6563: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_WINDRES_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
--- 6583,6587 ----
  set dummy ${ncn_progname}; ac_word=$2
  echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
! echo "configure:6586: checking for $ac_word" >&5
  if eval "test \"`echo '$''{'ac_cv_prog_WINDRES_FOR_TARGET'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
***************
*** 6608,6612 ****
  
  echo $ac_n "checking where to find the target ar""... $ac_c" 1>&6
! echo "configure:6611: checking where to find the target ar" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$AR_FOR_TARGET" : "x/" > /dev/null; then
--- 6631,6635 ----
  
  echo $ac_n "checking where to find the target ar""... $ac_c" 1>&6
! echo "configure:6634: checking where to find the target ar" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$AR_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 6641,6645 ****
  fi
  echo $ac_n "checking where to find the target as""... $ac_c" 1>&6
! echo "configure:6644: checking where to find the target as" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$AS_FOR_TARGET" : "x/" > /dev/null; then
--- 6664,6668 ----
  fi
  echo $ac_n "checking where to find the target as""... $ac_c" 1>&6
! echo "configure:6667: checking where to find the target as" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$AS_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 6674,6678 ****
  fi
  echo $ac_n "checking where to find the target cc""... $ac_c" 1>&6
! echo "configure:6677: checking where to find the target cc" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$CC_FOR_TARGET" : "x/" > /dev/null; then
--- 6697,6701 ----
  fi
  echo $ac_n "checking where to find the target cc""... $ac_c" 1>&6
! echo "configure:6700: checking where to find the target cc" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$CC_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 6707,6711 ****
  fi
  echo $ac_n "checking where to find the target c++""... $ac_c" 1>&6
! echo "configure:6710: checking where to find the target c++" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$CXX_FOR_TARGET" : "x/" > /dev/null; then
--- 6730,6734 ----
  fi
  echo $ac_n "checking where to find the target c++""... $ac_c" 1>&6
! echo "configure:6733: checking where to find the target c++" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$CXX_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 6743,6747 ****
  fi
  echo $ac_n "checking where to find the target c++ for libstdc++""... $ac_c" 1>&6
! echo "configure:6746: checking where to find the target c++ for libstdc++" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$RAW_CXX_FOR_TARGET" : "x/" > /dev/null; then
--- 6766,6770 ----
  fi
  echo $ac_n "checking where to find the target c++ for libstdc++""... $ac_c" 1>&6
! echo "configure:6769: checking where to find the target c++ for libstdc++" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$RAW_CXX_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 6779,6783 ****
  fi
  echo $ac_n "checking where to find the target dlltool""... $ac_c" 1>&6
! echo "configure:6782: checking where to find the target dlltool" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$DLLTOOL_FOR_TARGET" : "x/" > /dev/null; then
--- 6802,6806 ----
  fi
  echo $ac_n "checking where to find the target dlltool""... $ac_c" 1>&6
! echo "configure:6805: checking where to find the target dlltool" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$DLLTOOL_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 6812,6816 ****
  fi
  echo $ac_n "checking where to find the target gcc""... $ac_c" 1>&6
! echo "configure:6815: checking where to find the target gcc" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$GCC_FOR_TARGET" : "x/" > /dev/null; then
--- 6835,6839 ----
  fi
  echo $ac_n "checking where to find the target gcc""... $ac_c" 1>&6
! echo "configure:6838: checking where to find the target gcc" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$GCC_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 6845,6849 ****
  fi
  echo $ac_n "checking where to find the target gcj""... $ac_c" 1>&6
! echo "configure:6848: checking where to find the target gcj" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$GCJ_FOR_TARGET" : "x/" > /dev/null; then
--- 6868,6872 ----
  fi
  echo $ac_n "checking where to find the target gcj""... $ac_c" 1>&6
! echo "configure:6871: checking where to find the target gcj" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$GCJ_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 6881,6885 ****
  fi
  echo $ac_n "checking where to find the target gfortran""... $ac_c" 1>&6
! echo "configure:6884: checking where to find the target gfortran" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$GFORTRAN_FOR_TARGET" : "x/" > /dev/null; then
--- 6904,6908 ----
  fi
  echo $ac_n "checking where to find the target gfortran""... $ac_c" 1>&6
! echo "configure:6907: checking where to find the target gfortran" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$GFORTRAN_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 6917,6921 ****
  fi
  echo $ac_n "checking where to find the target ld""... $ac_c" 1>&6
! echo "configure:6920: checking where to find the target ld" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$LD_FOR_TARGET" : "x/" > /dev/null; then
--- 6940,6944 ----
  fi
  echo $ac_n "checking where to find the target ld""... $ac_c" 1>&6
! echo "configure:6943: checking where to find the target ld" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$LD_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 6950,6954 ****
  fi
  echo $ac_n "checking where to find the target lipo""... $ac_c" 1>&6
! echo "configure:6953: checking where to find the target lipo" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$LIPO_FOR_TARGET" : "x/" > /dev/null; then
--- 6973,6977 ----
  fi
  echo $ac_n "checking where to find the target lipo""... $ac_c" 1>&6
! echo "configure:6976: checking where to find the target lipo" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$LIPO_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 6973,6977 ****
  fi
  echo $ac_n "checking where to find the target nm""... $ac_c" 1>&6
! echo "configure:6976: checking where to find the target nm" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$NM_FOR_TARGET" : "x/" > /dev/null; then
--- 6996,7000 ----
  fi
  echo $ac_n "checking where to find the target nm""... $ac_c" 1>&6
! echo "configure:6999: checking where to find the target nm" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$NM_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 7006,7010 ****
  fi
  echo $ac_n "checking where to find the target objdump""... $ac_c" 1>&6
! echo "configure:7009: checking where to find the target objdump" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$OBJDUMP_FOR_TARGET" : "x/" > /dev/null; then
--- 7029,7033 ----
  fi
  echo $ac_n "checking where to find the target objdump""... $ac_c" 1>&6
! echo "configure:7032: checking where to find the target objdump" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$OBJDUMP_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 7039,7043 ****
  fi
  echo $ac_n "checking where to find the target ranlib""... $ac_c" 1>&6
! echo "configure:7042: checking where to find the target ranlib" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$RANLIB_FOR_TARGET" : "x/" > /dev/null; then
--- 7062,7066 ----
  fi
  echo $ac_n "checking where to find the target ranlib""... $ac_c" 1>&6
! echo "configure:7065: checking where to find the target ranlib" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$RANLIB_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 7072,7076 ****
  fi
  echo $ac_n "checking where to find the target strip""... $ac_c" 1>&6
! echo "configure:7075: checking where to find the target strip" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$STRIP_FOR_TARGET" : "x/" > /dev/null; then
--- 7095,7099 ----
  fi
  echo $ac_n "checking where to find the target strip""... $ac_c" 1>&6
! echo "configure:7098: checking where to find the target strip" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$STRIP_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 7105,7109 ****
  fi
  echo $ac_n "checking where to find the target windres""... $ac_c" 1>&6
! echo "configure:7108: checking where to find the target windres" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$WINDRES_FOR_TARGET" : "x/" > /dev/null; then
--- 7128,7132 ----
  fi
  echo $ac_n "checking where to find the target windres""... $ac_c" 1>&6
! echo "configure:7131: checking where to find the target windres" >&5
  if test "x${build}" != "x${host}" ; then
    if expr "x$WINDRES_FOR_TARGET" : "x/" > /dev/null; then
***************
*** 7166,7170 ****
  
  echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6
! echo "configure:7169: checking whether to enable maintainer-specific portions of Makefiles" >&5
  # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
  if test "${enable_maintainer_mode+set}" = set; then
--- 7189,7193 ----
  
  echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6
! echo "configure:7192: checking whether to enable maintainer-specific portions of Makefiles" >&5
  # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
  if test "${enable_maintainer_mode+set}" = set; then
***************
*** 7225,7228 ****
--- 7248,7283 ----
  
  
+ # Flags needed to enable html installing and building
+ # Check whether --with-datarootdir or --without-datarootdir was given.
+ if test "${with_datarootdir+set}" = set; then
+   withval="$with_datarootdir"
+   datarootdir="\${prefix}/${withval}"
+ else
+   datarootdir="\${prefix}/share"
+ fi
+ 
+ 
+ # Check whether --with-docdir or --without-docdir was given.
+ if test "${with_docdir+set}" = set; then
+   withval="$with_docdir"
+   docdir="\${prefix}/${withval}"
+ else
+   docdir="\${datarootdir}/doc"
+ fi
+ 
+ 
+ # Check whether --with-htmldir or --without-htmldir was given.
+ if test "${with_htmldir+set}" = set; then
+   withval="$with_htmldir"
+   htmldir="\${prefix}/${withval}"
+ else
+   htmldir="\${docdir}"
+ fi
+ 
+ 
+ 
+ 
+ 
+ 
  trap '' 1 2 15
  cat > confcache <<\EOF
***************
*** 7291,7303 ****
  # Protect against shell expansion while executing Makefile rules.
  # Protect against Makefile macro expansion.
! cat > conftest.defs <<\EOF
! s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%-D\1=\2%g
! s%[ 	`~#$^&*(){}\\|;'"<>?]%\\&%g
! s%\[%\\&%g
! s%\]%\\&%g
! s%\$%$$%g
! EOF
! DEFS=`sed -f conftest.defs confdefs.h | tr '\012' ' '`
! rm -f conftest.defs
  
  
--- 7346,7377 ----
  # Protect against shell expansion while executing Makefile rules.
  # Protect against Makefile macro expansion.
! #
! # If the first sed substitution is executed (which looks for macros that
! # take arguments), then we branch to the quote section.  Otherwise,
! # look for a macro that doesn't take arguments.
! cat >confdef2opt.sed <<\_ACEOF
! t clear
! : clear
! s,^[ 	]*#[ 	]*define[ 	][ 	]*\([^ 	(][^ 	(]*([^)]*)\)[ 	]*\(.*\),-D\1=\2,g
! t quote
! s,^[ 	]*#[ 	]*define[ 	][ 	]*\([^ 	][^ 	]*\)[ 	]*\(.*\),-D\1=\2,g
! t quote
! d
! : quote
! s,[ 	`~#$^&*(){}\\|;'"<>?],\\&,g
! s,\[,\\&,g
! s,\],\\&,g
! s,\$,$$,g
! p
! _ACEOF
! # We use echo to avoid assuming a particular line-breaking character.
! # The extra dot is to prevent the shell from consuming trailing
! # line-breaks from the sub-command output.  A line-break within
! # single-quotes doesn't work because, if this script is created in a
! # platform that uses two characters for line-breaks (e.g., DOS), tr
! # would break.
! ac_LF_and_DOT=`echo; echo .`
! DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'`
! rm -f confdef2opt.sed
  
  
***************
*** 7470,7473 ****
--- 7544,7550 ----
  s%@stage1_cflags@%$stage1_cflags%g
  s%@stage2_werror_flag@%$stage2_werror_flag%g
+ s%@datarootdir@%$datarootdir%g
+ s%@docdir@%$docdir%g
+ s%@htmldir@%$htmldir%g
  
  CEOF
diff -r -x CVS -x .svn -x '*~' -IRevision: -C 2 gcc/config/ChangeLog src/config/ChangeLog
*** gcc/config/ChangeLog	Tue Feb 14 13:13:05 2006
--- src/config/ChangeLog	Tue Feb 14 13:13:09 2006
***************
*** 3,12 ****
  
          * acx.m4 (NCN_STRICT_CHECK_TARGET_TOOLS): Use correct program name.
!         (ACX_CHECK_INSTALLED_TARGET_TOOL): Likewise, and always set $1.
  
  2006-01-26  Paolo Bonzini  <bonzini@gnu.org>
  
! 	* config/acx.m4 (NCN_STRICT_CHECK_TARGET_TOOLS): Test
! 	$with_build_time_tools.
  	(ACX_PATH_SEP): New.
  	(ACX_TOOL_DIRS): Move here from the gcc directory.
--- 3,11 ----
  
          * acx.m4 (NCN_STRICT_CHECK_TARGET_TOOLS): Use correct program name.
! 	(ACX_CHECK_INSTALLED_TARGET_TOOL): Likewise, and always set $1.
  
  2006-01-26  Paolo Bonzini  <bonzini@gnu.org>
  
! 	* acx.m4 (NCN_STRICT_CHECK_TARGET_TOOLS): Test $with_build_time_tools.
  	(ACX_PATH_SEP): New.
  	(ACX_TOOL_DIRS): Move here from the gcc directory.
***************
*** 22,36 ****
  2005-12-20  Paolo Bonzini  <bonzini@gnu.org>
  
! 	Revert Ada-related part of the previous change.
  
! 	* mt-ppc-aix: Delete.
  
  2005-12-19  Paolo Bonzini  <bonzini@gnu.org>
! 
! 	* mt-ppc-aix, mh-ppc-aix: New.
! 
  2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
  
!         * acx.m4 (GCC_TARGET_TOOL): New.
  
  2005-09-23  Tom Tromey  <tromey@redhat.com>
--- 21,35 ----
  2005-12-20  Paolo Bonzini  <bonzini@gnu.org>
  
!         Revert Ada-related part of the previous change.
  
!         * mt-ppc-aix: Delete.
  
  2005-12-19  Paolo Bonzini  <bonzini@gnu.org>
!         
!         * mt-ppc-aix, mh-ppc-aix: New.
!         
  2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
  
! 	* acx.m4 (GCC_TARGET_TOOL): New.
  
  2005-09-23  Tom Tromey  <tromey@redhat.com>
***************
*** 41,45 ****
  2005-08-12  Paolo Bonzini  <bonzini@gnu.org>
  
! 	* acx.m4 (NCN_CHECK_TARGET_TOOL, NCN_STRICT_CHECK_TOOL,
  	NCN_STRICT_CHECK_TARGET_TOOL): Remove.
  	(NCN_STRICT_CHECK_TOOLS, NCN_STRICT_CHECK_TARGET_TOOLS): New,
--- 40,44 ----
  2005-08-12  Paolo Bonzini  <bonzini@gnu.org>
  
! 	* config/acx.m4 (NCN_CHECK_TARGET_TOOL, NCN_STRICT_CHECK_TOOL,
  	NCN_STRICT_CHECK_TARGET_TOOL): Remove.
  	(NCN_STRICT_CHECK_TOOLS, NCN_STRICT_CHECK_TARGET_TOOLS): New,
*** gcc/config.guess	Tue Feb 14 13:13:03 2006
--- src/config.guess	Sat May 13 21:13:26 2006
***************
*** 2,8 ****
  # Attempt to guess a canonical system name.
  #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
! #   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
  
! timestamp='2005-11-11'
  
  # This file is free software; you can redistribute it and/or modify it
--- 2,9 ----
  # Attempt to guess a canonical system name.
  #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
! #   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
! #   Inc.
  
! timestamp='2006-05-13'
  
  # This file is free software; you can redistribute it and/or modify it
***************
*** 107,111 ****
  trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
  : ${TMPDIR=/tmp} ;
!  { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
   { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
   { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
--- 108,112 ----
  trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
  : ${TMPDIR=/tmp} ;
!  { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
   { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
   { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
***************
*** 207,210 ****
--- 208,214 ----
  	echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
  	exit ;;
+     *:SolidBSD:*:*)
+ 	echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
+ 	exit ;;
      macppc:MirBSD:*:*)
  	echo powerppc-unknown-mirbsd${UNAME_RELEASE}
***************
*** 765,769 ****
  	exit ;;
      *:FreeBSD:*:*)
! 	echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
  	exit ;;
      i*:CYGWIN*:*)
--- 769,780 ----
  	exit ;;
      *:FreeBSD:*:*)
! 	case ${UNAME_MACHINE} in
! 	    pc98)
! 		echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
! 	    amd64)
! 		echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
! 	    *)
! 		echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
! 	esac
  	exit ;;
      i*:CYGWIN*:*)
***************
*** 781,785 ****
  	exit ;;
      x86:Interix*:[345]*)
! 	echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//'
  	exit ;;
      [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
--- 792,799 ----
  	exit ;;
      x86:Interix*:[345]*)
! 	echo i586-pc-interix${UNAME_RELEASE}
! 	exit ;;
!     EM64T:Interix*:[345]*)
! 	echo x86_64-unknown-interix${UNAME_RELEASE}
  	exit ;;
      [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
***************
*** 852,856 ****
  	#endif
  EOF
! 	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
  	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
  	;;
--- 866,874 ----
  	#endif
  EOF
! 	eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
! 	    /^CPU/{
! 		s: ::g
! 		p
! 	    }'`"
  	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
  	;;
***************
*** 871,875 ****
  	#endif
  EOF
! 	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
  	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
  	;;
--- 889,897 ----
  	#endif
  EOF
! 	eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
! 	    /^CPU/{
! 		s: ::g
! 		p
! 	    }'`"
  	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
  	;;
***************
*** 920,923 ****
--- 942,948 ----
  	echo ${UNAME_MACHINE}-unknown-linux-gnu
  	exit ;;
+     vax:Linux:*:*)
+ 	echo ${UNAME_MACHINE}-dec-linux-gnu
+ 	exit ;;
      x86_64:Linux:*:*)
  	echo x86_64-unknown-linux-gnu
***************
*** 965,969 ****
  	# endif
  	#else
! 	#ifdef __INTEL_COMPILER
  	LIBC=gnu
  	#else
--- 990,994 ----
  	# endif
  	#else
! 	#if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
  	LIBC=gnu
  	#else
***************
*** 975,979 ****
  	#endif
  EOF
! 	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
  	test x"${LIBC}" != x && {
  		echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
--- 1000,1008 ----
  	#endif
  EOF
! 	eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
! 	    /^LIBC/{
! 		s: ::g
! 		p
! 	    }'`"
  	test x"${LIBC}" != x && {
  		echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
***************
*** 1264,1267 ****
--- 1293,1299 ----
  	echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
  	exit ;;
+     i*86:rdos:*:*)
+ 	echo ${UNAME_MACHINE}-pc-rdos
+ 	exit ;;
  esac
  
*** gcc/config.sub	Tue Feb 14 13:13:03 2006
--- src/config.sub	Sat May 13 21:13:26 2006
***************
*** 2,8 ****
  # Configuration validation subroutine script.
  #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
! #   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
  
! timestamp='2005-12-06'
  
  # This file is (in principle) common to ALL GNU software.
--- 2,9 ----
  # Configuration validation subroutine script.
  #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
! #   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
! #   Inc.
  
! timestamp='2006-05-13'
  
  # This file is (in principle) common to ALL GNU software.
***************
*** 120,125 ****
  maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
  case $maybe_os in
!   nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \
!   kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*)
      os=-$maybe_os
      basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
--- 121,127 ----
  maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
  case $maybe_os in
!   nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
!   uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
!   storm-chaos* | os2-emx* | rtmk-nova*)
      os=-$maybe_os
      basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
***************
*** 248,252 ****
  	| i370 | i860 | i960 | ia64 \
  	| ip2k | iq2000 \
! 	| m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \
  	| mips | mipsbe | mipseb | mipsel | mipsle \
  	| mips16 \
--- 250,255 ----
  	| i370 | i860 | i960 | ia64 \
  	| ip2k | iq2000 \
! 	| m32c | m32r | m32rle | m68000 | m68k | m88k \
! 	| maxq | mb | microblaze | mcore \
  	| mips | mipsbe | mipseb | mipsel | mipsle \
  	| mips16 \
***************
*** 268,271 ****
--- 271,275 ----
  	| mt \
  	| msp430 \
+ 	| nios | nios2 \
  	| ns16k | ns32k \
  	| or32 \
***************
*** 273,281 ****
  	| powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
  	| pyramid \
! 	| sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
  	| sh64 | sh64le \
! 	| sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \
! 	| sparcv8 | sparcv9 | sparcv9b \
! 	| strongarm \
  	| tahoe | thumb | tic4x | tic80 | tron \
  	| v850 | v850e \
--- 277,285 ----
  	| powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
  	| pyramid \
! 	| sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
  	| sh64 | sh64le \
! 	| sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
! 	| sparcv8 | sparcv9 | sparcv9b | sparcv9v \
! 	| spu | strongarm \
  	| tahoe | thumb | tic4x | tic80 | tron \
  	| v850 | v850e \
***************
*** 285,291 ****
  		basic_machine=$basic_machine-unknown
  		;;
- 	m32c)
- 		basic_machine=$basic_machine-unknown
- 		;;
  	m6811 | m68hc11 | m6812 | m68hc12)
  		# Motorola 68HC11/12.
--- 289,292 ----
***************
*** 295,302 ****
  	m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
  		;;
  
-         ms1)
- 	    basic_machine=mt-unknown
- 	    ;;
  	# We use `pc' rather than `unknown'
  	# because (1) that's what they normally are, and
--- 296,303 ----
  	m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
  		;;
+ 	ms1)
+ 		basic_machine=mt-unknown
+ 		;;
  
  	# We use `pc' rather than `unknown'
  	# because (1) that's what they normally are, and
***************
*** 328,332 ****
  	| i*86-* | i860-* | i960-* | ia64-* \
  	| ip2k-* | iq2000-* \
! 	| m32r-* | m32rle-* \
  	| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
  	| m88110-* | m88k-* | maxq-* | mcore-* \
--- 329,333 ----
  	| i*86-* | i860-* | i960-* | ia64-* \
  	| ip2k-* | iq2000-* \
! 	| m32c-* | m32r-* | m32rle-* \
  	| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
  	| m88110-* | m88k-* | maxq-* | mcore-* \
***************
*** 350,353 ****
--- 351,355 ----
  	| mt-* \
  	| msp430-* \
+ 	| nios-* | nios2-* \
  	| none-* | np1-* | ns16k-* | ns32k-* \
  	| orion-* \
***************
*** 356,364 ****
  	| pyramid-* \
  	| romp-* | rs6000-* \
! 	| sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \
  	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
! 	| sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \
  	| sparclite-* \
! 	| sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
  	| tahoe-* | thumb-* \
  	| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
--- 358,366 ----
  	| pyramid-* \
  	| romp-* | rs6000-* \
! 	| sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
  	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
! 	| sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
  	| sparclite-* \
! 	| sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
  	| tahoe-* | thumb-* \
  	| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
***************
*** 371,376 ****
  	| z8k-*)
  		;;
- 	m32c-*)
- 		;;
  	# Recognize the various machine names and aliases which stand
  	# for a CPU type and a company and sometimes even an OS.
--- 373,376 ----
***************
*** 709,713 ****
  		;;
  	ms1-*)
! 	        basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
  		;;
  	mvs)
--- 709,713 ----
  		;;
  	ms1-*)
! 		basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
  		;;
  	mvs)
***************
*** 818,821 ****
--- 818,827 ----
  		basic_machine=ns32k-pc532
  		;;
+ 	pc98)
+ 		basic_machine=i386-pc
+ 		;;
+ 	pc98-*)
+ 		basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
+ 		;;
  	pentium | p5 | k5 | k6 | nexgen | viac3)
  		basic_machine=i586-pc
***************
*** 874,877 ****
--- 880,887 ----
  		os=-pw32
  		;;
+ 	rdos)
+ 		basic_machine=i386-pc
+ 		os=-rdos
+ 		;;
  	rom68k)
  		basic_machine=m68k-rom68k
***************
*** 1116,1120 ****
  		basic_machine=sh-unknown
  		;;
! 	sparc | sparcv8 | sparcv9 | sparcv9b)
  		basic_machine=sparc-sun
  		;;
--- 1126,1130 ----
  		basic_machine=sh-unknown
  		;;
! 	sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
  		basic_machine=sparc-sun
  		;;
***************
*** 1189,1193 ****
  	      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
  	      | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
! 	      | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \
  	      | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
  	      | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
--- 1199,1204 ----
  	      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
  	      | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
! 	      | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
! 	      | -openbsd* | -solidbsd* \
  	      | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
  	      | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
***************
*** 1196,1200 ****
  	      | -chorusos* | -chorusrdb* \
  	      | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
! 	      | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \
  	      | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
  	      | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
--- 1207,1212 ----
  	      | -chorusos* | -chorusrdb* \
  	      | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
! 	      | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
! 	      | -uxpv* | -beos* | -mpeix* | -udk* \
  	      | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
  	      | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
***************
*** 1203,1207 ****
  	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
  	      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
! 	      | -skyos* | -haiku*)
  	# Remember, each alternative MUST END IN *, to match a version number.
  		;;
--- 1215,1219 ----
  	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
  	      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
! 	      | -skyos* | -haiku* | -rdos*)
  	# Remember, each alternative MUST END IN *, to match a version number.
  		;;
***************
*** 1355,1358 ****
--- 1367,1373 ----
  
  case $basic_machine in
+         spu-*)
+ 		os=-elf
+ 		;;
  	*-acorn)
  		os=-riscix1.2
***************
*** 1364,1370 ****
  		os=-aout
  		;;
!     c4x-* | tic4x-*)
!         os=-coff
!         ;;
  	# This must come before the *-dec entry.
  	pdp10-*)
--- 1379,1385 ----
  		os=-aout
  		;;
!         c4x-* | tic4x-*)
!         	os=-coff
! 		;;
  	# This must come before the *-dec entry.
  	pdp10-*)




More information about the Gcc-patches mailing list