X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=Makefile.in;h=128691f9893badc2d30d3dfac1ae2324b0792c43;hb=6e998ab2353fa1544745c0710706e691a4ead541;hp=85ada56ffcc17dd6529c218834964183e8586fd3;hpb=e552509bcb9d7f5aa2735fb0f8630a04649c55c0;p=deliverable%2Fbinutils-gdb.git diff --git a/Makefile.in b/Makefile.in index 85ada56ffc..128691f989 100644 --- a/Makefile.in +++ b/Makefile.in @@ -3,7 +3,7 @@ # # Makefile for directory with subdirs to build. # Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, -# 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation # # This file is free software; you can redistribute it and/or modify @@ -100,8 +100,6 @@ TOPLEVEL_CONFIGURE_ARGUMENTS=@TOPLEVEL_CONFIGURE_ARGUMENTS@ tooldir = @tooldir@ build_tooldir = @build_tooldir@ -GDB_NLM_DEPS = - # This is the name of the environment variable used for the path to # the libraries. RPATH_ENVVAR = @RPATH_ENVVAR@ @@ -195,6 +193,7 @@ HOST_EXPORTS = \ CXXFLAGS="$(CXXFLAGS)"; export CXXFLAGS; \ GCJ="$(GCJ)"; export GCJ; \ GFORTRAN="$(GFORTRAN)"; export GFORTRAN; \ + GOC="$(GOC)"; export GOC; \ AR="$(AR)"; export AR; \ AS="$(AS)"; export AS; \ CC_FOR_BUILD="$(CC_FOR_BUILD)"; export CC_FOR_BUILD; \ @@ -342,6 +341,7 @@ CXX_FOR_BUILD = @CXX_FOR_BUILD@ DLLTOOL_FOR_BUILD = @DLLTOOL_FOR_BUILD@ GCJ_FOR_BUILD = @GCJ_FOR_BUILD@ GFORTRAN_FOR_BUILD = @GFORTRAN_FOR_BUILD@ +GOC_FOR_BUILD = @GOC_FOR_BUILD@ LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@ LD_FOR_BUILD = @LD_FOR_BUILD@ NM_FOR_BUILD = @NM_FOR_BUILD@ @@ -638,6 +638,26 @@ HOST_LIB_PATH_libelf = \ @endif libelf +CXX_FOR_TARGET_FLAG_TO_PASS = \ + "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" +@if target-libstdc++-v3 +# CXX_FOR_TARGET is tricky to get right for target libs that require a +# functional C++ compiler. When we recurse, if we expand +# CXX_FOR_TARGET before configuring libstdc++-v3, we won't get +# libstdc++ include flags from the script. Instead, we get an +# -funconfigured-* word, so that we'll get errors if this invalid C++ +# command line is used for anything, but also so that we can use the +# word to decide whether or not to pass on this CXX_FOR_TARGET. If we +# don't pass it on, sub-make will use the default definition, that +# re-expands it at the time of use, so we'll get it right when we need +# it. One potential exception is the expansion of CXX_FOR_TARGET +# passed down as part of CXX within TARGET_FLAGS, but this wouldn't +# really work, for C++ host programs can't depend on the current-stage +# C++ target library. +CXX_FOR_TARGET_FLAG_TO_PASS = \ + $(shell if echo "$(CXX_FOR_TARGET)" | grep " -funconfigured-" > /dev/null; then :; else echo '"CXX_FOR_TARGET=$(CXX_FOR_TARGET)"'; fi) +@endif target-libstdc++-v3 + # Flags to pass down to all sub-makes. BASE_FLAGS_TO_PASS = \ "DESTDIR=$(DESTDIR)" \ @@ -705,7 +725,6 @@ BASE_FLAGS_TO_PASS = \ "CC_FOR_TARGET=$(CC_FOR_TARGET)" \ "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \ "CPPFLAGS_FOR_TARGET=$(CPPFLAGS_FOR_TARGET)" \ - "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \ "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \ "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \ "FLAGS_FOR_TARGET=$(FLAGS_FOR_TARGET)" \ @@ -745,6 +764,7 @@ BASE_FLAGS_TO_PASS = \ "STAGEfeedback_CFLAGS=$(STAGEfeedback_CFLAGS)" \ "STAGEfeedback_CXXFLAGS=$(STAGEfeedback_CXXFLAGS)" \ "STAGEfeedback_TFLAGS=$(STAGEfeedback_TFLAGS)" \ + $(CXX_FOR_TARGET_FLAG_TO_PASS) \ "TFLAGS=$(TFLAGS)" \ "CONFIG_SHELL=$(SHELL)" \ "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" @@ -762,6 +782,7 @@ EXTRA_HOST_FLAGS = \ 'DLLTOOL=$(DLLTOOL)' \ 'GCJ=$(GCJ)' \ 'GFORTRAN=$(GFORTRAN)' \ + 'GOC=$(GOC)' \ 'LD=$(LD)' \ 'LIPO=$(LIPO)' \ 'NM=$(NM)' \ @@ -773,18 +794,6 @@ EXTRA_HOST_FLAGS = \ FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) -# Flags that are concerned with the location of the X11 include files -# and library files -# -# NOTE: until the top-level is getting the values via autoconf, it only -# causes problems to have this top-level Makefile overriding the autoconf-set -# values in child directories. Only variables that don't conflict with -# autoconf'ed ones should be passed by X11_FLAGS_TO_PASS for now. -# -X11_FLAGS_TO_PASS = \ - 'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \ - 'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)' - # Flags to pass to stage2 and later makes. POSTSTAGE1_FLAGS_TO_PASS = \ @@ -810,7 +819,7 @@ EXTRA_TARGET_FLAGS = \ 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \ 'GCJ=$$(GCJ_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \ 'GFORTRAN=$$(GFORTRAN_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \ - 'GOC=$$(GOC_FOR_TARGET)' \ + 'GOC=$$(GOC_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \ 'GOCFLAGS=$$(GOCFLAGS_FOR_TARGET)' \ 'LD=$(COMPILER_LD_FOR_TARGET)' \ 'LDFLAGS=$$(LDFLAGS_FOR_TARGET)' \ @@ -3069,6 +3078,121 @@ install.all: install-no-fixedincludes install-no-fixedincludes: installdirs install-host-nogcc \ install-target gcc-no-fixedincludes +.PHONY: install-strip +install-strip: + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(MAKE) $(RECURSE_FLAGS_TO_PASS) installdirs install-strip-host install-strip-target + +.PHONY: install-strip-host +install-strip-host: \ + maybe-install-strip-ash \ + maybe-install-strip-autoconf \ + maybe-install-strip-automake \ + maybe-install-strip-bash \ + maybe-install-strip-bfd \ + maybe-install-strip-opcodes \ + maybe-install-strip-binutils \ + maybe-install-strip-bison \ + maybe-install-strip-byacc \ + maybe-install-strip-bzip2 \ + maybe-install-strip-cgen \ + maybe-install-strip-dejagnu \ + maybe-install-strip-diff \ + maybe-install-strip-dosutils \ + maybe-install-strip-etc \ + maybe-install-strip-fastjar \ + maybe-install-strip-fileutils \ + maybe-install-strip-findutils \ + maybe-install-strip-find \ + maybe-install-strip-fixincludes \ + maybe-install-strip-flex \ + maybe-install-strip-gas \ + maybe-install-strip-gcc \ + maybe-install-strip-gawk \ + maybe-install-strip-gettext \ + maybe-install-strip-gmp \ + maybe-install-strip-mpfr \ + maybe-install-strip-mpc \ + maybe-install-strip-ppl \ + maybe-install-strip-cloog \ + maybe-install-strip-libelf \ + maybe-install-strip-gnuserv \ + maybe-install-strip-gold \ + maybe-install-strip-gprof \ + maybe-install-strip-gzip \ + maybe-install-strip-hello \ + maybe-install-strip-indent \ + maybe-install-strip-intl \ + maybe-install-strip-tcl \ + maybe-install-strip-itcl \ + maybe-install-strip-ld \ + maybe-install-strip-libcpp \ + maybe-install-strip-libdecnumber \ + maybe-install-strip-libgui \ + maybe-install-strip-libiberty \ + maybe-install-strip-libiconv \ + maybe-install-strip-libtool \ + maybe-install-strip-m4 \ + maybe-install-strip-make \ + maybe-install-strip-mmalloc \ + maybe-install-strip-patch \ + maybe-install-strip-perl \ + maybe-install-strip-prms \ + maybe-install-strip-rcs \ + maybe-install-strip-readline \ + maybe-install-strip-release \ + maybe-install-strip-recode \ + maybe-install-strip-sed \ + maybe-install-strip-send-pr \ + maybe-install-strip-shellutils \ + maybe-install-strip-sid \ + maybe-install-strip-sim \ + maybe-install-strip-tar \ + maybe-install-strip-texinfo \ + maybe-install-strip-textutils \ + maybe-install-strip-time \ + maybe-install-strip-uudecode \ + maybe-install-strip-wdiff \ + maybe-install-strip-zip \ + maybe-install-strip-zlib \ + maybe-install-strip-gdb \ + maybe-install-strip-expect \ + maybe-install-strip-guile \ + maybe-install-strip-tk \ + maybe-install-strip-libtermcap \ + maybe-install-strip-utils \ + maybe-install-strip-gnattools \ + maybe-install-strip-lto-plugin + +.PHONY: install-strip-target +install-strip-target: \ + maybe-install-strip-target-libstdc++-v3 \ + maybe-install-strip-target-libmudflap \ + maybe-install-strip-target-libssp \ + maybe-install-strip-target-newlib \ + maybe-install-strip-target-libgcc \ + maybe-install-strip-target-libquadmath \ + maybe-install-strip-target-libgfortran \ + maybe-install-strip-target-libobjc \ + maybe-install-strip-target-libgo \ + maybe-install-strip-target-libtermcap \ + maybe-install-strip-target-winsup \ + maybe-install-strip-target-libgloss \ + maybe-install-strip-target-libiberty \ + maybe-install-strip-target-gperf \ + maybe-install-strip-target-examples \ + maybe-install-strip-target-libffi \ + maybe-install-strip-target-libjava \ + maybe-install-strip-target-zlib \ + maybe-install-strip-target-boehm-gc \ + maybe-install-strip-target-qthreads \ + maybe-install-strip-target-rda \ + maybe-install-strip-target-libada \ + maybe-install-strip-target-libgomp + + ### other supporting targets MAKEDIRS= \ @@ -3593,6 +3717,21 @@ install-ash: installdirs @endif ash +.PHONY: install-strip-ash maybe-install-strip-ash +maybe-install-strip-ash: +@if ash +maybe-install-strip-ash: install-strip-ash + +install-strip-ash: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/ash && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif ash + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-ash info-ash @@ -4018,6 +4157,21 @@ install-autoconf: installdirs @endif autoconf +.PHONY: install-strip-autoconf maybe-install-strip-autoconf +maybe-install-strip-autoconf: +@if autoconf +maybe-install-strip-autoconf: install-strip-autoconf + +install-strip-autoconf: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/autoconf && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif autoconf + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-autoconf info-autoconf @@ -4443,6 +4597,21 @@ install-automake: installdirs @endif automake +.PHONY: install-strip-automake maybe-install-strip-automake +maybe-install-strip-automake: +@if automake +maybe-install-strip-automake: install-strip-automake + +install-strip-automake: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/automake && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif automake + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-automake info-automake @@ -4868,6 +5037,21 @@ install-bash: installdirs @endif bash +.PHONY: install-strip-bash maybe-install-strip-bash +maybe-install-strip-bash: +@if bash +maybe-install-strip-bash: install-strip-bash + +install-strip-bash: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/bash && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif bash + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-bash info-bash @@ -5747,6 +5931,21 @@ install-bfd: installdirs @endif bfd +.PHONY: install-strip-bfd maybe-install-strip-bfd +maybe-install-strip-bfd: +@if bfd +maybe-install-strip-bfd: install-strip-bfd + +install-strip-bfd: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/bfd && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif bfd + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-bfd info-bfd @@ -6613,6 +6812,21 @@ install-opcodes: installdirs @endif opcodes +.PHONY: install-strip-opcodes maybe-install-strip-opcodes +maybe-install-strip-opcodes: +@if opcodes +maybe-install-strip-opcodes: install-strip-opcodes + +install-strip-opcodes: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/opcodes && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif opcodes + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-opcodes info-opcodes @@ -7479,6 +7693,21 @@ install-binutils: installdirs @endif binutils +.PHONY: install-strip-binutils maybe-install-strip-binutils +maybe-install-strip-binutils: +@if binutils +maybe-install-strip-binutils: install-strip-binutils + +install-strip-binutils: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/binutils && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif binutils + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-binutils info-binutils @@ -7894,6 +8123,21 @@ install-bison: installdirs @endif bison +.PHONY: install-strip-bison maybe-install-strip-bison +maybe-install-strip-bison: +@if bison +maybe-install-strip-bison: install-strip-bison + +install-strip-bison: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/bison && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif bison + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-bison info-bison @@ -8322,6 +8566,21 @@ install-byacc: installdirs @endif byacc +.PHONY: install-strip-byacc maybe-install-strip-byacc +maybe-install-strip-byacc: +@if byacc +maybe-install-strip-byacc: install-strip-byacc + +install-strip-byacc: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/byacc && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif byacc + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-byacc info-byacc @@ -8747,6 +9006,21 @@ install-bzip2: installdirs @endif bzip2 +.PHONY: install-strip-bzip2 maybe-install-strip-bzip2 +maybe-install-strip-bzip2: +@if bzip2 +maybe-install-strip-bzip2: install-strip-bzip2 + +install-strip-bzip2: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/bzip2 && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif bzip2 + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-bzip2 info-bzip2 @@ -9172,6 +9446,21 @@ install-cgen: installdirs @endif cgen +.PHONY: install-strip-cgen maybe-install-strip-cgen +maybe-install-strip-cgen: +@if cgen +maybe-install-strip-cgen: install-strip-cgen + +install-strip-cgen: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/cgen && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif cgen + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-cgen info-cgen @@ -9597,6 +9886,21 @@ install-dejagnu: installdirs @endif dejagnu +.PHONY: install-strip-dejagnu maybe-install-strip-dejagnu +maybe-install-strip-dejagnu: +@if dejagnu +maybe-install-strip-dejagnu: install-strip-dejagnu + +install-strip-dejagnu: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/dejagnu && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif dejagnu + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-dejagnu info-dejagnu @@ -10022,6 +10326,21 @@ install-diff: installdirs @endif diff +.PHONY: install-strip-diff maybe-install-strip-diff +maybe-install-strip-diff: +@if diff +maybe-install-strip-diff: install-strip-diff + +install-strip-diff: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/diff && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif diff + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-diff info-diff @@ -10441,6 +10760,21 @@ install-dosutils: installdirs @endif dosutils +.PHONY: install-strip-dosutils maybe-install-strip-dosutils +maybe-install-strip-dosutils: +@if dosutils +maybe-install-strip-dosutils: install-strip-dosutils + +install-strip-dosutils: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/dosutils && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif dosutils + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-dosutils info-dosutils @@ -10866,6 +11200,21 @@ install-etc: installdirs @endif etc +.PHONY: install-strip-etc maybe-install-strip-etc +maybe-install-strip-etc: +@if etc +maybe-install-strip-etc: install-strip-etc + +install-strip-etc: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/etc && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif etc + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-etc info-etc @@ -11294,6 +11643,21 @@ install-fastjar: installdirs @endif fastjar +.PHONY: install-strip-fastjar maybe-install-strip-fastjar +maybe-install-strip-fastjar: +@if fastjar +maybe-install-strip-fastjar: install-strip-fastjar + +install-strip-fastjar: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/fastjar && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif fastjar + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-fastjar info-fastjar @@ -11719,6 +12083,21 @@ install-fileutils: installdirs @endif fileutils +.PHONY: install-strip-fileutils maybe-install-strip-fileutils +maybe-install-strip-fileutils: +@if fileutils +maybe-install-strip-fileutils: install-strip-fileutils + +install-strip-fileutils: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/fileutils && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif fileutils + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-fileutils info-fileutils @@ -12144,6 +12523,21 @@ install-findutils: installdirs @endif findutils +.PHONY: install-strip-findutils maybe-install-strip-findutils +maybe-install-strip-findutils: +@if findutils +maybe-install-strip-findutils: install-strip-findutils + +install-strip-findutils: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/findutils && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif findutils + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-findutils info-findutils @@ -12569,6 +12963,21 @@ install-find: installdirs @endif find +.PHONY: install-strip-find maybe-install-strip-find +maybe-install-strip-find: +@if find +maybe-install-strip-find: install-strip-find + +install-strip-find: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/find && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif find + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-find info-find @@ -12994,6 +13403,21 @@ install-fixincludes: installdirs @endif fixincludes +.PHONY: install-strip-fixincludes maybe-install-strip-fixincludes +maybe-install-strip-fixincludes: +@if fixincludes +maybe-install-strip-fixincludes: install-strip-fixincludes + +install-strip-fixincludes: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/fixincludes && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif fixincludes + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-fixincludes info-fixincludes @@ -13406,6 +13830,21 @@ install-flex: installdirs @endif flex +.PHONY: install-strip-flex maybe-install-strip-flex +maybe-install-strip-flex: +@if flex +maybe-install-strip-flex: install-strip-flex + +install-strip-flex: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/flex && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif flex + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-flex info-flex @@ -14285,6 +14724,21 @@ install-gas: installdirs @endif gas +.PHONY: install-strip-gas maybe-install-strip-gas +maybe-install-strip-gas: +@if gas +maybe-install-strip-gas: install-strip-gas + +install-strip-gas: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/gas && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif gas + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-gas info-gas @@ -15151,6 +15605,21 @@ install-gcc: installdirs @endif gcc +.PHONY: install-strip-gcc maybe-install-strip-gcc +maybe-install-strip-gcc: +@if gcc +maybe-install-strip-gcc: install-strip-gcc + +install-strip-gcc: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/gcc && \ + $(MAKE) $(FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) install-strip) + +@endif gcc + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-gcc info-gcc @@ -15563,6 +16032,21 @@ install-gawk: installdirs @endif gawk +.PHONY: install-strip-gawk maybe-install-strip-gawk +maybe-install-strip-gawk: +@if gawk +maybe-install-strip-gawk: install-strip-gawk + +install-strip-gawk: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/gawk && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif gawk + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-gawk info-gawk @@ -15988,6 +16472,21 @@ install-gettext: installdirs @endif gettext +.PHONY: install-strip-gettext maybe-install-strip-gettext +maybe-install-strip-gettext: +@if gettext +maybe-install-strip-gettext: install-strip-gettext + +install-strip-gettext: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/gettext && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif gettext + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-gettext info-gettext @@ -16867,6 +17366,15 @@ install-gmp: @endif gmp +.PHONY: install-strip-gmp maybe-install-strip-gmp +maybe-install-strip-gmp: +@if gmp +maybe-install-strip-gmp: install-strip-gmp + +install-strip-gmp: + +@endif gmp + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-gmp info-gmp @@ -17733,6 +18241,15 @@ install-mpfr: @endif mpfr +.PHONY: install-strip-mpfr maybe-install-strip-mpfr +maybe-install-strip-mpfr: +@if mpfr +maybe-install-strip-mpfr: install-strip-mpfr + +install-strip-mpfr: + +@endif mpfr + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-mpfr info-mpfr @@ -18599,6 +19116,15 @@ install-mpc: @endif mpc +.PHONY: install-strip-mpc maybe-install-strip-mpc +maybe-install-strip-mpc: +@if mpc +maybe-install-strip-mpc: install-strip-mpc + +install-strip-mpc: + +@endif mpc + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-mpc info-mpc @@ -19465,6 +19991,15 @@ install-ppl: @endif ppl +.PHONY: install-strip-ppl maybe-install-strip-ppl +maybe-install-strip-ppl: +@if ppl +maybe-install-strip-ppl: install-strip-ppl + +install-strip-ppl: + +@endif ppl + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-ppl info-ppl @@ -20331,6 +20866,15 @@ install-cloog: @endif cloog +.PHONY: install-strip-cloog maybe-install-strip-cloog +maybe-install-strip-cloog: +@if cloog +maybe-install-strip-cloog: install-strip-cloog + +install-strip-cloog: + +@endif cloog + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-cloog info-cloog @@ -21197,6 +21741,15 @@ install-libelf: @endif libelf +.PHONY: install-strip-libelf maybe-install-strip-libelf +maybe-install-strip-libelf: +@if libelf +maybe-install-strip-libelf: install-strip-libelf + +install-strip-libelf: + +@endif libelf + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-libelf info-libelf @@ -21609,6 +22162,21 @@ install-gnuserv: installdirs @endif gnuserv +.PHONY: install-strip-gnuserv maybe-install-strip-gnuserv +maybe-install-strip-gnuserv: +@if gnuserv +maybe-install-strip-gnuserv: install-strip-gnuserv + +install-strip-gnuserv: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/gnuserv && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif gnuserv + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-gnuserv info-gnuserv @@ -22488,6 +23056,21 @@ install-gold: installdirs @endif gold +.PHONY: install-strip-gold maybe-install-strip-gold +maybe-install-strip-gold: +@if gold +maybe-install-strip-gold: install-strip-gold + +install-strip-gold: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/gold && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif gold + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-gold info-gold @@ -22900,6 +23483,21 @@ install-gprof: installdirs @endif gprof +.PHONY: install-strip-gprof maybe-install-strip-gprof +maybe-install-strip-gprof: +@if gprof +maybe-install-strip-gprof: install-strip-gprof + +install-strip-gprof: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/gprof && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif gprof + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-gprof info-gprof @@ -23325,6 +23923,21 @@ install-gzip: installdirs @endif gzip +.PHONY: install-strip-gzip maybe-install-strip-gzip +maybe-install-strip-gzip: +@if gzip +maybe-install-strip-gzip: install-strip-gzip + +install-strip-gzip: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/gzip && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif gzip + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-gzip info-gzip @@ -23750,6 +24363,21 @@ install-hello: installdirs @endif hello +.PHONY: install-strip-hello maybe-install-strip-hello +maybe-install-strip-hello: +@if hello +maybe-install-strip-hello: install-strip-hello + +install-strip-hello: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/hello && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif hello + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-hello info-hello @@ -24175,6 +24803,21 @@ install-indent: installdirs @endif indent +.PHONY: install-strip-indent maybe-install-strip-indent +maybe-install-strip-indent: +@if indent +maybe-install-strip-indent: install-strip-indent + +install-strip-indent: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/indent && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif indent + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-indent info-indent @@ -25054,6 +25697,21 @@ install-intl: installdirs @endif intl +.PHONY: install-strip-intl maybe-install-strip-intl +maybe-install-strip-intl: +@if intl +maybe-install-strip-intl: install-strip-intl + +install-strip-intl: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/intl && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif intl + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-intl info-intl @@ -25466,6 +26124,21 @@ install-tcl: installdirs @endif tcl +.PHONY: install-strip-tcl maybe-install-strip-tcl +maybe-install-strip-tcl: +@if tcl +maybe-install-strip-tcl: install-strip-tcl + +install-strip-tcl: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/tcl && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif tcl + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-tcl info-tcl @@ -25876,6 +26549,21 @@ install-itcl: installdirs @endif itcl +.PHONY: install-strip-itcl maybe-install-strip-itcl +maybe-install-strip-itcl: +@if itcl +maybe-install-strip-itcl: install-strip-itcl + +install-strip-itcl: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/itcl && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif itcl + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-itcl info-itcl @@ -26755,6 +27443,21 @@ install-ld: installdirs @endif ld +.PHONY: install-strip-ld maybe-install-strip-ld +maybe-install-strip-ld: +@if ld +maybe-install-strip-ld: install-strip-ld + +install-strip-ld: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/ld && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif ld + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-ld info-ld @@ -27621,6 +28324,21 @@ install-libcpp: installdirs @endif libcpp +.PHONY: install-strip-libcpp maybe-install-strip-libcpp +maybe-install-strip-libcpp: +@if libcpp +maybe-install-strip-libcpp: install-strip-libcpp + +install-strip-libcpp: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/libcpp && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif libcpp + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-libcpp info-libcpp @@ -28487,6 +29205,21 @@ install-libdecnumber: installdirs @endif libdecnumber +.PHONY: install-strip-libdecnumber maybe-install-strip-libdecnumber +maybe-install-strip-libdecnumber: +@if libdecnumber +maybe-install-strip-libdecnumber: install-strip-libdecnumber + +install-strip-libdecnumber: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/libdecnumber && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif libdecnumber + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-libdecnumber info-libdecnumber @@ -28899,6 +29632,21 @@ install-libgui: installdirs @endif libgui +.PHONY: install-strip-libgui maybe-install-strip-libgui +maybe-install-strip-libgui: +@if libgui +maybe-install-strip-libgui: install-strip-libgui + +install-strip-libgui: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/libgui && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif libgui + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-libgui info-libgui @@ -29784,6 +30532,21 @@ install-libiberty: installdirs @endif libiberty +.PHONY: install-strip-libiberty maybe-install-strip-libiberty +maybe-install-strip-libiberty: +@if libiberty +maybe-install-strip-libiberty: install-strip-libiberty + +install-strip-libiberty: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/libiberty && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif libiberty + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-libiberty info-libiberty @@ -30190,6 +30953,15 @@ install-libiconv: @endif libiconv +.PHONY: install-strip-libiconv maybe-install-strip-libiconv +maybe-install-strip-libiconv: +@if libiconv +maybe-install-strip-libiconv: install-strip-libiconv + +install-strip-libiconv: + +@endif libiconv + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-libiconv info-libiconv @@ -30564,6 +31336,21 @@ install-libtool: installdirs @endif libtool +.PHONY: install-strip-libtool maybe-install-strip-libtool +maybe-install-strip-libtool: +@if libtool +maybe-install-strip-libtool: install-strip-libtool + +install-strip-libtool: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/libtool && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif libtool + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-libtool info-libtool @@ -30989,6 +31776,21 @@ install-m4: installdirs @endif m4 +.PHONY: install-strip-m4 maybe-install-strip-m4 +maybe-install-strip-m4: +@if m4 +maybe-install-strip-m4: install-strip-m4 + +install-strip-m4: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/m4 && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif m4 + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-m4 info-m4 @@ -31414,6 +32216,21 @@ install-make: installdirs @endif make +.PHONY: install-strip-make maybe-install-strip-make +maybe-install-strip-make: +@if make +maybe-install-strip-make: install-strip-make + +install-strip-make: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/make && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif make + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-make info-make @@ -31833,6 +32650,21 @@ install-mmalloc: installdirs @endif mmalloc +.PHONY: install-strip-mmalloc maybe-install-strip-mmalloc +maybe-install-strip-mmalloc: +@if mmalloc +maybe-install-strip-mmalloc: install-strip-mmalloc + +install-strip-mmalloc: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/mmalloc && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif mmalloc + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-mmalloc info-mmalloc @@ -32258,6 +33090,21 @@ install-patch: installdirs @endif patch +.PHONY: install-strip-patch maybe-install-strip-patch +maybe-install-strip-patch: +@if patch +maybe-install-strip-patch: install-strip-patch + +install-strip-patch: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/patch && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif patch + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-patch info-patch @@ -32683,6 +33530,21 @@ install-perl: installdirs @endif perl +.PHONY: install-strip-perl maybe-install-strip-perl +maybe-install-strip-perl: +@if perl +maybe-install-strip-perl: install-strip-perl + +install-strip-perl: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/perl && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif perl + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-perl info-perl @@ -33108,6 +33970,21 @@ install-prms: installdirs @endif prms +.PHONY: install-strip-prms maybe-install-strip-prms +maybe-install-strip-prms: +@if prms +maybe-install-strip-prms: install-strip-prms + +install-strip-prms: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/prms && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif prms + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-prms info-prms @@ -33533,6 +34410,21 @@ install-rcs: installdirs @endif rcs +.PHONY: install-strip-rcs maybe-install-strip-rcs +maybe-install-strip-rcs: +@if rcs +maybe-install-strip-rcs: install-strip-rcs + +install-strip-rcs: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/rcs && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif rcs + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-rcs info-rcs @@ -33958,6 +34850,21 @@ install-readline: installdirs @endif readline +.PHONY: install-strip-readline maybe-install-strip-readline +maybe-install-strip-readline: +@if readline +maybe-install-strip-readline: install-strip-readline + +install-strip-readline: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/readline && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif readline + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-readline info-readline @@ -34371,6 +35278,15 @@ install-release: @endif release +.PHONY: install-strip-release maybe-install-strip-release +maybe-install-strip-release: +@if release +maybe-install-strip-release: install-strip-release + +install-strip-release: + +@endif release + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-release info-release @@ -34796,6 +35712,21 @@ install-recode: installdirs @endif recode +.PHONY: install-strip-recode maybe-install-strip-recode +maybe-install-strip-recode: +@if recode +maybe-install-strip-recode: install-strip-recode + +install-strip-recode: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/recode && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif recode + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-recode info-recode @@ -35221,6 +36152,21 @@ install-sed: installdirs @endif sed +.PHONY: install-strip-sed maybe-install-strip-sed +maybe-install-strip-sed: +@if sed +maybe-install-strip-sed: install-strip-sed + +install-strip-sed: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/sed && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif sed + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-sed info-sed @@ -35646,6 +36592,21 @@ install-send-pr: installdirs @endif send-pr +.PHONY: install-strip-send-pr maybe-install-strip-send-pr +maybe-install-strip-send-pr: +@if send-pr +maybe-install-strip-send-pr: install-strip-send-pr + +install-strip-send-pr: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/send-pr && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif send-pr + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-send-pr info-send-pr @@ -36071,6 +37032,21 @@ install-shellutils: installdirs @endif shellutils +.PHONY: install-strip-shellutils maybe-install-strip-shellutils +maybe-install-strip-shellutils: +@if shellutils +maybe-install-strip-shellutils: install-strip-shellutils + +install-strip-shellutils: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/shellutils && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif shellutils + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-shellutils info-shellutils @@ -36496,6 +37472,21 @@ install-sid: installdirs @endif sid +.PHONY: install-strip-sid maybe-install-strip-sid +maybe-install-strip-sid: +@if sid +maybe-install-strip-sid: install-strip-sid + +install-strip-sid: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/sid && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif sid + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-sid info-sid @@ -36921,6 +37912,21 @@ install-sim: installdirs @endif sim +.PHONY: install-strip-sim maybe-install-strip-sim +maybe-install-strip-sim: +@if sim +maybe-install-strip-sim: install-strip-sim + +install-strip-sim: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/sim && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif sim + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-sim info-sim @@ -37346,6 +38352,21 @@ install-tar: installdirs @endif tar +.PHONY: install-strip-tar maybe-install-strip-tar +maybe-install-strip-tar: +@if tar +maybe-install-strip-tar: install-strip-tar + +install-strip-tar: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/tar && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif tar + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-tar info-tar @@ -37765,6 +38786,15 @@ install-texinfo: @endif texinfo +.PHONY: install-strip-texinfo maybe-install-strip-texinfo +maybe-install-strip-texinfo: +@if texinfo +maybe-install-strip-texinfo: install-strip-texinfo + +install-strip-texinfo: + +@endif texinfo + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-texinfo info-texinfo @@ -38190,6 +39220,21 @@ install-textutils: installdirs @endif textutils +.PHONY: install-strip-textutils maybe-install-strip-textutils +maybe-install-strip-textutils: +@if textutils +maybe-install-strip-textutils: install-strip-textutils + +install-strip-textutils: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/textutils && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif textutils + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-textutils info-textutils @@ -38615,6 +39660,21 @@ install-time: installdirs @endif time +.PHONY: install-strip-time maybe-install-strip-time +maybe-install-strip-time: +@if time +maybe-install-strip-time: install-strip-time + +install-strip-time: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/time && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif time + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-time info-time @@ -39040,6 +40100,21 @@ install-uudecode: installdirs @endif uudecode +.PHONY: install-strip-uudecode maybe-install-strip-uudecode +maybe-install-strip-uudecode: +@if uudecode +maybe-install-strip-uudecode: install-strip-uudecode + +install-strip-uudecode: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/uudecode && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif uudecode + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-uudecode info-uudecode @@ -39465,6 +40540,21 @@ install-wdiff: installdirs @endif wdiff +.PHONY: install-strip-wdiff maybe-install-strip-wdiff +maybe-install-strip-wdiff: +@if wdiff +maybe-install-strip-wdiff: install-strip-wdiff + +install-strip-wdiff: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/wdiff && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif wdiff + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-wdiff info-wdiff @@ -39893,6 +40983,21 @@ install-zip: installdirs @endif zip +.PHONY: install-strip-zip maybe-install-strip-zip +maybe-install-strip-zip: +@if zip +maybe-install-strip-zip: install-strip-zip + +install-strip-zip: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/zip && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif zip + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-zip info-zip @@ -40760,6 +41865,15 @@ install-zlib: @endif zlib +.PHONY: install-strip-zlib maybe-install-strip-zlib +maybe-install-strip-zlib: +@if zlib +maybe-install-strip-zlib: install-strip-zlib + +install-strip-zlib: + +@endif zlib + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-zlib info-zlib @@ -41135,7 +42249,7 @@ all-gdb: configure-gdb s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(HOST_EXPORTS) \ (cd $(HOST_SUBDIR)/gdb && \ - $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(X11_FLAGS_TO_PASS) \ + $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \ $(TARGET-gdb)) @endif gdb @@ -41153,7 +42267,7 @@ check-gdb: s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(HOST_EXPORTS) \ (cd $(HOST_SUBDIR)/gdb && \ - $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check) + $(MAKE) $(FLAGS_TO_PASS) check) @endif gdb @@ -41168,7 +42282,22 @@ install-gdb: installdirs s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(HOST_EXPORTS) \ (cd $(HOST_SUBDIR)/gdb && \ - $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install) + $(MAKE) $(FLAGS_TO_PASS) install) + +@endif gdb + +.PHONY: install-strip-gdb maybe-install-strip-gdb +maybe-install-strip-gdb: +@if gdb +maybe-install-strip-gdb: install-strip-gdb + +install-strip-gdb: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/gdb && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) @endif gdb @@ -41186,7 +42315,7 @@ info-gdb: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing info in gdb" ; \ @@ -41212,7 +42341,7 @@ dvi-gdb: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing dvi in gdb" ; \ @@ -41238,7 +42367,7 @@ pdf-gdb: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing pdf in gdb" ; \ @@ -41264,7 +42393,7 @@ html-gdb: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing html in gdb" ; \ @@ -41290,7 +42419,7 @@ TAGS-gdb: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing TAGS in gdb" ; \ @@ -41317,7 +42446,7 @@ install-info-gdb: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing install-info in gdb" ; \ @@ -41344,7 +42473,7 @@ install-pdf-gdb: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing install-pdf in gdb" ; \ @@ -41371,7 +42500,7 @@ install-html-gdb: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing install-html in gdb" ; \ @@ -41397,7 +42526,7 @@ installcheck-gdb: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing installcheck in gdb" ; \ @@ -41422,7 +42551,7 @@ mostlyclean-gdb: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing mostlyclean in gdb" ; \ @@ -41447,7 +42576,7 @@ clean-gdb: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing clean in gdb" ; \ @@ -41472,7 +42601,7 @@ distclean-gdb: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing distclean in gdb" ; \ @@ -41497,7 +42626,7 @@ maintainer-clean-gdb: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing maintainer-clean in gdb" ; \ @@ -41560,7 +42689,7 @@ all-expect: configure-expect s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(HOST_EXPORTS) \ (cd $(HOST_SUBDIR)/expect && \ - $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(X11_FLAGS_TO_PASS) \ + $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \ $(TARGET-expect)) @endif expect @@ -41578,7 +42707,7 @@ check-expect: s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(HOST_EXPORTS) \ (cd $(HOST_SUBDIR)/expect && \ - $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check) + $(MAKE) $(FLAGS_TO_PASS) check) @endif expect @@ -41593,7 +42722,22 @@ install-expect: installdirs s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(HOST_EXPORTS) \ (cd $(HOST_SUBDIR)/expect && \ - $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install) + $(MAKE) $(FLAGS_TO_PASS) install) + +@endif expect + +.PHONY: install-strip-expect maybe-install-strip-expect +maybe-install-strip-expect: +@if expect +maybe-install-strip-expect: install-strip-expect + +install-strip-expect: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/expect && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) @endif expect @@ -41611,7 +42755,7 @@ info-expect: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing info in expect" ; \ @@ -41637,7 +42781,7 @@ dvi-expect: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing dvi in expect" ; \ @@ -41663,7 +42807,7 @@ pdf-expect: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing pdf in expect" ; \ @@ -41689,7 +42833,7 @@ html-expect: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing html in expect" ; \ @@ -41715,7 +42859,7 @@ TAGS-expect: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing TAGS in expect" ; \ @@ -41742,7 +42886,7 @@ install-info-expect: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing install-info in expect" ; \ @@ -41769,7 +42913,7 @@ install-pdf-expect: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing install-pdf in expect" ; \ @@ -41796,7 +42940,7 @@ install-html-expect: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing install-html in expect" ; \ @@ -41822,7 +42966,7 @@ installcheck-expect: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing installcheck in expect" ; \ @@ -41847,7 +42991,7 @@ mostlyclean-expect: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing mostlyclean in expect" ; \ @@ -41872,7 +43016,7 @@ clean-expect: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing clean in expect" ; \ @@ -41897,7 +43041,7 @@ distclean-expect: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing distclean in expect" ; \ @@ -41922,7 +43066,7 @@ maintainer-clean-expect: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing maintainer-clean in expect" ; \ @@ -41985,7 +43129,7 @@ all-guile: configure-guile s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(HOST_EXPORTS) \ (cd $(HOST_SUBDIR)/guile && \ - $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(X11_FLAGS_TO_PASS) \ + $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \ $(TARGET-guile)) @endif guile @@ -42003,7 +43147,7 @@ check-guile: s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(HOST_EXPORTS) \ (cd $(HOST_SUBDIR)/guile && \ - $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check) + $(MAKE) $(FLAGS_TO_PASS) check) @endif guile @@ -42018,7 +43162,22 @@ install-guile: installdirs s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(HOST_EXPORTS) \ (cd $(HOST_SUBDIR)/guile && \ - $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install) + $(MAKE) $(FLAGS_TO_PASS) install) + +@endif guile + +.PHONY: install-strip-guile maybe-install-strip-guile +maybe-install-strip-guile: +@if guile +maybe-install-strip-guile: install-strip-guile + +install-strip-guile: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/guile && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) @endif guile @@ -42036,7 +43195,7 @@ info-guile: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing info in guile" ; \ @@ -42062,7 +43221,7 @@ dvi-guile: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing dvi in guile" ; \ @@ -42088,7 +43247,7 @@ pdf-guile: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing pdf in guile" ; \ @@ -42114,7 +43273,7 @@ html-guile: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing html in guile" ; \ @@ -42140,7 +43299,7 @@ TAGS-guile: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing TAGS in guile" ; \ @@ -42167,7 +43326,7 @@ install-info-guile: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing install-info in guile" ; \ @@ -42194,7 +43353,7 @@ install-pdf-guile: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing install-pdf in guile" ; \ @@ -42221,7 +43380,7 @@ install-html-guile: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing install-html in guile" ; \ @@ -42247,7 +43406,7 @@ installcheck-guile: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing installcheck in guile" ; \ @@ -42272,7 +43431,7 @@ mostlyclean-guile: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing mostlyclean in guile" ; \ @@ -42297,7 +43456,7 @@ clean-guile: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing clean in guile" ; \ @@ -42322,7 +43481,7 @@ distclean-guile: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing distclean in guile" ; \ @@ -42347,7 +43506,7 @@ maintainer-clean-guile: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing maintainer-clean in guile" ; \ @@ -42410,7 +43569,7 @@ all-tk: configure-tk s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(HOST_EXPORTS) \ (cd $(HOST_SUBDIR)/tk && \ - $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(X11_FLAGS_TO_PASS) \ + $(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \ $(TARGET-tk)) @endif tk @@ -42428,7 +43587,7 @@ check-tk: s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(HOST_EXPORTS) \ (cd $(HOST_SUBDIR)/tk && \ - $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check) + $(MAKE) $(FLAGS_TO_PASS) check) @endif tk @@ -42443,7 +43602,22 @@ install-tk: installdirs s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(HOST_EXPORTS) \ (cd $(HOST_SUBDIR)/tk && \ - $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install) + $(MAKE) $(FLAGS_TO_PASS) install) + +@endif tk + +.PHONY: install-strip-tk maybe-install-strip-tk +maybe-install-strip-tk: +@if tk +maybe-install-strip-tk: install-strip-tk + +install-strip-tk: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/tk && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) @endif tk @@ -42461,7 +43635,7 @@ info-tk: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing info in tk" ; \ @@ -42487,7 +43661,7 @@ dvi-tk: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing dvi in tk" ; \ @@ -42513,7 +43687,7 @@ pdf-tk: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing pdf in tk" ; \ @@ -42539,7 +43713,7 @@ html-tk: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing html in tk" ; \ @@ -42565,7 +43739,7 @@ TAGS-tk: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing TAGS in tk" ; \ @@ -42592,7 +43766,7 @@ install-info-tk: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing install-info in tk" ; \ @@ -42619,7 +43793,7 @@ install-pdf-tk: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing install-pdf in tk" ; \ @@ -42646,7 +43820,7 @@ install-html-tk: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing install-html in tk" ; \ @@ -42672,7 +43846,7 @@ installcheck-tk: \ 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing installcheck in tk" ; \ @@ -42697,7 +43871,7 @@ mostlyclean-tk: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing mostlyclean in tk" ; \ @@ -42722,7 +43896,7 @@ clean-tk: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing clean in tk" ; \ @@ -42747,7 +43921,7 @@ distclean-tk: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing distclean in tk" ; \ @@ -42772,7 +43946,7 @@ maintainer-clean-tk: 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 \ + for flag in $(EXTRA_HOST_FLAGS) ; do \ eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \ done; \ echo "Doing maintainer-clean in tk" ; \ @@ -42866,6 +44040,21 @@ install-libtermcap: installdirs @endif libtermcap +.PHONY: install-strip-libtermcap maybe-install-strip-libtermcap +maybe-install-strip-libtermcap: +@if libtermcap +maybe-install-strip-libtermcap: install-strip-libtermcap + +install-strip-libtermcap: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/libtermcap && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif libtermcap + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-libtermcap info-libtermcap @@ -43225,6 +44414,21 @@ install-utils: installdirs @endif utils +.PHONY: install-strip-utils maybe-install-strip-utils +maybe-install-strip-utils: +@if utils +maybe-install-strip-utils: install-strip-utils + +install-strip-utils: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/utils && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif utils + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-utils info-utils @@ -43650,6 +44854,21 @@ install-gnattools: installdirs @endif gnattools +.PHONY: install-strip-gnattools maybe-install-strip-gnattools +maybe-install-strip-gnattools: +@if gnattools +maybe-install-strip-gnattools: install-strip-gnattools + +install-strip-gnattools: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/gnattools && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif gnattools + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-gnattools info-gnattools @@ -44015,7 +45234,7 @@ configure-lto-plugin: libsrcdir="$$s/lto-plugin"; \ $(SHELL) $${libsrcdir}/configure \ $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \ - --target=${target_alias} $${srcdiroption} \ + --target=${target_alias} $${srcdiroption} --enable-shared \ || exit 1 @endif lto-plugin @@ -44049,7 +45268,8 @@ configure-stage1-lto-plugin: $(SHELL) $${libsrcdir}/configure \ $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \ --target=${target_alias} $${srcdiroption} \ - $(STAGE1_CONFIGURE_FLAGS) + $(STAGE1_CONFIGURE_FLAGS) \ + --enable-shared @endif lto-plugin-bootstrap .PHONY: configure-stage2-lto-plugin maybe-configure-stage2-lto-plugin @@ -44082,7 +45302,8 @@ configure-stage2-lto-plugin: $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \ --target=${target_alias} $${srcdiroption} \ --with-build-libsubdir=$(HOST_SUBDIR) \ - $(STAGE2_CONFIGURE_FLAGS) + $(STAGE2_CONFIGURE_FLAGS) \ + --enable-shared @endif lto-plugin-bootstrap .PHONY: configure-stage3-lto-plugin maybe-configure-stage3-lto-plugin @@ -44115,7 +45336,8 @@ configure-stage3-lto-plugin: $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \ --target=${target_alias} $${srcdiroption} \ --with-build-libsubdir=$(HOST_SUBDIR) \ - $(STAGE3_CONFIGURE_FLAGS) + $(STAGE3_CONFIGURE_FLAGS) \ + --enable-shared @endif lto-plugin-bootstrap .PHONY: configure-stage4-lto-plugin maybe-configure-stage4-lto-plugin @@ -44148,7 +45370,8 @@ configure-stage4-lto-plugin: $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \ --target=${target_alias} $${srcdiroption} \ --with-build-libsubdir=$(HOST_SUBDIR) \ - $(STAGE4_CONFIGURE_FLAGS) + $(STAGE4_CONFIGURE_FLAGS) \ + --enable-shared @endif lto-plugin-bootstrap .PHONY: configure-stageprofile-lto-plugin maybe-configure-stageprofile-lto-plugin @@ -44181,7 +45404,8 @@ configure-stageprofile-lto-plugin: $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \ --target=${target_alias} $${srcdiroption} \ --with-build-libsubdir=$(HOST_SUBDIR) \ - $(STAGEprofile_CONFIGURE_FLAGS) + $(STAGEprofile_CONFIGURE_FLAGS) \ + --enable-shared @endif lto-plugin-bootstrap .PHONY: configure-stagefeedback-lto-plugin maybe-configure-stagefeedback-lto-plugin @@ -44214,7 +45438,8 @@ configure-stagefeedback-lto-plugin: $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \ --target=${target_alias} $${srcdiroption} \ --with-build-libsubdir=$(HOST_SUBDIR) \ - $(STAGEfeedback_CONFIGURE_FLAGS) + $(STAGEfeedback_CONFIGURE_FLAGS) \ + --enable-shared @endif lto-plugin-bootstrap @@ -44529,6 +45754,21 @@ install-lto-plugin: installdirs @endif lto-plugin +.PHONY: install-strip-lto-plugin maybe-install-strip-lto-plugin +maybe-install-strip-lto-plugin: +@if lto-plugin +maybe-install-strip-lto-plugin: install-strip-lto-plugin + +install-strip-lto-plugin: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(HOST_EXPORTS) \ + (cd $(HOST_SUBDIR)/lto-plugin && \ + $(MAKE) $(FLAGS_TO_PASS) install-strip) + +@endif lto-plugin + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-lto-plugin info-lto-plugin @@ -45489,6 +46729,21 @@ install-target-libstdc++-v3: installdirs @endif target-libstdc++-v3 +.PHONY: install-strip-target-libstdc++-v3 maybe-install-strip-target-libstdc++-v3 +maybe-install-strip-target-libstdc++-v3: +@if target-libstdc++-v3 +maybe-install-strip-target-libstdc++-v3: install-strip-target-libstdc++-v3 + +install-strip-target-libstdc++-v3: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(RAW_CXX_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libstdc++-v3 && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libstdc++-v3 + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libstdc++-v3 info-target-libstdc++-v3 @@ -45931,6 +47186,21 @@ install-target-libmudflap: installdirs @endif target-libmudflap +.PHONY: install-strip-target-libmudflap maybe-install-strip-target-libmudflap +maybe-install-strip-target-libmudflap: +@if target-libmudflap +maybe-install-strip-target-libmudflap: install-strip-target-libmudflap + +install-strip-target-libmudflap: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libmudflap && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libmudflap + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libmudflap info-target-libmudflap @@ -46373,6 +47643,21 @@ install-target-libssp: installdirs @endif target-libssp +.PHONY: install-strip-target-libssp maybe-install-strip-target-libssp +maybe-install-strip-target-libssp: +@if target-libssp +maybe-install-strip-target-libssp: install-strip-target-libssp + +install-strip-target-libssp: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libssp && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libssp + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libssp info-target-libssp @@ -46815,6 +48100,21 @@ install-target-newlib: installdirs @endif target-newlib +.PHONY: install-strip-target-newlib maybe-install-strip-target-newlib +maybe-install-strip-target-newlib: +@if target-newlib +maybe-install-strip-target-newlib: install-strip-target-newlib + +install-strip-target-newlib: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/newlib && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-newlib + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-newlib info-target-newlib @@ -47778,6 +49078,21 @@ install-target-libgcc: installdirs @endif target-libgcc +.PHONY: install-strip-target-libgcc maybe-install-strip-target-libgcc +maybe-install-strip-target-libgcc: +@if target-libgcc +maybe-install-strip-target-libgcc: install-strip-target-libgcc + +install-strip-target-libgcc: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libgcc && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libgcc + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libgcc info-target-libgcc @@ -48220,6 +49535,21 @@ install-target-libquadmath: installdirs @endif target-libquadmath +.PHONY: install-strip-target-libquadmath maybe-install-strip-target-libquadmath +maybe-install-strip-target-libquadmath: +@if target-libquadmath +maybe-install-strip-target-libquadmath: install-strip-target-libquadmath + +install-strip-target-libquadmath: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libquadmath && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libquadmath + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libquadmath info-target-libquadmath @@ -48662,6 +49992,21 @@ install-target-libgfortran: installdirs @endif target-libgfortran +.PHONY: install-strip-target-libgfortran maybe-install-strip-target-libgfortran +maybe-install-strip-target-libgfortran: +@if target-libgfortran +maybe-install-strip-target-libgfortran: install-strip-target-libgfortran + +install-strip-target-libgfortran: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libgfortran && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libgfortran + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libgfortran info-target-libgfortran @@ -49104,6 +50449,21 @@ install-target-libobjc: installdirs @endif target-libobjc +.PHONY: install-strip-target-libobjc maybe-install-strip-target-libobjc +maybe-install-strip-target-libobjc: +@if target-libobjc +maybe-install-strip-target-libobjc: install-strip-target-libobjc + +install-strip-target-libobjc: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libobjc && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libobjc + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libobjc info-target-libobjc @@ -49546,6 +50906,21 @@ install-target-libgo: installdirs @endif target-libgo +.PHONY: install-strip-target-libgo maybe-install-strip-target-libgo +maybe-install-strip-target-libgo: +@if target-libgo +maybe-install-strip-target-libgo: install-strip-target-libgo + +install-strip-target-libgo: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libgo && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libgo + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libgo info-target-libgo @@ -49983,6 +51358,21 @@ install-target-libtermcap: installdirs @endif target-libtermcap +.PHONY: install-strip-target-libtermcap maybe-install-strip-target-libtermcap +maybe-install-strip-target-libtermcap: +@if target-libtermcap +maybe-install-strip-target-libtermcap: install-strip-target-libtermcap + +install-strip-target-libtermcap: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libtermcap && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libtermcap + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libtermcap info-target-libtermcap @@ -50365,6 +51755,21 @@ install-target-winsup: installdirs @endif target-winsup +.PHONY: install-strip-target-winsup maybe-install-strip-target-winsup +maybe-install-strip-target-winsup: +@if target-winsup +maybe-install-strip-target-winsup: install-strip-target-winsup + +install-strip-target-winsup: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/winsup && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-winsup + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-winsup info-target-winsup @@ -50802,6 +52207,21 @@ install-target-libgloss: installdirs @endif target-libgloss +.PHONY: install-strip-target-libgloss maybe-install-strip-target-libgloss +maybe-install-strip-target-libgloss: +@if target-libgloss +maybe-install-strip-target-libgloss: install-strip-target-libgloss + +install-strip-target-libgloss: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libgloss && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libgloss + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libgloss info-target-libgloss @@ -51244,6 +52664,21 @@ install-target-libiberty: installdirs @endif target-libiberty +.PHONY: install-strip-target-libiberty maybe-install-strip-target-libiberty +maybe-install-strip-target-libiberty: +@if target-libiberty +maybe-install-strip-target-libiberty: install-strip-target-libiberty + +install-strip-target-libiberty: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libiberty && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libiberty + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libiberty info-target-libiberty @@ -51686,6 +53121,21 @@ install-target-gperf: installdirs @endif target-gperf +.PHONY: install-strip-target-gperf maybe-install-strip-target-gperf +maybe-install-strip-target-gperf: +@if target-gperf +maybe-install-strip-target-gperf: install-strip-target-gperf + +install-strip-target-gperf: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/gperf && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-gperf + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-gperf info-target-gperf @@ -52118,6 +53568,16 @@ install-target-examples: @endif target-examples +.PHONY: install-strip-target-examples maybe-install-strip-target-examples +maybe-install-strip-target-examples: +@if target-examples +maybe-install-strip-target-examples: install-strip-target-examples + +# Dummy target for uninstallable. +install-strip-target-examples: + +@endif target-examples + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-examples info-target-examples @@ -52560,6 +54020,21 @@ install-target-libffi: installdirs @endif target-libffi +.PHONY: install-strip-target-libffi maybe-install-strip-target-libffi +maybe-install-strip-target-libffi: +@if target-libffi +maybe-install-strip-target-libffi: install-strip-target-libffi + +install-strip-target-libffi: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libffi && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libffi + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libffi info-target-libffi @@ -53002,6 +54477,21 @@ install-target-libjava: installdirs @endif target-libjava +.PHONY: install-strip-target-libjava maybe-install-strip-target-libjava +maybe-install-strip-target-libjava: +@if target-libjava +maybe-install-strip-target-libjava: install-strip-target-libjava + +install-strip-target-libjava: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(RAW_CXX_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libjava && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libjava + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libjava info-target-libjava @@ -53444,6 +54934,21 @@ install-target-zlib: installdirs @endif target-zlib +.PHONY: install-strip-target-zlib maybe-install-strip-target-zlib +maybe-install-strip-target-zlib: +@if target-zlib +maybe-install-strip-target-zlib: install-strip-target-zlib + +install-strip-target-zlib: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/zlib && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-zlib + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-zlib info-target-zlib @@ -53886,6 +55391,21 @@ install-target-boehm-gc: installdirs @endif target-boehm-gc +.PHONY: install-strip-target-boehm-gc maybe-install-strip-target-boehm-gc +maybe-install-strip-target-boehm-gc: +@if target-boehm-gc +maybe-install-strip-target-boehm-gc: install-strip-target-boehm-gc + +install-strip-target-boehm-gc: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/boehm-gc && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-boehm-gc + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-boehm-gc info-target-boehm-gc @@ -54328,6 +55848,21 @@ install-target-qthreads: installdirs @endif target-qthreads +.PHONY: install-strip-target-qthreads maybe-install-strip-target-qthreads +maybe-install-strip-target-qthreads: +@if target-qthreads +maybe-install-strip-target-qthreads: install-strip-target-qthreads + +install-strip-target-qthreads: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/qthreads && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-qthreads + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-qthreads info-target-qthreads @@ -54770,6 +56305,21 @@ install-target-rda: installdirs @endif target-rda +.PHONY: install-strip-target-rda maybe-install-strip-target-rda +maybe-install-strip-target-rda: +@if target-rda +maybe-install-strip-target-rda: install-strip-target-rda + +install-strip-target-rda: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/rda && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-rda + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-rda info-target-rda @@ -55212,6 +56762,21 @@ install-target-libada: installdirs @endif target-libada +.PHONY: install-strip-target-libada maybe-install-strip-target-libada +maybe-install-strip-target-libada: +@if target-libada +maybe-install-strip-target-libada: install-strip-target-libada + +install-strip-target-libada: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libada && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libada + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libada info-target-libada @@ -56180,6 +57745,21 @@ install-target-libgomp: installdirs @endif target-libgomp +.PHONY: install-strip-target-libgomp maybe-install-strip-target-libgomp +maybe-install-strip-target-libgomp: +@if target-libgomp +maybe-install-strip-target-libgomp: install-strip-target-libgomp + +install-strip-target-libgomp: installdirs + @: $(MAKE); $(unstage) + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(NORMAL_TARGET_EXPORTS) \ + (cd $(TARGET_SUBDIR)/libgomp && \ + $(MAKE) $(TARGET_FLAGS_TO_PASS) install-strip) + +@endif target-libgomp + # Other targets (info, dvi, pdf, etc.) .PHONY: maybe-info-target-libgomp info-target-libgomp @@ -58672,6 +60252,14 @@ configure-stage3-gcc: maybe-configure-stage3-intl configure-stage4-gcc: maybe-configure-stage4-intl configure-stageprofile-gcc: maybe-configure-stageprofile-intl configure-stagefeedback-gcc: maybe-configure-stagefeedback-intl +configure-gcc: maybe-all-lto-plugin + +configure-stage1-gcc: maybe-all-stage1-lto-plugin +configure-stage2-gcc: maybe-all-stage2-lto-plugin +configure-stage3-gcc: maybe-all-stage3-lto-plugin +configure-stage4-gcc: maybe-all-stage4-lto-plugin +configure-stageprofile-gcc: maybe-all-stageprofile-lto-plugin +configure-stagefeedback-gcc: maybe-all-stagefeedback-lto-plugin configure-gcc: maybe-all-binutils configure-stage1-gcc: maybe-all-stage1-binutils @@ -58849,6 +60437,14 @@ all-stage4-gcc: maybe-all-stage4-libiberty all-stageprofile-gcc: maybe-all-stageprofile-libiberty all-stagefeedback-gcc: maybe-all-stagefeedback-libiberty all-gcc: maybe-all-fixincludes +all-gcc: maybe-all-lto-plugin + +all-stage1-gcc: maybe-all-stage1-lto-plugin +all-stage2-gcc: maybe-all-stage2-lto-plugin +all-stage3-gcc: maybe-all-stage3-lto-plugin +all-stage4-gcc: maybe-all-stage4-lto-plugin +all-stageprofile-gcc: maybe-all-stageprofile-lto-plugin +all-stagefeedback-gcc: maybe-all-stagefeedback-lto-plugin info-gcc: maybe-all-build-libiberty info-stage1-gcc: maybe-all-build-libiberty @@ -58882,6 +60478,8 @@ html-stage4-gcc: maybe-all-build-libiberty html-stageprofile-gcc: maybe-all-build-libiberty html-stagefeedback-gcc: maybe-all-build-libiberty install-gcc: maybe-install-fixincludes +install-gcc: maybe-install-lto-plugin +install-strip-gcc: maybe-install-strip-fixincludes configure-libcpp: configure-libiberty configure-stage1-libcpp: configure-stage1-libiberty @@ -58916,14 +60514,15 @@ all-stageprofile-libcpp: maybe-all-stageprofile-intl all-stagefeedback-libcpp: maybe-all-stagefeedback-intl all-fixincludes: maybe-all-libiberty all-gnattools: maybe-all-target-libada -all-lto-plugin: maybe-all-gcc - -all-stage1-lto-plugin: maybe-all-stage1-gcc -all-stage2-lto-plugin: maybe-all-stage2-gcc -all-stage3-lto-plugin: maybe-all-stage3-gcc -all-stage4-lto-plugin: maybe-all-stage4-gcc -all-stageprofile-lto-plugin: maybe-all-stageprofile-gcc -all-stagefeedback-lto-plugin: maybe-all-stagefeedback-gcc +all-lto-plugin: maybe-all-libiberty + +all-stage1-lto-plugin: maybe-all-stage1-libiberty +all-stage2-lto-plugin: maybe-all-stage2-libiberty +all-stage3-lto-plugin: maybe-all-stage3-libiberty +all-stage4-lto-plugin: maybe-all-stage4-libiberty +all-stageprofile-lto-plugin: maybe-all-stageprofile-libiberty +all-stagefeedback-lto-plugin: maybe-all-stagefeedback-libiberty +all-utils: maybe-all-libiberty configure-mpfr: maybe-all-gmp configure-stage1-mpfr: maybe-all-stage1-gmp @@ -58976,6 +60575,7 @@ all-gdb: maybe-all-build-bison all-gdb: maybe-all-build-byacc all-gdb: maybe-all-sim all-gdb: maybe-all-libdecnumber +all-gdb: maybe-all-libtermcap configure-libgui: maybe-configure-tcl configure-libgui: maybe-configure-tk all-libgui: maybe-all-tcl @@ -59094,7 +60694,9 @@ all-stage4-binutils: maybe-all-stage4-intl all-stageprofile-binutils: maybe-all-stageprofile-intl all-stagefeedback-binutils: maybe-all-stagefeedback-intl install-binutils: maybe-install-opcodes +install-strip-binutils: maybe-install-strip-opcodes install-opcodes: maybe-install-bfd +install-strip-opcodes: maybe-install-strip-bfd configure-gas: maybe-configure-intl configure-stage1-gas: maybe-configure-stage1-intl @@ -59205,6 +60807,7 @@ all-stage4-ld: maybe-all-stage4-intl all-stageprofile-ld: maybe-all-stageprofile-intl all-stagefeedback-ld: maybe-all-stagefeedback-intl install-ld: maybe-install-gold +install-strip-ld: maybe-install-strip-gold configure-gold: maybe-configure-intl configure-stage1-gold: maybe-configure-stage1-intl @@ -59313,6 +60916,7 @@ configure-itcl: maybe-configure-tk all-itcl: maybe-all-tcl all-itcl: maybe-all-tk install-itcl: maybe-install-tcl +install-strip-itcl: maybe-install-strip-tcl configure-tk: maybe-configure-tcl all-tk: maybe-all-tcl all-sid: maybe-all-libiberty @@ -59321,7 +60925,9 @@ all-sid: maybe-all-opcodes all-sid: maybe-all-tcl all-sid: maybe-all-tk install-sid: maybe-install-tcl +install-strip-sid: maybe-install-strip-tcl install-sid: maybe-install-tk +install-strip-sid: maybe-install-strip-tk configure-sim: maybe-configure-intl all-sim: maybe-all-intl all-sim: maybe-all-libiberty