public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] bfd: enable silent build rules
@ 2021-11-26  3:59 Mike Frysinger
  2021-11-26  4:15 ` [PATCH 1/2] binutils: " Mike Frysinger
  0 siblings, 1 reply; 12+ messages in thread
From: Mike Frysinger @ 2021-11-26  3:59 UTC (permalink / raw)
  To: binutils

Also add $(AM_V_xxx) to various manual rules in here.
---
 binutils/Makefile.am     | 100 +++++++++++++++----------------
 binutils/Makefile.in     | 100 +++++++++++++++----------------
 binutils/configure       |  43 +++++++++++++-
 binutils/configure.ac    |   1 +
 binutils/doc/Makefile.am | 124 +++++++++++++++++++--------------------
 binutils/doc/Makefile.in | 124 +++++++++++++++++++--------------------
 6 files changed, 266 insertions(+), 226 deletions(-)

diff --git a/binutils/Makefile.am b/binutils/Makefile.am
index ee2a66302cdc..9ceb63da7b80 100644
--- a/binutils/Makefile.am
+++ b/binutils/Makefile.am
@@ -214,7 +214,7 @@ check-DEJAGNU: site.exp
 	fi
 
 development.exp: $(BFDDIR)/development.sh
-	$(EGREP) "(development|experimental)=" $(BFDDIR)/development.sh  \
+	$(AM_V_GEN)$(EGREP) "(development|experimental)=" $(BFDDIR)/development.sh  \
 	  | $(AWK) -F= '{ print "set " $$1 " " $$2 }' > $@
 
 installcheck-local:
@@ -269,14 +269,14 @@ objdump_LDADD = $(OBJDUMP_PRIVATE_OFILES) $(OPCODES) $(LIBCTF) $(BFDLIB) $(LIBIB
 
 objdump.@OBJEXT@:objdump.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(OBJDUMP_DEFS) $(srcdir)/objdump.c
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(OBJDUMP_DEFS) $(srcdir)/objdump.c
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='objdump.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
+	$(AM_V_CC)$(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
 endif
 
 cxxfilt_SOURCES = cxxfilt.c $(BULIBS)
@@ -311,32 +311,32 @@ addr2line_SOURCES = addr2line.c $(BULIBS)
 #	-ln $(OBJCOPY_PROG) $(STRIP_PROG)
 
 sysroff.c: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
-	./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
-	./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
-	./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
+	$(AM_V_GEN)./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
+	$(AM_V_at)./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
+	$(AM_V_at)./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
 
 sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
-	./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
+	$(AM_V_GEN)./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
 
 sysinfo$(EXEEXT_FOR_BUILD): sysinfo.@OBJEXT@ syslex_wrap.@OBJEXT@
-	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ sysinfo.@OBJEXT@ syslex_wrap.@OBJEXT@
+	$(AM_V_CCLD)$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ sysinfo.@OBJEXT@ syslex_wrap.@OBJEXT@
 
 syslex_wrap.@OBJEXT@: syslex_wrap.c syslex.c sysinfo.h config.h
-	$(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/syslex_wrap.c
+	$(AM_V_CC)$(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/syslex_wrap.c
 
 sysinfo.@OBJEXT@: sysinfo.c
-	if [ -r sysinfo.c ]; then \
+	$(AM_V_CC)if [ -r sysinfo.c ]; then \
 	  $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) sysinfo.c ; \
 	else \
 	  $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/sysinfo.c ; \
 	fi
 
 bin2c$(EXEEXT_FOR_BUILD): bin2c.c
-	$(CC_FOR_BUILD) -o $@ $(AM_CPPFLAGS) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) $(srcdir)/bin2c.c
+	$(AM_V_CCLD)$(CC_FOR_BUILD) -o $@ $(AM_CPPFLAGS) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) $(srcdir)/bin2c.c
 
 embedspu: embedspu.sh Makefile
-	awk '/^program_transform_name=/ {print "program_transform_name=\"$(program_transform_name)\""; next} {print}' < $< > $@
-	chmod a+x $@
+	$(AM_V_GEN)awk '/^program_transform_name=/ {print "program_transform_name=\"$(program_transform_name)\""; next} {print}' < $< > $@
+	$(AM_V_at)chmod a+x $@
 
 # We need these for parallel make.
 sysinfo.h: sysinfo.c
@@ -345,122 +345,122 @@ sysinfo.h: sysinfo.c
 # yacc will produce working code which contain compile time warnings.
 arparse.@OBJEXT@: arparse.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='arparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
 endif
 
 arlex.@OBJEXT@: arlex.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='arlex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
 endif
 
 dwarf.@OBJEXT@: dwarf.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='dwarf.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
+	$(AM_V_CC)$(COMPILE) $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
 endif
 
 sysroff.@OBJEXT@: sysroff.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='sysroff.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
 endif
 
 defparse.@OBJEXT@: defparse.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='defparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
 endif
 
 deflex.@OBJEXT@: deflex.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='deflex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
 endif
 
 rcparse.@OBJEXT@: rcparse.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='rcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
 endif
 
 mcparse.@OBJEXT@: mcparse.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='mcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
 endif
 
 rclex.@OBJEXT@: rclex.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/rclex.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/rclex.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='rclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c $(srcdir)/rclex.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c $(srcdir)/rclex.c $(NO_WERROR)
 endif
 
 mclex.@OBJEXT@: mclex.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/mclex.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/mclex.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='mclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c $(srcdir)/mclex.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c $(srcdir)/mclex.c $(NO_WERROR)
 endif
 
 srconv_SOURCES = srconv.c coffgrok.c $(BULIBS)
@@ -471,26 +471,26 @@ dlltool_LDADD = $(BFDLIB) $(LIBIBERTY) $(LEXLIB) $(LIBINTL)
 
 dlltool.@OBJEXT@:
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='dlltool.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
+	$(AM_V_CC)$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
 endif
 
 rescoff.@OBJEXT@:
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='rescoff.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
+	$(AM_V_CC)$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
 endif
 
 coffdump_SOURCES = coffdump.c coffgrok.c $(BULIBS)
diff --git a/binutils/Makefile.in b/binutils/Makefile.in
index 8f44b5667254..1986261f9e33 100644
--- a/binutils/Makefile.in
+++ b/binutils/Makefile.in
@@ -1452,18 +1452,18 @@ check-DEJAGNU: site.exp
 	fi
 
 development.exp: $(BFDDIR)/development.sh
-	$(EGREP) "(development|experimental)=" $(BFDDIR)/development.sh  \
+	$(AM_V_GEN)$(EGREP) "(development|experimental)=" $(BFDDIR)/development.sh  \
 	  | $(AWK) -F= '{ print "set " $$1 " " $$2 }' > $@
 
 installcheck-local:
 	/bin/sh $(srcdir)/sanity.sh $(bindir)
 
 objdump.@OBJEXT@:objdump.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(OBJDUMP_DEFS) $(srcdir)/objdump.c
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(OBJDUMP_DEFS) $(srcdir)/objdump.c
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='objdump.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
 
 # The following is commented out for the conversion to automake.
 # This rule creates a single binary that switches between ar and ranlib
@@ -1484,32 +1484,32 @@ objdump.@OBJEXT@:objdump.c
 #	-ln $(OBJCOPY_PROG) $(STRIP_PROG)
 
 sysroff.c: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
-	./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
-	./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
-	./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
+	$(AM_V_GEN)./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
+	$(AM_V_at)./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
+	$(AM_V_at)./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
 
 sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
-	./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
+	$(AM_V_GEN)./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
 
 sysinfo$(EXEEXT_FOR_BUILD): sysinfo.@OBJEXT@ syslex_wrap.@OBJEXT@
-	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ sysinfo.@OBJEXT@ syslex_wrap.@OBJEXT@
+	$(AM_V_CCLD)$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ sysinfo.@OBJEXT@ syslex_wrap.@OBJEXT@
 
 syslex_wrap.@OBJEXT@: syslex_wrap.c syslex.c sysinfo.h config.h
-	$(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/syslex_wrap.c
+	$(AM_V_CC)$(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/syslex_wrap.c
 
 sysinfo.@OBJEXT@: sysinfo.c
-	if [ -r sysinfo.c ]; then \
+	$(AM_V_CC)if [ -r sysinfo.c ]; then \
 	  $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) sysinfo.c ; \
 	else \
 	  $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/sysinfo.c ; \
 	fi
 
 bin2c$(EXEEXT_FOR_BUILD): bin2c.c
-	$(CC_FOR_BUILD) -o $@ $(AM_CPPFLAGS) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) $(srcdir)/bin2c.c
+	$(AM_V_CCLD)$(CC_FOR_BUILD) -o $@ $(AM_CPPFLAGS) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) $(srcdir)/bin2c.c
 
 embedspu: embedspu.sh Makefile
-	awk '/^program_transform_name=/ {print "program_transform_name=\"$(program_transform_name)\""; next} {print}' < $< > $@
-	chmod a+x $@
+	$(AM_V_GEN)awk '/^program_transform_name=/ {print "program_transform_name=\"$(program_transform_name)\""; next} {print}' < $< > $@
+	$(AM_V_at)chmod a+x $@
 
 # We need these for parallel make.
 sysinfo.h: sysinfo.c
@@ -1517,89 +1517,89 @@ sysinfo.h: sysinfo.c
 # Disable -Werror, if it has been enabled, since old versions of bison/
 # yacc will produce working code which contain compile time warnings.
 arparse.@OBJEXT@: arparse.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='arparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
 
 arlex.@OBJEXT@: arlex.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='arlex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
 
 dwarf.@OBJEXT@: dwarf.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='dwarf.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
 
 sysroff.@OBJEXT@: sysroff.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='sysroff.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
 
 defparse.@OBJEXT@: defparse.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='defparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
 
 deflex.@OBJEXT@: deflex.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='deflex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
 
 rcparse.@OBJEXT@: rcparse.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='rcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
 
 mcparse.@OBJEXT@: mcparse.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='mcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
 
 rclex.@OBJEXT@: rclex.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/rclex.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/rclex.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='rclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c $(srcdir)/rclex.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c $(srcdir)/rclex.c $(NO_WERROR)
 
 mclex.@OBJEXT@: mclex.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/mclex.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/mclex.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='mclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c $(srcdir)/mclex.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c $(srcdir)/mclex.c $(NO_WERROR)
 srconv.@OBJEXT@: sysroff.c
 
 dlltool.@OBJEXT@:
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='dlltool.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
 
 rescoff.@OBJEXT@:
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='rescoff.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
 sysdump.@OBJEXT@: sysroff.c
 
 diststuff: $(EXTRA_DIST) info
diff --git a/binutils/configure b/binutils/configure
index 2cdaeae4e690..1df56455fa7a 100755
--- a/binutils/configure
+++ b/binutils/configure
@@ -3334,6 +3334,45 @@ END
   fi
 fi
 
+# Check whether --enable-silent-rules was given.
+if test "${enable_silent_rules+set}" = set; then :
+  enableval=$enable_silent_rules;
+fi
+
+case $enable_silent_rules in # (((
+  yes) AM_DEFAULT_VERBOSITY=0;;
+   no) AM_DEFAULT_VERBOSITY=1;;
+    *) AM_DEFAULT_VERBOSITY=0;;
+esac
+am_make=${MAKE-make}
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
+$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
+if ${am_cv_make_support_nested_variables+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  if $as_echo 'TRUE=$(BAR$(V))
+BAR0=false
+BAR1=true
+V=1
+am__doit:
+	@$(TRUE)
+.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
+  am_cv_make_support_nested_variables=yes
+else
+  am_cv_make_support_nested_variables=no
+fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
+$as_echo "$am_cv_make_support_nested_variables" >&6; }
+if test $am_cv_make_support_nested_variables = yes; then
+    AM_V='$(V)'
+  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
+else
+  AM_V=$AM_DEFAULT_VERBOSITY
+  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
+fi
+AM_BACKSLASH='\'
+
 
 ac_ext=c
 ac_cpp='$CPP $CPPFLAGS'
@@ -10932,7 +10971,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 10935 "configure"
+#line 10974 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -11038,7 +11077,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 11041 "configure"
+#line 11080 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
diff --git a/binutils/configure.ac b/binutils/configure.ac
index 9d17b399aecb..b0677ba5f20e 100644
--- a/binutils/configure.ac
+++ b/binutils/configure.ac
@@ -25,6 +25,7 @@ AC_CONFIG_SRCDIR(ar.c)
 AC_CANONICAL_TARGET
 
 AM_INIT_AUTOMAKE
+AM_SILENT_RULES([yes])
 
 AC_PROG_CC
 AC_GNU_SOURCE
diff --git a/binutils/doc/Makefile.am b/binutils/doc/Makefile.am
index ba53f92560bb..90b238ddf8d9 100644
--- a/binutils/doc/Makefile.am
+++ b/binutils/doc/Makefile.am
@@ -59,114 +59,114 @@ TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
 
 # Man page generation from texinfo
 addr2line.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
-	-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
+	$(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f addr2line.pod
+	$(AM_V_at)rm -f addr2line.pod
 
 ar.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
-	-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
+	$(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f ar.pod
+	$(AM_V_at)rm -f ar.pod
 
 dlltool.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
-	-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
+	$(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f dlltool.pod
+	$(AM_V_at)rm -f dlltool.pod
 
 nm.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
-	-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
+	$(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f nm.pod
+	$(AM_V_at)rm -f nm.pod
 
 objcopy.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
-	-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
+	$(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f objcopy.pod
+	$(AM_V_at)rm -f objcopy.pod
 
 objdump.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
-	-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
+	$(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f objdump.pod
+	$(AM_V_at)rm -f objdump.pod
 
 ranlib.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
-	-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
+	$(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f ranlib.pod
+	$(AM_V_at)rm -f ranlib.pod
 
 readelf.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
-	-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
+	$(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f readelf.pod
+	$(AM_V_at)rm -f readelf.pod
 
 size.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
-	-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
+	$(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f size.pod
+	$(AM_V_at)rm -f size.pod
 
 strings.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
-	-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
+	$(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f strings.pod
+	$(AM_V_at)rm -f strings.pod
 
 strip.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
-	-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
+	$(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f strip.pod
+	$(AM_V_at)rm -f strip.pod
 
 elfedit.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
-	-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
+	$(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f elfedit.pod
+	$(AM_V_at)rm -f elfedit.pod
 
 windres.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
-	-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
+	$(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f windres.pod
+	$(AM_V_at)rm -f windres.pod
 
 windmc.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
-	-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
+	$(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f windmc.pod
+	$(AM_V_at)rm -f windmc.pod
 
 cxxfilt.man:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
-	-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
+	$(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f $(DEMANGLER_NAME).pod
+	$(AM_V_at)rm -f $(DEMANGLER_NAME).pod
 
 MAINTAINERCLEANFILES = $(man_MANS) binutils.info cxxfilt.man
 
 $(DEMANGLER_NAME).1: cxxfilt.man Makefile
-	if test -f cxxfilt.man; then \
+	$(AM_V_GEN)if test -f cxxfilt.man; then \
 	  man=cxxfilt.man; \
 	else \
 	  man=$(srcdir)/cxxfilt.man; \
@@ -177,7 +177,7 @@ $(DEMANGLER_NAME).1: cxxfilt.man Makefile
 
 html-local: binutils/index.html
 binutils/index.html: binutils.texi $(binutils_TEXINFOS)
-	$(AM_V_at)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
+	$(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
 	  --split=node -I$(srcdir) $(srcdir)/binutils.texi
 
 # Maintenance
diff --git a/binutils/doc/Makefile.in b/binutils/doc/Makefile.in
index 024a642e7994..d42cdd87929b 100644
--- a/binutils/doc/Makefile.in
+++ b/binutils/doc/Makefile.in
@@ -916,112 +916,112 @@ uninstall-man: uninstall-man1
 
 # Man page generation from texinfo
 addr2line.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
-	-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
+	$(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f addr2line.pod
+	$(AM_V_at)rm -f addr2line.pod
 
 ar.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
-	-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
+	$(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f ar.pod
+	$(AM_V_at)rm -f ar.pod
 
 dlltool.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
-	-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
+	$(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f dlltool.pod
+	$(AM_V_at)rm -f dlltool.pod
 
 nm.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
-	-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
+	$(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f nm.pod
+	$(AM_V_at)rm -f nm.pod
 
 objcopy.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
-	-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
+	$(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f objcopy.pod
+	$(AM_V_at)rm -f objcopy.pod
 
 objdump.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
-	-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
+	$(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f objdump.pod
+	$(AM_V_at)rm -f objdump.pod
 
 ranlib.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
-	-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
+	$(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f ranlib.pod
+	$(AM_V_at)rm -f ranlib.pod
 
 readelf.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
-	-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
+	$(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f readelf.pod
+	$(AM_V_at)rm -f readelf.pod
 
 size.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
-	-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
+	$(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f size.pod
+	$(AM_V_at)rm -f size.pod
 
 strings.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
-	-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
+	$(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f strings.pod
+	$(AM_V_at)rm -f strings.pod
 
 strip.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
-	-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
+	$(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f strip.pod
+	$(AM_V_at)rm -f strip.pod
 
 elfedit.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
-	-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
+	$(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f elfedit.pod
+	$(AM_V_at)rm -f elfedit.pod
 
 windres.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
-	-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
+	$(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f windres.pod
+	$(AM_V_at)rm -f windres.pod
 
 windmc.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
-	-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
+	$(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f windmc.pod
+	$(AM_V_at)rm -f windmc.pod
 
 cxxfilt.man:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
-	-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
+	$(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f $(DEMANGLER_NAME).pod
+	$(AM_V_at)rm -f $(DEMANGLER_NAME).pod
 
 $(DEMANGLER_NAME).1: cxxfilt.man Makefile
-	if test -f cxxfilt.man; then \
+	$(AM_V_GEN)if test -f cxxfilt.man; then \
 	  man=cxxfilt.man; \
 	else \
 	  man=$(srcdir)/cxxfilt.man; \
@@ -1032,7 +1032,7 @@ $(DEMANGLER_NAME).1: cxxfilt.man Makefile
 
 html-local: binutils/index.html
 binutils/index.html: binutils.texi $(binutils_TEXINFOS)
-	$(AM_V_at)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
+	$(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
 	  --split=node -I$(srcdir) $(srcdir)/binutils.texi
 
 # Maintenance
-- 
2.33.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 1/2] binutils: enable silent build rules
  2021-11-26  3:59 [PATCH] bfd: enable silent build rules Mike Frysinger
@ 2021-11-26  4:15 ` Mike Frysinger
  2021-11-26  4:16   ` [PATCH 2/2] binutils: merge doc subdir up a level Mike Frysinger
  2021-11-29 13:31   ` [PATCH 1/2] binutils: enable silent build rules Nick Clifton
  0 siblings, 2 replies; 12+ messages in thread
From: Mike Frysinger @ 2021-11-26  4:15 UTC (permalink / raw)
  To: binutils

Also add $(AM_V_xxx) to various manual rules in here.
---
 binutils/Makefile.am     | 100 +++++++++++++++----------------
 binutils/Makefile.in     | 100 +++++++++++++++----------------
 binutils/configure       |  43 +++++++++++++-
 binutils/configure.ac    |   1 +
 binutils/doc/Makefile.am | 124 +++++++++++++++++++--------------------
 binutils/doc/Makefile.in | 124 +++++++++++++++++++--------------------
 6 files changed, 266 insertions(+), 226 deletions(-)

diff --git a/binutils/Makefile.am b/binutils/Makefile.am
index ee2a66302cdc..9ceb63da7b80 100644
--- a/binutils/Makefile.am
+++ b/binutils/Makefile.am
@@ -214,7 +214,7 @@ check-DEJAGNU: site.exp
 	fi
 
 development.exp: $(BFDDIR)/development.sh
-	$(EGREP) "(development|experimental)=" $(BFDDIR)/development.sh  \
+	$(AM_V_GEN)$(EGREP) "(development|experimental)=" $(BFDDIR)/development.sh  \
 	  | $(AWK) -F= '{ print "set " $$1 " " $$2 }' > $@
 
 installcheck-local:
@@ -269,14 +269,14 @@ objdump_LDADD = $(OBJDUMP_PRIVATE_OFILES) $(OPCODES) $(LIBCTF) $(BFDLIB) $(LIBIB
 
 objdump.@OBJEXT@:objdump.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(OBJDUMP_DEFS) $(srcdir)/objdump.c
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(OBJDUMP_DEFS) $(srcdir)/objdump.c
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='objdump.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
+	$(AM_V_CC)$(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
 endif
 
 cxxfilt_SOURCES = cxxfilt.c $(BULIBS)
@@ -311,32 +311,32 @@ addr2line_SOURCES = addr2line.c $(BULIBS)
 #	-ln $(OBJCOPY_PROG) $(STRIP_PROG)
 
 sysroff.c: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
-	./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
-	./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
-	./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
+	$(AM_V_GEN)./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
+	$(AM_V_at)./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
+	$(AM_V_at)./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
 
 sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
-	./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
+	$(AM_V_GEN)./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
 
 sysinfo$(EXEEXT_FOR_BUILD): sysinfo.@OBJEXT@ syslex_wrap.@OBJEXT@
-	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ sysinfo.@OBJEXT@ syslex_wrap.@OBJEXT@
+	$(AM_V_CCLD)$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ sysinfo.@OBJEXT@ syslex_wrap.@OBJEXT@
 
 syslex_wrap.@OBJEXT@: syslex_wrap.c syslex.c sysinfo.h config.h
-	$(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/syslex_wrap.c
+	$(AM_V_CC)$(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/syslex_wrap.c
 
 sysinfo.@OBJEXT@: sysinfo.c
-	if [ -r sysinfo.c ]; then \
+	$(AM_V_CC)if [ -r sysinfo.c ]; then \
 	  $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) sysinfo.c ; \
 	else \
 	  $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/sysinfo.c ; \
 	fi
 
 bin2c$(EXEEXT_FOR_BUILD): bin2c.c
-	$(CC_FOR_BUILD) -o $@ $(AM_CPPFLAGS) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) $(srcdir)/bin2c.c
+	$(AM_V_CCLD)$(CC_FOR_BUILD) -o $@ $(AM_CPPFLAGS) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) $(srcdir)/bin2c.c
 
 embedspu: embedspu.sh Makefile
-	awk '/^program_transform_name=/ {print "program_transform_name=\"$(program_transform_name)\""; next} {print}' < $< > $@
-	chmod a+x $@
+	$(AM_V_GEN)awk '/^program_transform_name=/ {print "program_transform_name=\"$(program_transform_name)\""; next} {print}' < $< > $@
+	$(AM_V_at)chmod a+x $@
 
 # We need these for parallel make.
 sysinfo.h: sysinfo.c
@@ -345,122 +345,122 @@ sysinfo.h: sysinfo.c
 # yacc will produce working code which contain compile time warnings.
 arparse.@OBJEXT@: arparse.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='arparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
 endif
 
 arlex.@OBJEXT@: arlex.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='arlex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
 endif
 
 dwarf.@OBJEXT@: dwarf.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='dwarf.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
+	$(AM_V_CC)$(COMPILE) $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
 endif
 
 sysroff.@OBJEXT@: sysroff.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='sysroff.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
 endif
 
 defparse.@OBJEXT@: defparse.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='defparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
 endif
 
 deflex.@OBJEXT@: deflex.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='deflex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
 endif
 
 rcparse.@OBJEXT@: rcparse.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='rcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
 endif
 
 mcparse.@OBJEXT@: mcparse.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='mcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
 endif
 
 rclex.@OBJEXT@: rclex.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/rclex.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/rclex.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='rclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c $(srcdir)/rclex.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c $(srcdir)/rclex.c $(NO_WERROR)
 endif
 
 mclex.@OBJEXT@: mclex.c
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/mclex.c $(NO_WERROR)
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/mclex.c $(NO_WERROR)
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='mclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c $(srcdir)/mclex.c $(NO_WERROR)
+	$(AM_V_CC)$(COMPILE) -c $(srcdir)/mclex.c $(NO_WERROR)
 endif
 
 srconv_SOURCES = srconv.c coffgrok.c $(BULIBS)
@@ -471,26 +471,26 @@ dlltool_LDADD = $(BFDLIB) $(LIBIBERTY) $(LEXLIB) $(LIBINTL)
 
 dlltool.@OBJEXT@:
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='dlltool.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
+	$(AM_V_CC)$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
 endif
 
 rescoff.@OBJEXT@:
 if am__fastdepCC
-	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
-	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
+	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 else
 if AMDEP
 	source='rescoff.c' object='$@' libtool=no @AMDEPBACKSLASH@
 	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 endif
-	$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
+	$(AM_V_CC)$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
 endif
 
 coffdump_SOURCES = coffdump.c coffgrok.c $(BULIBS)
diff --git a/binutils/Makefile.in b/binutils/Makefile.in
index 8f44b5667254..1986261f9e33 100644
--- a/binutils/Makefile.in
+++ b/binutils/Makefile.in
@@ -1452,18 +1452,18 @@ check-DEJAGNU: site.exp
 	fi
 
 development.exp: $(BFDDIR)/development.sh
-	$(EGREP) "(development|experimental)=" $(BFDDIR)/development.sh  \
+	$(AM_V_GEN)$(EGREP) "(development|experimental)=" $(BFDDIR)/development.sh  \
 	  | $(AWK) -F= '{ print "set " $$1 " " $$2 }' > $@
 
 installcheck-local:
 	/bin/sh $(srcdir)/sanity.sh $(bindir)
 
 objdump.@OBJEXT@:objdump.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(OBJDUMP_DEFS) $(srcdir)/objdump.c
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(OBJDUMP_DEFS) $(srcdir)/objdump.c
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='objdump.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
 
 # The following is commented out for the conversion to automake.
 # This rule creates a single binary that switches between ar and ranlib
@@ -1484,32 +1484,32 @@ objdump.@OBJEXT@:objdump.c
 #	-ln $(OBJCOPY_PROG) $(STRIP_PROG)
 
 sysroff.c: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
-	./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
-	./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
-	./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
+	$(AM_V_GEN)./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
+	$(AM_V_at)./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
+	$(AM_V_at)./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
 
 sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
-	./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
+	$(AM_V_GEN)./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
 
 sysinfo$(EXEEXT_FOR_BUILD): sysinfo.@OBJEXT@ syslex_wrap.@OBJEXT@
-	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ sysinfo.@OBJEXT@ syslex_wrap.@OBJEXT@
+	$(AM_V_CCLD)$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ sysinfo.@OBJEXT@ syslex_wrap.@OBJEXT@
 
 syslex_wrap.@OBJEXT@: syslex_wrap.c syslex.c sysinfo.h config.h
-	$(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/syslex_wrap.c
+	$(AM_V_CC)$(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/syslex_wrap.c
 
 sysinfo.@OBJEXT@: sysinfo.c
-	if [ -r sysinfo.c ]; then \
+	$(AM_V_CC)if [ -r sysinfo.c ]; then \
 	  $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) sysinfo.c ; \
 	else \
 	  $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(NO_WERROR) $(srcdir)/sysinfo.c ; \
 	fi
 
 bin2c$(EXEEXT_FOR_BUILD): bin2c.c
-	$(CC_FOR_BUILD) -o $@ $(AM_CPPFLAGS) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) $(srcdir)/bin2c.c
+	$(AM_V_CCLD)$(CC_FOR_BUILD) -o $@ $(AM_CPPFLAGS) $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) $(srcdir)/bin2c.c
 
 embedspu: embedspu.sh Makefile
-	awk '/^program_transform_name=/ {print "program_transform_name=\"$(program_transform_name)\""; next} {print}' < $< > $@
-	chmod a+x $@
+	$(AM_V_GEN)awk '/^program_transform_name=/ {print "program_transform_name=\"$(program_transform_name)\""; next} {print}' < $< > $@
+	$(AM_V_at)chmod a+x $@
 
 # We need these for parallel make.
 sysinfo.h: sysinfo.c
@@ -1517,89 +1517,89 @@ sysinfo.h: sysinfo.c
 # Disable -Werror, if it has been enabled, since old versions of bison/
 # yacc will produce working code which contain compile time warnings.
 arparse.@OBJEXT@: arparse.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='arparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f arparse.c || echo $(srcdir)/`arparse.c $(NO_WERROR)
 
 arlex.@OBJEXT@: arlex.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='arlex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f arlex.c || echo $(srcdir)/`arlex.c $(NO_WERROR)
 
 dwarf.@OBJEXT@: dwarf.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='dwarf.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) $(DEBUGINFOD_CFLAGS) -c -o $@ $(srcdir)/dwarf.c
 
 sysroff.@OBJEXT@: sysroff.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='sysroff.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f sysroff.c || echo $(srcdir)/`sysroff.c $(NO_WERROR)
 
 defparse.@OBJEXT@: defparse.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='defparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f defparse.c || echo $(srcdir)/`defparse.c $(NO_WERROR)
 
 deflex.@OBJEXT@: deflex.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='deflex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f deflex.c || echo $(srcdir)/`deflex.c $(NO_WERROR)
 
 rcparse.@OBJEXT@: rcparse.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='rcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f rcparse.c || echo $(srcdir)/`rcparse.c $(NO_WERROR)
 
 mcparse.@OBJEXT@: mcparse.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='mcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c `test -f mcparse.c || echo $(srcdir)/`mcparse.c $(NO_WERROR)
 
 rclex.@OBJEXT@: rclex.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/rclex.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/rclex.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='rclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c $(srcdir)/rclex.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c $(srcdir)/rclex.c $(NO_WERROR)
 
 mclex.@OBJEXT@: mclex.c
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/mclex.c $(NO_WERROR)
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/mclex.c $(NO_WERROR)
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='mclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c $(srcdir)/mclex.c $(NO_WERROR)
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c $(srcdir)/mclex.c $(NO_WERROR)
 srconv.@OBJEXT@: sysroff.c
 
 dlltool.@OBJEXT@:
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='dlltool.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
 
 rescoff.@OBJEXT@:
-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
-@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
+@am__fastdepCC_TRUE@	$(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='rescoff.c' object='$@' libtool=no @AMDEPBACKSLASH@
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@	$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
+@am__fastdepCC_FALSE@	$(AM_V_CC)$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
 sysdump.@OBJEXT@: sysroff.c
 
 diststuff: $(EXTRA_DIST) info
diff --git a/binutils/configure b/binutils/configure
index 2cdaeae4e690..1df56455fa7a 100755
--- a/binutils/configure
+++ b/binutils/configure
@@ -3334,6 +3334,45 @@ END
   fi
 fi
 
+# Check whether --enable-silent-rules was given.
+if test "${enable_silent_rules+set}" = set; then :
+  enableval=$enable_silent_rules;
+fi
+
+case $enable_silent_rules in # (((
+  yes) AM_DEFAULT_VERBOSITY=0;;
+   no) AM_DEFAULT_VERBOSITY=1;;
+    *) AM_DEFAULT_VERBOSITY=0;;
+esac
+am_make=${MAKE-make}
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
+$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
+if ${am_cv_make_support_nested_variables+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  if $as_echo 'TRUE=$(BAR$(V))
+BAR0=false
+BAR1=true
+V=1
+am__doit:
+	@$(TRUE)
+.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
+  am_cv_make_support_nested_variables=yes
+else
+  am_cv_make_support_nested_variables=no
+fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
+$as_echo "$am_cv_make_support_nested_variables" >&6; }
+if test $am_cv_make_support_nested_variables = yes; then
+    AM_V='$(V)'
+  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
+else
+  AM_V=$AM_DEFAULT_VERBOSITY
+  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
+fi
+AM_BACKSLASH='\'
+
 
 ac_ext=c
 ac_cpp='$CPP $CPPFLAGS'
@@ -10932,7 +10971,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 10935 "configure"
+#line 10974 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -11038,7 +11077,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 11041 "configure"
+#line 11080 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
diff --git a/binutils/configure.ac b/binutils/configure.ac
index 9d17b399aecb..b0677ba5f20e 100644
--- a/binutils/configure.ac
+++ b/binutils/configure.ac
@@ -25,6 +25,7 @@ AC_CONFIG_SRCDIR(ar.c)
 AC_CANONICAL_TARGET
 
 AM_INIT_AUTOMAKE
+AM_SILENT_RULES([yes])
 
 AC_PROG_CC
 AC_GNU_SOURCE
diff --git a/binutils/doc/Makefile.am b/binutils/doc/Makefile.am
index ba53f92560bb..90b238ddf8d9 100644
--- a/binutils/doc/Makefile.am
+++ b/binutils/doc/Makefile.am
@@ -59,114 +59,114 @@ TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
 
 # Man page generation from texinfo
 addr2line.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
-	-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
+	$(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f addr2line.pod
+	$(AM_V_at)rm -f addr2line.pod
 
 ar.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
-	-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
+	$(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f ar.pod
+	$(AM_V_at)rm -f ar.pod
 
 dlltool.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
-	-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
+	$(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f dlltool.pod
+	$(AM_V_at)rm -f dlltool.pod
 
 nm.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
-	-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
+	$(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f nm.pod
+	$(AM_V_at)rm -f nm.pod
 
 objcopy.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
-	-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
+	$(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f objcopy.pod
+	$(AM_V_at)rm -f objcopy.pod
 
 objdump.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
-	-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
+	$(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f objdump.pod
+	$(AM_V_at)rm -f objdump.pod
 
 ranlib.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
-	-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
+	$(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f ranlib.pod
+	$(AM_V_at)rm -f ranlib.pod
 
 readelf.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
-	-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
+	$(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f readelf.pod
+	$(AM_V_at)rm -f readelf.pod
 
 size.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
-	-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
+	$(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f size.pod
+	$(AM_V_at)rm -f size.pod
 
 strings.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
-	-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
+	$(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f strings.pod
+	$(AM_V_at)rm -f strings.pod
 
 strip.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
-	-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
+	$(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f strip.pod
+	$(AM_V_at)rm -f strip.pod
 
 elfedit.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
-	-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
+	$(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f elfedit.pod
+	$(AM_V_at)rm -f elfedit.pod
 
 windres.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
-	-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
+	$(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f windres.pod
+	$(AM_V_at)rm -f windres.pod
 
 windmc.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
-	-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
+	$(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f windmc.pod
+	$(AM_V_at)rm -f windmc.pod
 
 cxxfilt.man:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
-	-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
+	$(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f $(DEMANGLER_NAME).pod
+	$(AM_V_at)rm -f $(DEMANGLER_NAME).pod
 
 MAINTAINERCLEANFILES = $(man_MANS) binutils.info cxxfilt.man
 
 $(DEMANGLER_NAME).1: cxxfilt.man Makefile
-	if test -f cxxfilt.man; then \
+	$(AM_V_GEN)if test -f cxxfilt.man; then \
 	  man=cxxfilt.man; \
 	else \
 	  man=$(srcdir)/cxxfilt.man; \
@@ -177,7 +177,7 @@ $(DEMANGLER_NAME).1: cxxfilt.man Makefile
 
 html-local: binutils/index.html
 binutils/index.html: binutils.texi $(binutils_TEXINFOS)
-	$(AM_V_at)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
+	$(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
 	  --split=node -I$(srcdir) $(srcdir)/binutils.texi
 
 # Maintenance
diff --git a/binutils/doc/Makefile.in b/binutils/doc/Makefile.in
index 024a642e7994..d42cdd87929b 100644
--- a/binutils/doc/Makefile.in
+++ b/binutils/doc/Makefile.in
@@ -916,112 +916,112 @@ uninstall-man: uninstall-man1
 
 # Man page generation from texinfo
 addr2line.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
-	-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
+	$(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f addr2line.pod
+	$(AM_V_at)rm -f addr2line.pod
 
 ar.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
-	-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
+	$(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f ar.pod
+	$(AM_V_at)rm -f ar.pod
 
 dlltool.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
-	-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
+	$(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f dlltool.pod
+	$(AM_V_at)rm -f dlltool.pod
 
 nm.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
-	-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
+	$(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f nm.pod
+	$(AM_V_at)rm -f nm.pod
 
 objcopy.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
-	-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
+	$(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f objcopy.pod
+	$(AM_V_at)rm -f objcopy.pod
 
 objdump.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
-	-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
+	$(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f objdump.pod
+	$(AM_V_at)rm -f objdump.pod
 
 ranlib.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
-	-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
+	$(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f ranlib.pod
+	$(AM_V_at)rm -f ranlib.pod
 
 readelf.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
-	-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
+	$(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f readelf.pod
+	$(AM_V_at)rm -f readelf.pod
 
 size.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
-	-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
+	$(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f size.pod
+	$(AM_V_at)rm -f size.pod
 
 strings.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
-	-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
+	$(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f strings.pod
+	$(AM_V_at)rm -f strings.pod
 
 strip.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
-	-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
+	$(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f strip.pod
+	$(AM_V_at)rm -f strip.pod
 
 elfedit.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
-	-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
+	$(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f elfedit.pod
+	$(AM_V_at)rm -f elfedit.pod
 
 windres.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
-	-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
+	$(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f windres.pod
+	$(AM_V_at)rm -f windres.pod
 
 windmc.1:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
-	-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
+	$(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f windmc.pod
+	$(AM_V_at)rm -f windmc.pod
 
 cxxfilt.man:	$(binutils_TEXI)
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
-	-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
+	$(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f $(DEMANGLER_NAME).pod
+	$(AM_V_at)rm -f $(DEMANGLER_NAME).pod
 
 $(DEMANGLER_NAME).1: cxxfilt.man Makefile
-	if test -f cxxfilt.man; then \
+	$(AM_V_GEN)if test -f cxxfilt.man; then \
 	  man=cxxfilt.man; \
 	else \
 	  man=$(srcdir)/cxxfilt.man; \
@@ -1032,7 +1032,7 @@ $(DEMANGLER_NAME).1: cxxfilt.man Makefile
 
 html-local: binutils/index.html
 binutils/index.html: binutils.texi $(binutils_TEXINFOS)
-	$(AM_V_at)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
+	$(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
 	  --split=node -I$(srcdir) $(srcdir)/binutils.texi
 
 # Maintenance
-- 
2.33.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 2/2] binutils: merge doc subdir up a level
  2021-11-26  4:15 ` [PATCH 1/2] binutils: " Mike Frysinger
@ 2021-11-26  4:16   ` Mike Frysinger
  2021-11-29 13:30     ` Nick Clifton
  2021-11-30 10:17     ` Luis Machado
  2021-11-29 13:31   ` [PATCH 1/2] binutils: enable silent build rules Nick Clifton
  1 sibling, 2 replies; 12+ messages in thread
From: Mike Frysinger @ 2021-11-26  4:16 UTC (permalink / raw)
  To: binutils

This avoids a recursive make into the doc subdir and speeds up the
build slightly.  It also allows for more parallelism.
---
 binutils/Makefile.am                   |    8 +-
 binutils/Makefile.in                   |  594 +++++++++++++-
 binutils/configure.ac                  |    2 +-
 binutils/doc/Makefile.in               | 1045 ------------------------
 binutils/doc/{Makefile.am => local.mk} |  102 ++-
 5 files changed, 608 insertions(+), 1143 deletions(-)
 delete mode 100644 binutils/doc/Makefile.in
 rename binutils/doc/{Makefile.am => local.mk} (77%)

diff --git a/binutils/Makefile.am b/binutils/Makefile.am
index 9ceb63da7b80..f54dadd921dc 100644
--- a/binutils/Makefile.am
+++ b/binutils/Makefile.am
@@ -17,13 +17,15 @@
 # <http://www.gnu.org/licenses/>.
 #
 
-AUTOMAKE_OPTIONS = dejagnu no-dist foreign subdir-objects
+AUTOMAKE_OPTIONS = dejagnu no-dist foreign subdir-objects info-in-builddir no-texinfo.tex
 ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
 
-SUBDIRS = doc po
+SUBDIRS = po
 
 tooldir = $(exec_prefix)/$(target_alias)
 
+MAINTAINERCLEANFILES =
+
 ## These aren't set by automake, because they appear in
 ## bfd/acinclude.m4, which is included by binutils/acinclude.m4, and
 ## thus is not seen by automake.
@@ -552,3 +554,5 @@ install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
 	  else true; \
 	  fi; \
 	done
+
+include doc/local.mk
diff --git a/binutils/Makefile.in b/binutils/Makefile.in
index 1986261f9e33..336644a3983a 100644
--- a/binutils/Makefile.in
+++ b/binutils/Makefile.in
@@ -32,6 +32,24 @@
 # <http://www.gnu.org/licenses/>.
 #
 
+#
+#   Copyright (C) 2012-2021 Free Software Foundation, Inc.
+#
+# This file is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; see the file COPYING3.  If not see
+# <http://www.gnu.org/licenses/>.
+#
+
 
 VPATH = @srcdir@
 am__is_gnu_make = { \
@@ -167,7 +185,8 @@ am__EXEEXT_10 = objcopy$(EXEEXT)
 am__EXEEXT_11 = addr2line$(EXEEXT)
 am__EXEEXT_12 = readelf$(EXEEXT)
 am__EXEEXT_13 = elfedit$(EXEEXT)
-am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"
+am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" \
+	"$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"
 am__EXEEXT_14 = nm-new$(EXEEXT)
 am__EXEEXT_15 = strip-new$(EXEEXT)
 am__EXEEXT_16 = cxxfilt$(EXEEXT)
@@ -356,6 +375,45 @@ SOURCES = $(addr2line_SOURCES) $(ar_SOURCES) $(EXTRA_ar_SOURCES) \
 	$(size_SOURCES) $(srconv_SOURCES) $(strings_SOURCES) \
 	$(strip_new_SOURCES) $(sysdump_SOURCES) \
 	testsuite/gentestdlls.c $(windmc_SOURCES) $(windres_SOURCES)
+AM_V_DVIPS = $(am__v_DVIPS_@AM_V@)
+am__v_DVIPS_ = $(am__v_DVIPS_@AM_DEFAULT_V@)
+am__v_DVIPS_0 = @echo "  DVIPS   " $@;
+am__v_DVIPS_1 = 
+AM_V_MAKEINFO = $(am__v_MAKEINFO_@AM_V@)
+am__v_MAKEINFO_ = $(am__v_MAKEINFO_@AM_DEFAULT_V@)
+am__v_MAKEINFO_0 = @echo "  MAKEINFO" $@;
+am__v_MAKEINFO_1 = 
+AM_V_INFOHTML = $(am__v_INFOHTML_@AM_V@)
+am__v_INFOHTML_ = $(am__v_INFOHTML_@AM_DEFAULT_V@)
+am__v_INFOHTML_0 = @echo "  INFOHTML" $@;
+am__v_INFOHTML_1 = 
+AM_V_TEXI2DVI = $(am__v_TEXI2DVI_@AM_V@)
+am__v_TEXI2DVI_ = $(am__v_TEXI2DVI_@AM_DEFAULT_V@)
+am__v_TEXI2DVI_0 = @echo "  TEXI2DVI" $@;
+am__v_TEXI2DVI_1 = 
+AM_V_TEXI2PDF = $(am__v_TEXI2PDF_@AM_V@)
+am__v_TEXI2PDF_ = $(am__v_TEXI2PDF_@AM_DEFAULT_V@)
+am__v_TEXI2PDF_0 = @echo "  TEXI2PDF" $@;
+am__v_TEXI2PDF_1 = 
+AM_V_texinfo = $(am__v_texinfo_@AM_V@)
+am__v_texinfo_ = $(am__v_texinfo_@AM_DEFAULT_V@)
+am__v_texinfo_0 = -q
+am__v_texinfo_1 = 
+AM_V_texidevnull = $(am__v_texidevnull_@AM_V@)
+am__v_texidevnull_ = $(am__v_texidevnull_@AM_DEFAULT_V@)
+am__v_texidevnull_0 = > /dev/null
+am__v_texidevnull_1 = 
+INFO_DEPS = doc/binutils.info
+am__TEXINFO_TEX_DIR = $(srcdir)
+DVIS = doc/binutils.dvi
+PDFS = doc/binutils.pdf
+PSS = doc/binutils.ps
+HTMLS = doc/binutils.html
+TEXINFOS = doc/binutils.texi
+TEXI2PDF = $(TEXI2DVI) --pdf --batch
+MAKEINFOHTML = $(MAKEINFO) --html
+AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS)
+DVIPS = dvips
 RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
 	ctags-recursive dvi-recursive html-recursive info-recursive \
 	install-data-recursive install-dvi-recursive \
@@ -369,6 +427,9 @@ am__can_run_installinfo = \
     n|no|NO) false;; \
     *) (install-info --version) >/dev/null 2>&1;; \
   esac
+man1dir = $(mandir)/man1
+NROFF = nroff
+MANS = $(man_MANS)
 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
   distclean-recursive maintainer-clean-recursive
 am__recursive_targets = \
@@ -569,10 +630,11 @@ top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@
 zlibdir = @zlibdir@
 zlibinc = @zlibinc@
-AUTOMAKE_OPTIONS = dejagnu no-dist foreign subdir-objects
+AUTOMAKE_OPTIONS = dejagnu no-dist foreign subdir-objects info-in-builddir no-texinfo.tex
 ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
-SUBDIRS = doc po
+SUBDIRS = po
 tooldir = $(exec_prefix)/$(target_alias)
+MAINTAINERCLEANFILES = $(man_MANS) doc/binutils.info doc/cxxfilt.man
 
 # Automake 1.10+ disables lex and yacc output file regeneration if
 # maintainer mode is disabled.  Avoid this.
@@ -771,14 +833,52 @@ DISTCLEANFILES = sysroff.c sysroff.h site.exp development.exp \
 MOSTLYCLEANFILES = sysinfo$(EXEEXT_FOR_BUILD) bin2c$(EXEEXT_FOR_BUILD) \
   binutils.log binutils.sum abcdefgh*
 
+
+# What version of the manual you want; "all" includes everything
+CONFIG = all
+
+# Options to extract the man page from as.texinfo
+MANCONF = -Dman
+TEXI2POD = perl $(top_srcdir)/../etc/texi2pod.pl $(AM_MAKEINFOFLAGS)
+POD2MAN = pod2man --center="GNU Development Tools" \
+	 --release="binutils-$(VERSION)" --section=1
+
+
+# List of man pages generated from binutils.texi
+man_MANS = \
+	doc/addr2line.1 \
+	doc/ar.1 \
+	doc/dlltool.1 \
+	doc/nm.1 \
+	doc/objcopy.1 \
+	doc/objdump.1 \
+	doc/ranlib.1 \
+	doc/readelf.1 \
+	doc/size.1 \
+	doc/strings.1 \
+	doc/strip.1 \
+	doc/elfedit.1 \
+	doc/windres.1 \
+	doc/windmc.1 \
+	doc/$(DEMANGLER_NAME).1
+
+info_TEXINFOS = doc/binutils.texi
+binutils_TEXI = $(srcdir)/doc/binutils.texi
+AM_MAKEINFOFLAGS = -I "$(srcdir)/doc" -I "$(top_srcdir)/../libiberty" \
+		   -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc \
+		   --no-split
+
+TEXI2DVI = texi2dvi -I "$(srcdir)/doc" -I "$(top_srcdir)/../libiberty" \
+		    -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc
+
 all: $(BUILT_SOURCES) config.h
 	$(MAKE) $(AM_MAKEFLAGS) all-recursive
 
 .SUFFIXES:
-.SUFFIXES: .c .l .lo .o .obj .y
+.SUFFIXES: .c .dvi .l .lo .o .obj .ps .y
 am--refresh: Makefile
 	@:
-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/doc/local.mk $(am__configure_deps)
 	@for dep in $?; do \
 	  case '$(am__configure_deps)' in \
 	    *$$dep*) \
@@ -800,6 +900,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
 	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
 	esac;
+$(srcdir)/doc/local.mk $(am__empty):
 
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 	$(SHELL) ./config.status --recheck
@@ -1139,6 +1240,186 @@ clean-libtool:
 
 distclean-libtool:
 	-rm -f libtool config.lt
+doc/$(am__dirstamp):
+	@$(MKDIR_P) doc
+	@: > doc/$(am__dirstamp)
+
+doc/binutils.info: doc/binutils.texi 
+	@test -f doc/$(am__dirstamp) || $(MAKE) $(AM_MAKEFLAGS) doc/$(am__dirstamp)
+	$(AM_V_MAKEINFO)restore=: && backupdir="$(am__leading_dot)am$$$$" && \
+	rm -rf $$backupdir && mkdir $$backupdir && \
+	if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
+	  for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \
+	    if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \
+	  done; \
+	else :; fi && \
+	if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
+	 -o $@ `test -f 'doc/binutils.texi' || echo '$(srcdir)/'`doc/binutils.texi; \
+	then \
+	  rc=0; \
+	else \
+	  rc=$$?; \
+	  $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
+	fi; \
+	rm -rf $$backupdir; exit $$rc
+
+doc/binutils.dvi: doc/binutils.texi  doc/$(am__dirstamp)
+	$(AM_V_TEXI2DVI)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
+	MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
+	$(TEXI2DVI) $(AM_V_texinfo) --build-dir=$(@:.dvi=.t2d) -o $@ $(AM_V_texidevnull) \
+	`test -f 'doc/binutils.texi' || echo '$(srcdir)/'`doc/binutils.texi
+
+doc/binutils.pdf: doc/binutils.texi  doc/$(am__dirstamp)
+	$(AM_V_TEXI2PDF)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
+	MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
+	$(TEXI2PDF) $(AM_V_texinfo) --build-dir=$(@:.pdf=.t2p) -o $@ $(AM_V_texidevnull) \
+	`test -f 'doc/binutils.texi' || echo '$(srcdir)/'`doc/binutils.texi
+
+doc/binutils.html: doc/binutils.texi  doc/$(am__dirstamp)
+	$(AM_V_MAKEINFO)rm -rf $(@:.html=.htp)
+	$(AM_V_at)if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
+	 -o $(@:.html=.htp) `test -f 'doc/binutils.texi' || echo '$(srcdir)/'`doc/binutils.texi; \
+	then \
+	  rm -rf $@ && mv $(@:.html=.htp) $@; \
+	else \
+	  rm -rf $(@:.html=.htp); exit 1; \
+	fi
+.dvi.ps:
+	$(AM_V_DVIPS)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
+	$(DVIPS) $(AM_V_texinfo) -o $@ $<
+
+uninstall-dvi-am:
+	@$(NORMAL_UNINSTALL)
+	@list='$(DVIS)'; test -n "$(dvidir)" || list=; \
+	for p in $$list; do \
+	  $(am__strip_dir) \
+	  echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \
+	  rm -f "$(DESTDIR)$(dvidir)/$$f"; \
+	done
+
+uninstall-html-am:
+	@$(NORMAL_UNINSTALL)
+	@list='$(HTMLS)'; test -n "$(htmldir)" || list=; \
+	for p in $$list; do \
+	  $(am__strip_dir) \
+	  echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \
+	  rm -rf "$(DESTDIR)$(htmldir)/$$f"; \
+	done
+
+uninstall-info-am:
+	@$(PRE_UNINSTALL)
+	@if test -d '$(DESTDIR)$(infodir)' && $(am__can_run_installinfo); then \
+	  list='$(INFO_DEPS)'; \
+	  for file in $$list; do \
+	    relfile=`echo "$$file" | sed 's|^.*/||'`; \
+	    echo " install-info --info-dir='$(DESTDIR)$(infodir)' --remove '$(DESTDIR)$(infodir)/$$relfile'"; \
+	    if install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$$relfile"; \
+	    then :; else test ! -f "$(DESTDIR)$(infodir)/$$relfile" || exit 1; fi; \
+	  done; \
+	else :; fi
+	@$(NORMAL_UNINSTALL)
+	@list='$(INFO_DEPS)'; \
+	for file in $$list; do \
+	  relfile=`echo "$$file" | sed 's|^.*/||'`; \
+	  relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
+	  (if test -d "$(DESTDIR)$(infodir)" && cd "$(DESTDIR)$(infodir)"; then \
+	     echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]"; \
+	     rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
+	   else :; fi); \
+	done
+
+uninstall-pdf-am:
+	@$(NORMAL_UNINSTALL)
+	@list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
+	for p in $$list; do \
+	  $(am__strip_dir) \
+	  echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \
+	  rm -f "$(DESTDIR)$(pdfdir)/$$f"; \
+	done
+
+uninstall-ps-am:
+	@$(NORMAL_UNINSTALL)
+	@list='$(PSS)'; test -n "$(psdir)" || list=; \
+	for p in $$list; do \
+	  $(am__strip_dir) \
+	  echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \
+	  rm -f "$(DESTDIR)$(psdir)/$$f"; \
+	done
+
+dist-info: $(INFO_DEPS)
+	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+	list='$(INFO_DEPS)'; \
+	for base in $$list; do \
+	  case $$base in \
+	    $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
+	  esac; \
+	  if test -f $$base; then d=.; else d=$(srcdir); fi; \
+	  base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
+	  for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
+	    if test -f $$file; then \
+	      relfile=`expr "$$file" : "$$d/\(.*\)"`; \
+	      test -f "$(distdir)/$$relfile" || \
+		cp -p $$file "$(distdir)/$$relfile"; \
+	    else :; fi; \
+	  done; \
+	done
+
+mostlyclean-aminfo:
+	-rm -rf doc/binutils.t2d doc/binutils.t2p
+
+clean-aminfo:
+	-test -z "doc/binutils.dvi doc/binutils.pdf doc/binutils.ps doc/binutils.html" \
+	|| rm -rf doc/binutils.dvi doc/binutils.pdf doc/binutils.ps doc/binutils.html
+
+maintainer-clean-aminfo:
+	@list='$(INFO_DEPS)'; for i in $$list; do \
+	  i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
+	  echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \
+	  rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
+	done
+install-man1: $(man_MANS)
+	@$(NORMAL_INSTALL)
+	@list1=''; \
+	list2='$(man_MANS)'; \
+	test -n "$(man1dir)" \
+	  && test -n "`echo $$list1$$list2`" \
+	  || exit 0; \
+	echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
+	$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
+	{ for i in $$list1; do echo "$$i"; done;  \
+	if test -n "$$list2"; then \
+	  for i in $$list2; do echo "$$i"; done \
+	    | sed -n '/\.1[a-z]*$$/p'; \
+	fi; \
+	} | while read p; do \
+	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
+	  echo "$$d$$p"; echo "$$p"; \
+	done | \
+	sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
+	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
+	sed 'N;N;s,\n, ,g' | { \
+	list=; while read file base inst; do \
+	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \
+	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
+	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
+	  fi; \
+	done; \
+	for i in $$list; do echo "$$i"; done | $(am__base_list) | \
+	while read files; do \
+	  test -z "$$files" || { \
+	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
+	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
+	done; }
+
+uninstall-man1:
+	@$(NORMAL_UNINSTALL)
+	@list=''; test -n "$(man1dir)" || exit 0; \
+	files=`{ for i in $$list; do echo "$$i"; done; \
+	l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
+	  sed -n '/\.1[a-z]*$$/p'; \
+	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
+	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
+	dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
 
 # This directory's subdirectories are mostly independent; you can cd
 # into them and run 'make' without going through this Makefile.
@@ -1281,10 +1562,10 @@ check-am: all-am
 	$(MAKE) $(AM_MAKEFLAGS) check-DEJAGNU
 check: $(BUILT_SOURCES)
 	$(MAKE) $(AM_MAKEFLAGS) check-recursive
-all-am: Makefile $(PROGRAMS) $(SCRIPTS) config.h
+all-am: Makefile $(INFO_DEPS) $(PROGRAMS) $(SCRIPTS) $(MANS) config.h
 installdirs: installdirs-recursive
 installdirs-am:
-	for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"; do \
+	for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"; do \
 	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
 	done
 install: $(BUILT_SOURCES)
@@ -1315,6 +1596,7 @@ clean-generic:
 distclean-generic:
 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+	-rm -f doc/$(am__dirstamp)
 	-rm -f testsuite/$(DEPDIR)/$(am__dirstamp)
 	-rm -f testsuite/$(am__dirstamp)
 	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
@@ -1333,9 +1615,10 @@ maintainer-clean-generic:
 	-rm -f rcparse.c
 	-rm -f rcparse.h
 	-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
+	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
 clean: clean-recursive
 
-clean-am: clean-binPROGRAMS clean-generic clean-libtool \
+clean-am: clean-aminfo clean-binPROGRAMS clean-generic clean-libtool \
 	clean-noinstPROGRAMS mostlyclean-am
 
 distclean: distclean-recursive
@@ -1348,43 +1631,134 @@ distclean-am: clean-am distclean-DEJAGNU distclean-compile \
 
 dvi: dvi-recursive
 
-dvi-am:
+dvi-am: $(DVIS)
 
 html: html-recursive
 
-html-am:
+html-am: $(HTMLS) html-local
 
 info: info-recursive
 
-info-am:
+info-am: $(INFO_DEPS) info-local
 
-install-data-am:
+install-data-am: install-info-am install-man
 
 install-dvi: install-dvi-recursive
 
-install-dvi-am:
-
+install-dvi-am: $(DVIS)
+	@$(NORMAL_INSTALL)
+	@list='$(DVIS)'; test -n "$(dvidir)" || list=; \
+	if test -n "$$list"; then \
+	  echo " $(MKDIR_P) '$(DESTDIR)$(dvidir)'"; \
+	  $(MKDIR_P) "$(DESTDIR)$(dvidir)" || exit 1; \
+	fi; \
+	for p in $$list; do \
+	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+	  echo "$$d$$p"; \
+	done | $(am__base_list) | \
+	while read files; do \
+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \
+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(dvidir)" || exit $$?; \
+	done
 install-exec-am: install-binPROGRAMS install-binSCRIPTS \
 	install-exec-local
 
 install-html: install-html-recursive
 
-install-html-am:
-
+install-html-am: $(HTMLS)
+	@$(NORMAL_INSTALL)
+	@list='$(HTMLS)'; list2=; test -n "$(htmldir)" || list=; \
+	if test -n "$$list"; then \
+	  echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
+	  $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
+	fi; \
+	for p in $$list; do \
+	  if test -f "$$p" || test -d "$$p"; then d=; else d="$(srcdir)/"; fi; \
+	  $(am__strip_dir) \
+	  d2=$$d$$p; \
+	  if test -d "$$d2"; then \
+	    echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
+	    $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
+	    echo " $(INSTALL_DATA) '$$d2'/* '$(DESTDIR)$(htmldir)/$$f'"; \
+	    $(INSTALL_DATA) "$$d2"/* "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
+	  else \
+	    list2="$$list2 $$d2"; \
+	  fi; \
+	done; \
+	test -z "$$list2" || { echo "$$list2" | $(am__base_list) | \
+	while read files; do \
+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
+	done; }
 install-info: install-info-recursive
 
-install-info-am:
-
-install-man:
+install-info-am: $(INFO_DEPS)
+	@$(NORMAL_INSTALL)
+	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+	list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
+	if test -n "$$list"; then \
+	  echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \
+	  $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \
+	fi; \
+	for file in $$list; do \
+	  case $$file in \
+	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+	  esac; \
+	  if test -f $$file; then d=.; else d=$(srcdir); fi; \
+	  file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
+	  for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
+	               $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
+	    if test -f $$ifile; then \
+	      echo "$$ifile"; \
+	    else : ; fi; \
+	  done; \
+	done | $(am__base_list) | \
+	while read files; do \
+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(infodir)'"; \
+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(infodir)" || exit $$?; done
+	@$(POST_INSTALL)
+	@if $(am__can_run_installinfo); then \
+	  list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
+	  for file in $$list; do \
+	    relfile=`echo "$$file" | sed 's|^.*/||'`; \
+	    echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
+	    install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
+	  done; \
+	else : ; fi
+install-man: install-man1
 
 install-pdf: install-pdf-recursive
 
-install-pdf-am:
-
+install-pdf-am: $(PDFS)
+	@$(NORMAL_INSTALL)
+	@list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
+	if test -n "$$list"; then \
+	  echo " $(MKDIR_P) '$(DESTDIR)$(pdfdir)'"; \
+	  $(MKDIR_P) "$(DESTDIR)$(pdfdir)" || exit 1; \
+	fi; \
+	for p in $$list; do \
+	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+	  echo "$$d$$p"; \
+	done | $(am__base_list) | \
+	while read files; do \
+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pdfdir)'"; \
+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pdfdir)" || exit $$?; done
 install-ps: install-ps-recursive
 
-install-ps-am:
-
+install-ps-am: $(PSS)
+	@$(NORMAL_INSTALL)
+	@list='$(PSS)'; test -n "$(psdir)" || list=; \
+	if test -n "$$list"; then \
+	  echo " $(MKDIR_P) '$(DESTDIR)$(psdir)'"; \
+	  $(MKDIR_P) "$(DESTDIR)$(psdir)" || exit 1; \
+	fi; \
+	for p in $$list; do \
+	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+	  echo "$$d$$p"; \
+	done | $(am__base_list) | \
+	while read files; do \
+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(psdir)'"; \
+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(psdir)" || exit $$?; done
 installcheck-am: installcheck-local
 
 maintainer-clean: maintainer-clean-recursive
@@ -1392,44 +1766,52 @@ maintainer-clean: maintainer-clean-recursive
 	-rm -rf $(top_srcdir)/autom4te.cache
 	-rm -rf ./$(DEPDIR) testsuite/$(DEPDIR)
 	-rm -f Makefile
-maintainer-clean-am: distclean-am maintainer-clean-generic
+maintainer-clean-am: distclean-am maintainer-clean-aminfo \
+	maintainer-clean-generic
 
 mostlyclean: mostlyclean-recursive
 
-mostlyclean-am: mostlyclean-compile mostlyclean-generic \
-	mostlyclean-libtool mostlyclean-local
+mostlyclean-am: mostlyclean-aminfo mostlyclean-compile \
+	mostlyclean-generic mostlyclean-libtool mostlyclean-local
 
 pdf: pdf-recursive
 
-pdf-am:
+pdf-am: $(PDFS)
 
 ps: ps-recursive
 
-ps-am:
+ps-am: $(PSS)
+
+uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \
+	uninstall-dvi-am uninstall-html-am uninstall-info-am \
+	uninstall-man uninstall-pdf-am uninstall-ps-am
 
-uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS
+uninstall-man: uninstall-man1
 
 .MAKE: $(am__recursive_targets) all check check-am install install-am \
 	install-strip
 
 .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
-	am--refresh check check-DEJAGNU check-am clean \
+	am--refresh check check-DEJAGNU check-am clean clean-aminfo \
 	clean-binPROGRAMS clean-cscope clean-generic clean-libtool \
 	clean-noinstPROGRAMS cscope cscopelist-am ctags ctags-am \
-	distclean distclean-DEJAGNU distclean-compile \
+	dist-info distclean distclean-DEJAGNU distclean-compile \
 	distclean-generic distclean-hdr distclean-libtool \
-	distclean-tags dvi dvi-am html html-am info info-am install \
-	install-am install-binPROGRAMS install-binSCRIPTS install-data \
-	install-data-am install-dvi install-dvi-am install-exec \
-	install-exec-am install-exec-local install-html \
-	install-html-am install-info install-info-am install-man \
-	install-pdf install-pdf-am install-ps install-ps-am \
-	install-strip installcheck installcheck-am installcheck-local \
-	installdirs installdirs-am maintainer-clean \
-	maintainer-clean-generic mostlyclean mostlyclean-compile \
-	mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \
-	pdf-am ps ps-am tags tags-am uninstall uninstall-am \
-	uninstall-binPROGRAMS uninstall-binSCRIPTS
+	distclean-tags dvi dvi-am html html-am html-local info info-am \
+	info-local install install-am install-binPROGRAMS \
+	install-binSCRIPTS install-data install-data-am install-dvi \
+	install-dvi-am install-exec install-exec-am install-exec-local \
+	install-html install-html-am install-info install-info-am \
+	install-man install-man1 install-pdf install-pdf-am install-ps \
+	install-ps-am install-strip installcheck installcheck-am \
+	installcheck-local installdirs installdirs-am maintainer-clean \
+	maintainer-clean-aminfo maintainer-clean-generic mostlyclean \
+	mostlyclean-aminfo mostlyclean-compile mostlyclean-generic \
+	mostlyclean-libtool mostlyclean-local pdf pdf-am ps ps-am tags \
+	tags-am uninstall uninstall-am uninstall-binPROGRAMS \
+	uninstall-binSCRIPTS uninstall-dvi-am uninstall-html-am \
+	uninstall-info-am uninstall-man uninstall-man1 \
+	uninstall-pdf-am uninstall-ps-am
 
 .PRECIOUS: Makefile
 
@@ -1630,6 +2012,132 @@ install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
 	  fi; \
 	done
 
+# Man page generation from texinfo
+doc/addr2line.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
+	$(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f addr2line.pod
+
+doc/ar.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
+	$(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f ar.pod
+
+doc/dlltool.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
+	$(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f dlltool.pod
+
+doc/nm.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
+	$(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f nm.pod
+
+doc/objcopy.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
+	$(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f objcopy.pod
+
+doc/objdump.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
+	$(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f objdump.pod
+
+doc/ranlib.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
+	$(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f ranlib.pod
+
+doc/readelf.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
+	$(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f readelf.pod
+
+doc/size.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
+	$(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f size.pod
+
+doc/strings.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
+	$(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f strings.pod
+
+doc/strip.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
+	$(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f strip.pod
+
+doc/elfedit.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
+	$(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f elfedit.pod
+
+doc/windres.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
+	$(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f windres.pod
+
+doc/windmc.1:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
+	$(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f windmc.pod
+
+doc/cxxfilt.man:	$(binutils_TEXI)
+	$(AM_V_GEN)touch $@
+	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
+	$(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
+		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
+	$(AM_V_at)rm -f $(DEMANGLER_NAME).pod
+
+doc/$(DEMANGLER_NAME).1: doc/cxxfilt.man Makefile
+	$(AM_V_GEN)if test -f doc/cxxfilt.man; then \
+	  man=doc/cxxfilt.man; \
+	else \
+	  man=$(srcdir)/doc/cxxfilt.man; \
+	fi; \
+	sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \
+	    -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \
+		> doc/$(DEMANGLER_NAME).1
+
+html-local: doc/binutils/index.html
+binutils/index.html: doc/binutils.texi $(binutils_TEXINFOS)
+	$(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
+	  --split=node -I$(srcdir) $(srcdir)/doc/binutils.texi
+
+# Maintenance
+
+# We need it for the taz target in ../Makefile.in.
+info-local: $(MANS)
+
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
 .NOEXPORT:
diff --git a/binutils/configure.ac b/binutils/configure.ac
index b0677ba5f20e..62696ff2a225 100644
--- a/binutils/configure.ac
+++ b/binutils/configure.ac
@@ -535,7 +535,7 @@ AC_SUBST(docdir)
 AC_SUBST(htmldir)
 AC_SUBST(pdfdir)
 
-AC_CONFIG_FILES(Makefile doc/Makefile po/Makefile.in:po/Make-in)
+AC_CONFIG_FILES(Makefile po/Makefile.in:po/Make-in)
 AC_OUTPUT
 
 GNU_MAKE_JOBSERVER
diff --git a/binutils/doc/Makefile.in b/binutils/doc/Makefile.in
deleted file mode 100644
index d42cdd87929b..000000000000
--- a/binutils/doc/Makefile.in
+++ /dev/null
@@ -1,1045 +0,0 @@
-# Makefile.in generated by automake 1.15.1 from Makefile.am.
-# @configure_input@
-
-# Copyright (C) 1994-2017 Free Software Foundation, Inc.
-
-# This Makefile.in is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
-@SET_MAKE@
-
-#
-#   Copyright (C) 2012-2021 Free Software Foundation, Inc.
-#
-# This file is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3 of the License, or
-# (at your option) any later version.
-# 
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-# 
-# You should have received a copy of the GNU General Public License
-# along with this program; see the file COPYING3.  If not see
-# <http://www.gnu.org/licenses/>.
-#
-VPATH = @srcdir@
-am__is_gnu_make = { \
-  if test -z '$(MAKELEVEL)'; then \
-    false; \
-  elif test -n '$(MAKE_HOST)'; then \
-    true; \
-  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
-    true; \
-  else \
-    false; \
-  fi; \
-}
-am__make_running_with_option = \
-  case $${target_option-} in \
-      ?) ;; \
-      *) echo "am__make_running_with_option: internal error: invalid" \
-              "target option '$${target_option-}' specified" >&2; \
-         exit 1;; \
-  esac; \
-  has_opt=no; \
-  sane_makeflags=$$MAKEFLAGS; \
-  if $(am__is_gnu_make); then \
-    sane_makeflags=$$MFLAGS; \
-  else \
-    case $$MAKEFLAGS in \
-      *\\[\ \	]*) \
-        bs=\\; \
-        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
-          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
-    esac; \
-  fi; \
-  skip_next=no; \
-  strip_trailopt () \
-  { \
-    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
-  }; \
-  for flg in $$sane_makeflags; do \
-    test $$skip_next = yes && { skip_next=no; continue; }; \
-    case $$flg in \
-      *=*|--*) continue;; \
-        -*I) strip_trailopt 'I'; skip_next=yes;; \
-      -*I?*) strip_trailopt 'I';; \
-        -*O) strip_trailopt 'O'; skip_next=yes;; \
-      -*O?*) strip_trailopt 'O';; \
-        -*l) strip_trailopt 'l'; skip_next=yes;; \
-      -*l?*) strip_trailopt 'l';; \
-      -[dEDm]) skip_next=yes;; \
-      -[JT]) skip_next=yes;; \
-    esac; \
-    case $$flg in \
-      *$$target_option*) has_opt=yes; break;; \
-    esac; \
-  done; \
-  test $$has_opt = yes
-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
-pkgdatadir = $(datadir)/@PACKAGE@
-pkgincludedir = $(includedir)/@PACKAGE@
-pkglibdir = $(libdir)/@PACKAGE@
-pkglibexecdir = $(libexecdir)/@PACKAGE@
-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
-NORMAL_INSTALL = :
-PRE_INSTALL = :
-POST_INSTALL = :
-NORMAL_UNINSTALL = :
-PRE_UNINSTALL = :
-POST_UNINSTALL = :
-build_triplet = @build@
-host_triplet = @host@
-target_triplet = @target@
-subdir = doc
-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/../bfd/acinclude.m4 \
-	$(top_srcdir)/../bfd/warning.m4 \
-	$(top_srcdir)/../config/depstand.m4 \
-	$(top_srcdir)/../config/enable.m4 \
-	$(top_srcdir)/../config/gettext-sister.m4 \
-	$(top_srcdir)/../config/iconv.m4 \
-	$(top_srcdir)/../config/jobserver.m4 \
-	$(top_srcdir)/../config/largefile.m4 \
-	$(top_srcdir)/../config/lcmessage.m4 \
-	$(top_srcdir)/../config/lead-dot.m4 \
-	$(top_srcdir)/../config/lib-ld.m4 \
-	$(top_srcdir)/../config/lib-link.m4 \
-	$(top_srcdir)/../config/lib-prefix.m4 \
-	$(top_srcdir)/../config/nls.m4 \
-	$(top_srcdir)/../config/override.m4 \
-	$(top_srcdir)/../config/pkg.m4 \
-	$(top_srcdir)/../config/plugins.m4 \
-	$(top_srcdir)/../config/po.m4 \
-	$(top_srcdir)/../config/progtest.m4 \
-	$(top_srcdir)/../config/zlib.m4 $(top_srcdir)/../libtool.m4 \
-	$(top_srcdir)/../ltoptions.m4 $(top_srcdir)/../ltsugar.m4 \
-	$(top_srcdir)/../ltversion.m4 $(top_srcdir)/../lt~obsolete.m4 \
-	$(top_srcdir)/../bfd/version.m4 \
-	$(top_srcdir)/../config/debuginfod.m4 \
-	$(top_srcdir)/configure.ac
-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
-	$(ACLOCAL_M4)
-DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
-mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
-CONFIG_HEADER = $(top_builddir)/config.h
-CONFIG_CLEAN_FILES =
-CONFIG_CLEAN_VPATH_FILES =
-AM_V_P = $(am__v_P_@AM_V@)
-am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
-am__v_P_0 = false
-am__v_P_1 = :
-AM_V_GEN = $(am__v_GEN_@AM_V@)
-am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
-am__v_GEN_0 = @echo "  GEN     " $@;
-am__v_GEN_1 = 
-AM_V_at = $(am__v_at_@AM_V@)
-am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
-am__v_at_0 = @
-am__v_at_1 = 
-SOURCES =
-DIST_SOURCES =
-AM_V_DVIPS = $(am__v_DVIPS_@AM_V@)
-am__v_DVIPS_ = $(am__v_DVIPS_@AM_DEFAULT_V@)
-am__v_DVIPS_0 = @echo "  DVIPS   " $@;
-am__v_DVIPS_1 = 
-AM_V_MAKEINFO = $(am__v_MAKEINFO_@AM_V@)
-am__v_MAKEINFO_ = $(am__v_MAKEINFO_@AM_DEFAULT_V@)
-am__v_MAKEINFO_0 = @echo "  MAKEINFO" $@;
-am__v_MAKEINFO_1 = 
-AM_V_INFOHTML = $(am__v_INFOHTML_@AM_V@)
-am__v_INFOHTML_ = $(am__v_INFOHTML_@AM_DEFAULT_V@)
-am__v_INFOHTML_0 = @echo "  INFOHTML" $@;
-am__v_INFOHTML_1 = 
-AM_V_TEXI2DVI = $(am__v_TEXI2DVI_@AM_V@)
-am__v_TEXI2DVI_ = $(am__v_TEXI2DVI_@AM_DEFAULT_V@)
-am__v_TEXI2DVI_0 = @echo "  TEXI2DVI" $@;
-am__v_TEXI2DVI_1 = 
-AM_V_TEXI2PDF = $(am__v_TEXI2PDF_@AM_V@)
-am__v_TEXI2PDF_ = $(am__v_TEXI2PDF_@AM_DEFAULT_V@)
-am__v_TEXI2PDF_0 = @echo "  TEXI2PDF" $@;
-am__v_TEXI2PDF_1 = 
-AM_V_texinfo = $(am__v_texinfo_@AM_V@)
-am__v_texinfo_ = $(am__v_texinfo_@AM_DEFAULT_V@)
-am__v_texinfo_0 = -q
-am__v_texinfo_1 = 
-AM_V_texidevnull = $(am__v_texidevnull_@AM_V@)
-am__v_texidevnull_ = $(am__v_texidevnull_@AM_DEFAULT_V@)
-am__v_texidevnull_0 = > /dev/null
-am__v_texidevnull_1 = 
-INFO_DEPS = binutils.info
-am__TEXINFO_TEX_DIR = $(srcdir)
-DVIS = binutils.dvi
-PDFS = binutils.pdf
-PSS = binutils.ps
-HTMLS = binutils.html
-TEXINFOS = binutils.texi
-TEXI2PDF = $(TEXI2DVI) --pdf --batch
-MAKEINFOHTML = $(MAKEINFO) --html
-AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS)
-DVIPS = dvips
-am__can_run_installinfo = \
-  case $$AM_UPDATE_INFO_DIR in \
-    n|no|NO) false;; \
-    *) (install-info --version) >/dev/null 2>&1;; \
-  esac
-am__installdirs = "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"
-am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
-am__vpath_adj = case $$p in \
-    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-    *) f=$$p;; \
-  esac;
-am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-am__install_max = 40
-am__nobase_strip_setup = \
-  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-am__nobase_strip = \
-  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-am__nobase_list = $(am__nobase_strip_setup); \
-  for p in $$list; do echo "$$p $$p"; done | \
-  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-    if (++n[$$2] == $(am__install_max)) \
-      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-    END { for (dir in files) print dir, files[dir] }'
-am__base_list = \
-  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
-am__uninstall_files_from_dir = { \
-  test -z "$$files" \
-    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
-    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
-         $(am__cd) "$$dir" && rm -f $$files; }; \
-  }
-man1dir = $(mandir)/man1
-NROFF = nroff
-MANS = $(man_MANS)
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
-am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/../mkinstalldirs
-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = @ACLOCAL@
-AMTAR = @AMTAR@
-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
-AR = @AR@
-AUTOCONF = @AUTOCONF@
-AUTOHEADER = @AUTOHEADER@
-AUTOMAKE = @AUTOMAKE@
-AWK = @AWK@
-BUILD_DLLTOOL = @BUILD_DLLTOOL@
-BUILD_DLLWRAP = @BUILD_DLLWRAP@
-BUILD_INSTALL_MISC = @BUILD_INSTALL_MISC@
-BUILD_MISC = @BUILD_MISC@
-BUILD_SRCONV = @BUILD_SRCONV@
-BUILD_WINDMC = @BUILD_WINDMC@
-BUILD_WINDRES = @BUILD_WINDRES@
-CATALOGS = @CATALOGS@
-CATOBJEXT = @CATOBJEXT@
-CC = @CC@
-CCDEPMODE = @CCDEPMODE@
-CC_FOR_BUILD = @CC_FOR_BUILD@
-CFLAGS = @CFLAGS@
-CPP = @CPP@
-CPPFLAGS = @CPPFLAGS@
-CYGPATH_W = @CYGPATH_W@
-DATADIRNAME = @DATADIRNAME@
-DEBUGINFOD_CFLAGS = @DEBUGINFOD_CFLAGS@
-DEBUGINFOD_LIBS = @DEBUGINFOD_LIBS@
-DEFS = @DEFS@
-DEMANGLER_NAME = @DEMANGLER_NAME@
-DEPDIR = @DEPDIR@
-DLLTOOL_DEFS = @DLLTOOL_DEFS@
-DSYMUTIL = @DSYMUTIL@
-DUMPBIN = @DUMPBIN@
-ECHO_C = @ECHO_C@
-ECHO_N = @ECHO_N@
-ECHO_T = @ECHO_T@
-EGREP = @EGREP@
-EMULATION = @EMULATION@
-EMULATION_VECTOR = @EMULATION_VECTOR@
-EXEEXT = @EXEEXT@
-EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@
-FGREP = @FGREP@
-GENCAT = @GENCAT@
-GMSGFMT = @GMSGFMT@
-GREP = @GREP@
-HDEFINES = @HDEFINES@
-INCINTL = @INCINTL@
-INSTALL = @INSTALL@
-INSTALL_DATA = @INSTALL_DATA@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
-INSTALL_SCRIPT = @INSTALL_SCRIPT@
-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
-INSTOBJEXT = @INSTOBJEXT@
-LARGEFILE_CPPFLAGS = @LARGEFILE_CPPFLAGS@
-LD = @LD@
-LDFLAGS = @LDFLAGS@
-LEX = @LEX@
-LEXLIB = @LEXLIB@
-LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
-LIBICONV = @LIBICONV@
-LIBINTL = @LIBINTL@
-LIBINTL_DEP = @LIBINTL_DEP@
-LIBOBJS = @LIBOBJS@
-LIBS = @LIBS@
-LIBTOOL = @LIBTOOL@
-LIPO = @LIPO@
-LN_S = @LN_S@
-LTLIBICONV = @LTLIBICONV@
-LTLIBOBJS = @LTLIBOBJS@
-MAINT = @MAINT@
-MAKEINFO = @MAKEINFO@
-MKDIR_P = @MKDIR_P@
-MKINSTALLDIRS = @MKINSTALLDIRS@
-MSGFMT = @MSGFMT@
-MSGMERGE = @MSGMERGE@
-NM = @NM@
-NMEDIT = @NMEDIT@
-NO_WERROR = @NO_WERROR@
-OBJDUMP = @OBJDUMP@
-OBJDUMP_DEFS = @OBJDUMP_DEFS@
-OBJDUMP_PRIVATE_OFILES = @OBJDUMP_PRIVATE_OFILES@
-OBJEXT = @OBJEXT@
-OTOOL = @OTOOL@
-OTOOL64 = @OTOOL64@
-PACKAGE = @PACKAGE@
-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
-PACKAGE_NAME = @PACKAGE_NAME@
-PACKAGE_STRING = @PACKAGE_STRING@
-PACKAGE_TARNAME = @PACKAGE_TARNAME@
-PACKAGE_URL = @PACKAGE_URL@
-PACKAGE_VERSION = @PACKAGE_VERSION@
-PATH_SEPARATOR = @PATH_SEPARATOR@
-PKG_CONFIG = @PKG_CONFIG@
-PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
-PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
-POSUB = @POSUB@
-RANLIB = @RANLIB@
-SED = @SED@
-SET_MAKE = @SET_MAKE@
-SHELL = @SHELL@
-STRIP = @STRIP@
-USE_NLS = @USE_NLS@
-VERSION = @VERSION@
-WARN_CFLAGS = @WARN_CFLAGS@
-WARN_CFLAGS_FOR_BUILD = @WARN_CFLAGS_FOR_BUILD@
-WARN_WRITE_STRINGS = @WARN_WRITE_STRINGS@
-XGETTEXT = @XGETTEXT@
-YACC = @YACC@
-YFLAGS = @YFLAGS@
-abs_builddir = @abs_builddir@
-abs_srcdir = @abs_srcdir@
-abs_top_builddir = @abs_top_builddir@
-abs_top_srcdir = @abs_top_srcdir@
-ac_ct_CC = @ac_ct_CC@
-ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
-am__include = @am__include@
-am__leading_dot = @am__leading_dot@
-am__quote = @am__quote@
-am__tar = @am__tar@
-am__untar = @am__untar@
-bindir = @bindir@
-build = @build@
-build_alias = @build_alias@
-build_cpu = @build_cpu@
-build_os = @build_os@
-build_vendor = @build_vendor@
-builddir = @builddir@
-datadir = @datadir@
-datarootdir = @datarootdir@
-docdir = @docdir@
-dvidir = @dvidir@
-exec_prefix = @exec_prefix@
-host = @host@
-host_alias = @host_alias@
-host_cpu = @host_cpu@
-host_os = @host_os@
-host_vendor = @host_vendor@
-htmldir = @htmldir@
-includedir = @includedir@
-infodir = @infodir@
-install_sh = @install_sh@
-libdir = @libdir@
-libexecdir = @libexecdir@
-localedir = @localedir@
-localstatedir = @localstatedir@
-mandir = @mandir@
-mkdir_p = @mkdir_p@
-oldincludedir = @oldincludedir@
-pdfdir = @pdfdir@
-prefix = @prefix@
-program_transform_name = @program_transform_name@
-psdir = @psdir@
-sbindir = @sbindir@
-sharedstatedir = @sharedstatedir@
-srcdir = @srcdir@
-sysconfdir = @sysconfdir@
-target = @target@
-target_alias = @target_alias@
-target_cpu = @target_cpu@
-target_os = @target_os@
-target_vendor = @target_vendor@
-top_build_prefix = @top_build_prefix@
-top_builddir = @top_builddir@
-top_srcdir = @top_srcdir@
-zlibdir = @zlibdir@
-zlibinc = @zlibinc@
-AUTOMAKE_OPTIONS = info-in-builddir no-texinfo.tex foreign
-
-# What version of the manual you want; "all" includes everything
-CONFIG = all
-
-# Options to extract the man page from as.texinfo
-MANCONF = -Dman
-TEXI2POD = perl $(top_srcdir)/../etc/texi2pod.pl $(AM_MAKEINFOFLAGS)
-POD2MAN = pod2man --center="GNU Development Tools" \
-	 --release="binutils-$(VERSION)" --section=1
-
-
-# List of man pages generated from binutils.texi
-man_MANS = \
-	addr2line.1 \
-	ar.1 \
-	dlltool.1 \
-	nm.1 \
-	objcopy.1 \
-	objdump.1 \
-	ranlib.1 \
-	readelf.1 \
-	size.1 \
-	strings.1 \
-	strip.1 \
-	elfedit.1 \
-	windres.1 \
-	windmc.1 \
-	$(DEMANGLER_NAME).1
-
-info_TEXINFOS = binutils.texi
-binutils_TEXI = $(srcdir)/binutils.texi
-AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
-		   -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc \
-		   --no-split
-
-TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
-		    -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc
-
-MAINTAINERCLEANFILES = $(man_MANS) binutils.info cxxfilt.man
-all: all-am
-
-.SUFFIXES:
-.SUFFIXES: .dvi .ps
-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
-	@for dep in $?; do \
-	  case '$(am__configure_deps)' in \
-	    *$$dep*) \
-	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-	        && { if test -f $@; then exit 0; else break; fi; }; \
-	      exit 1;; \
-	  esac; \
-	done; \
-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \
-	$(am__cd) $(top_srcdir) && \
-	  $(AUTOMAKE) --foreign doc/Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
-	@case '$?' in \
-	  *config.status*) \
-	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
-	  *) \
-	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
-	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
-	esac;
-
-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
-	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-
-$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
-	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
-	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-$(am__aclocal_m4_deps):
-
-mostlyclean-libtool:
-	-rm -f *.lo
-
-clean-libtool:
-	-rm -rf .libs _libs
-
-binutils.info: binutils.texi 
-	$(AM_V_MAKEINFO)restore=: && backupdir="$(am__leading_dot)am$$$$" && \
-	rm -rf $$backupdir && mkdir $$backupdir && \
-	if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
-	  for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \
-	    if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \
-	  done; \
-	else :; fi && \
-	if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
-	 -o $@ `test -f 'binutils.texi' || echo '$(srcdir)/'`binutils.texi; \
-	then \
-	  rc=0; \
-	else \
-	  rc=$$?; \
-	  $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
-	fi; \
-	rm -rf $$backupdir; exit $$rc
-
-binutils.dvi: binutils.texi  
-	$(AM_V_TEXI2DVI)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
-	MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \
-	$(TEXI2DVI) $(AM_V_texinfo) --build-dir=$(@:.dvi=.t2d) -o $@ $(AM_V_texidevnull) \
-	`test -f 'binutils.texi' || echo '$(srcdir)/'`binutils.texi
-
-binutils.pdf: binutils.texi  
-	$(AM_V_TEXI2PDF)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
-	MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \
-	$(TEXI2PDF) $(AM_V_texinfo) --build-dir=$(@:.pdf=.t2p) -o $@ $(AM_V_texidevnull) \
-	`test -f 'binutils.texi' || echo '$(srcdir)/'`binutils.texi
-
-binutils.html: binutils.texi  
-	$(AM_V_MAKEINFO)rm -rf $(@:.html=.htp)
-	$(AM_V_at)if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
-	 -o $(@:.html=.htp) `test -f 'binutils.texi' || echo '$(srcdir)/'`binutils.texi; \
-	then \
-	  rm -rf $@ && mv $(@:.html=.htp) $@; \
-	else \
-	  rm -rf $(@:.html=.htp); exit 1; \
-	fi
-.dvi.ps:
-	$(AM_V_DVIPS)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
-	$(DVIPS) $(AM_V_texinfo) -o $@ $<
-
-uninstall-dvi-am:
-	@$(NORMAL_UNINSTALL)
-	@list='$(DVIS)'; test -n "$(dvidir)" || list=; \
-	for p in $$list; do \
-	  $(am__strip_dir) \
-	  echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \
-	  rm -f "$(DESTDIR)$(dvidir)/$$f"; \
-	done
-
-uninstall-html-am:
-	@$(NORMAL_UNINSTALL)
-	@list='$(HTMLS)'; test -n "$(htmldir)" || list=; \
-	for p in $$list; do \
-	  $(am__strip_dir) \
-	  echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \
-	  rm -rf "$(DESTDIR)$(htmldir)/$$f"; \
-	done
-
-uninstall-info-am:
-	@$(PRE_UNINSTALL)
-	@if test -d '$(DESTDIR)$(infodir)' && $(am__can_run_installinfo); then \
-	  list='$(INFO_DEPS)'; \
-	  for file in $$list; do \
-	    relfile=`echo "$$file" | sed 's|^.*/||'`; \
-	    echo " install-info --info-dir='$(DESTDIR)$(infodir)' --remove '$(DESTDIR)$(infodir)/$$relfile'"; \
-	    if install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$$relfile"; \
-	    then :; else test ! -f "$(DESTDIR)$(infodir)/$$relfile" || exit 1; fi; \
-	  done; \
-	else :; fi
-	@$(NORMAL_UNINSTALL)
-	@list='$(INFO_DEPS)'; \
-	for file in $$list; do \
-	  relfile=`echo "$$file" | sed 's|^.*/||'`; \
-	  relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
-	  (if test -d "$(DESTDIR)$(infodir)" && cd "$(DESTDIR)$(infodir)"; then \
-	     echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]"; \
-	     rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
-	   else :; fi); \
-	done
-
-uninstall-pdf-am:
-	@$(NORMAL_UNINSTALL)
-	@list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
-	for p in $$list; do \
-	  $(am__strip_dir) \
-	  echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \
-	  rm -f "$(DESTDIR)$(pdfdir)/$$f"; \
-	done
-
-uninstall-ps-am:
-	@$(NORMAL_UNINSTALL)
-	@list='$(PSS)'; test -n "$(psdir)" || list=; \
-	for p in $$list; do \
-	  $(am__strip_dir) \
-	  echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \
-	  rm -f "$(DESTDIR)$(psdir)/$$f"; \
-	done
-
-dist-info: $(INFO_DEPS)
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
-	list='$(INFO_DEPS)'; \
-	for base in $$list; do \
-	  case $$base in \
-	    $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
-	  esac; \
-	  if test -f $$base; then d=.; else d=$(srcdir); fi; \
-	  base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
-	  for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
-	    if test -f $$file; then \
-	      relfile=`expr "$$file" : "$$d/\(.*\)"`; \
-	      test -f "$(distdir)/$$relfile" || \
-		cp -p $$file "$(distdir)/$$relfile"; \
-	    else :; fi; \
-	  done; \
-	done
-
-mostlyclean-aminfo:
-	-rm -rf binutils.t2d binutils.t2p
-
-clean-aminfo:
-	-test -z "binutils.dvi binutils.pdf binutils.ps binutils.html" \
-	|| rm -rf binutils.dvi binutils.pdf binutils.ps binutils.html
-
-maintainer-clean-aminfo:
-	@list='$(INFO_DEPS)'; for i in $$list; do \
-	  i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
-	  echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \
-	  rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
-	done
-install-man1: $(man_MANS)
-	@$(NORMAL_INSTALL)
-	@list1=''; \
-	list2='$(man_MANS)'; \
-	test -n "$(man1dir)" \
-	  && test -n "`echo $$list1$$list2`" \
-	  || exit 0; \
-	echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
-	$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
-	{ for i in $$list1; do echo "$$i"; done;  \
-	if test -n "$$list2"; then \
-	  for i in $$list2; do echo "$$i"; done \
-	    | sed -n '/\.1[a-z]*$$/p'; \
-	fi; \
-	} | while read p; do \
-	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
-	  echo "$$d$$p"; echo "$$p"; \
-	done | \
-	sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
-	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
-	sed 'N;N;s,\n, ,g' | { \
-	list=; while read file base inst; do \
-	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \
-	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
-	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
-	  fi; \
-	done; \
-	for i in $$list; do echo "$$i"; done | $(am__base_list) | \
-	while read files; do \
-	  test -z "$$files" || { \
-	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
-	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
-	done; }
-
-uninstall-man1:
-	@$(NORMAL_UNINSTALL)
-	@list=''; test -n "$(man1dir)" || exit 0; \
-	files=`{ for i in $$list; do echo "$$i"; done; \
-	l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
-	  sed -n '/\.1[a-z]*$$/p'; \
-	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
-	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
-	dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
-tags TAGS:
-
-ctags CTAGS:
-
-cscope cscopelist:
-
-
-distdir: $(DISTFILES)
-	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
-	list='$(DISTFILES)'; \
-	  dist_files=`for file in $$list; do echo $$file; done | \
-	  sed -e "s|^$$srcdirstrip/||;t" \
-	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
-	case $$dist_files in \
-	  */*) $(MKDIR_P) `echo "$$dist_files" | \
-			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
-			   sort -u` ;; \
-	esac; \
-	for file in $$dist_files; do \
-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
-	  if test -d $$d/$$file; then \
-	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-	    if test -d "$(distdir)/$$file"; then \
-	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-	    fi; \
-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
-	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-	    fi; \
-	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
-	  else \
-	    test -f "$(distdir)/$$file" \
-	    || cp -p $$d/$$file "$(distdir)/$$file" \
-	    || exit 1; \
-	  fi; \
-	done
-	$(MAKE) $(AM_MAKEFLAGS) \
-	  top_distdir="$(top_distdir)" distdir="$(distdir)" \
-	  dist-info
-check-am: all-am
-check: check-am
-all-am: Makefile $(INFO_DEPS) $(MANS)
-installdirs:
-	for dir in "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"; do \
-	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
-	done
-install: install-am
-install-exec: install-exec-am
-install-data: install-data-am
-uninstall: uninstall-am
-
-install-am: all-am
-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-
-installcheck: installcheck-am
-install-strip:
-	if test -z '$(STRIP)'; then \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	      install; \
-	else \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
-	fi
-mostlyclean-generic:
-
-clean-generic:
-
-distclean-generic:
-	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
-
-maintainer-clean-generic:
-	@echo "This command is intended for maintainers to use"
-	@echo "it deletes files that may require special tools to rebuild."
-	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
-clean: clean-am
-
-clean-am: clean-aminfo clean-generic clean-libtool mostlyclean-am
-
-distclean: distclean-am
-	-rm -f Makefile
-distclean-am: clean-am distclean-generic
-
-dvi: dvi-am
-
-dvi-am: $(DVIS)
-
-html: html-am
-
-html-am: $(HTMLS) html-local
-
-info: info-am
-
-info-am: $(INFO_DEPS) info-local
-
-install-data-am: install-info-am install-man
-
-install-dvi: install-dvi-am
-
-install-dvi-am: $(DVIS)
-	@$(NORMAL_INSTALL)
-	@list='$(DVIS)'; test -n "$(dvidir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(dvidir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(dvidir)" || exit 1; \
-	fi; \
-	for p in $$list; do \
-	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-	  echo "$$d$$p"; \
-	done | $(am__base_list) | \
-	while read files; do \
-	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \
-	  $(INSTALL_DATA) $$files "$(DESTDIR)$(dvidir)" || exit $$?; \
-	done
-install-exec-am:
-
-install-html: install-html-am
-
-install-html-am: $(HTMLS)
-	@$(NORMAL_INSTALL)
-	@list='$(HTMLS)'; list2=; test -n "$(htmldir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
-	fi; \
-	for p in $$list; do \
-	  if test -f "$$p" || test -d "$$p"; then d=; else d="$(srcdir)/"; fi; \
-	  $(am__strip_dir) \
-	  d2=$$d$$p; \
-	  if test -d "$$d2"; then \
-	    echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
-	    $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
-	    echo " $(INSTALL_DATA) '$$d2'/* '$(DESTDIR)$(htmldir)/$$f'"; \
-	    $(INSTALL_DATA) "$$d2"/* "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
-	  else \
-	    list2="$$list2 $$d2"; \
-	  fi; \
-	done; \
-	test -z "$$list2" || { echo "$$list2" | $(am__base_list) | \
-	while read files; do \
-	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
-	  $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
-	done; }
-install-info: install-info-am
-
-install-info-am: $(INFO_DEPS)
-	@$(NORMAL_INSTALL)
-	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
-	list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \
-	fi; \
-	for file in $$list; do \
-	  case $$file in \
-	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
-	  esac; \
-	  if test -f $$file; then d=.; else d=$(srcdir); fi; \
-	  file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
-	  for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
-	               $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
-	    if test -f $$ifile; then \
-	      echo "$$ifile"; \
-	    else : ; fi; \
-	  done; \
-	done | $(am__base_list) | \
-	while read files; do \
-	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(infodir)'"; \
-	  $(INSTALL_DATA) $$files "$(DESTDIR)$(infodir)" || exit $$?; done
-	@$(POST_INSTALL)
-	@if $(am__can_run_installinfo); then \
-	  list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
-	  for file in $$list; do \
-	    relfile=`echo "$$file" | sed 's|^.*/||'`; \
-	    echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
-	    install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
-	  done; \
-	else : ; fi
-install-man: install-man1
-
-install-pdf: install-pdf-am
-
-install-pdf-am: $(PDFS)
-	@$(NORMAL_INSTALL)
-	@list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(pdfdir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(pdfdir)" || exit 1; \
-	fi; \
-	for p in $$list; do \
-	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-	  echo "$$d$$p"; \
-	done | $(am__base_list) | \
-	while read files; do \
-	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pdfdir)'"; \
-	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pdfdir)" || exit $$?; done
-install-ps: install-ps-am
-
-install-ps-am: $(PSS)
-	@$(NORMAL_INSTALL)
-	@list='$(PSS)'; test -n "$(psdir)" || list=; \
-	if test -n "$$list"; then \
-	  echo " $(MKDIR_P) '$(DESTDIR)$(psdir)'"; \
-	  $(MKDIR_P) "$(DESTDIR)$(psdir)" || exit 1; \
-	fi; \
-	for p in $$list; do \
-	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-	  echo "$$d$$p"; \
-	done | $(am__base_list) | \
-	while read files; do \
-	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(psdir)'"; \
-	  $(INSTALL_DATA) $$files "$(DESTDIR)$(psdir)" || exit $$?; done
-installcheck-am:
-
-maintainer-clean: maintainer-clean-am
-	-rm -f Makefile
-maintainer-clean-am: distclean-am maintainer-clean-aminfo \
-	maintainer-clean-generic
-
-mostlyclean: mostlyclean-am
-
-mostlyclean-am: mostlyclean-aminfo mostlyclean-generic \
-	mostlyclean-libtool
-
-pdf: pdf-am
-
-pdf-am: $(PDFS)
-
-ps: ps-am
-
-ps-am: $(PSS)
-
-uninstall-am: uninstall-dvi-am uninstall-html-am uninstall-info-am \
-	uninstall-man uninstall-pdf-am uninstall-ps-am
-
-uninstall-man: uninstall-man1
-
-.MAKE: install-am install-strip
-
-.PHONY: all all-am check check-am clean clean-aminfo clean-generic \
-	clean-libtool cscopelist-am ctags-am dist-info distclean \
-	distclean-generic distclean-libtool distdir dvi dvi-am html \
-	html-am html-local info info-am info-local install install-am \
-	install-data install-data-am install-dvi install-dvi-am \
-	install-exec install-exec-am install-html install-html-am \
-	install-info install-info-am install-man install-man1 \
-	install-pdf install-pdf-am install-ps install-ps-am \
-	install-strip installcheck installcheck-am installdirs \
-	maintainer-clean maintainer-clean-aminfo \
-	maintainer-clean-generic mostlyclean mostlyclean-aminfo \
-	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
-	tags-am uninstall uninstall-am uninstall-dvi-am \
-	uninstall-html-am uninstall-info-am uninstall-man \
-	uninstall-man1 uninstall-pdf-am uninstall-ps-am
-
-.PRECIOUS: Makefile
-
-
-# Man page generation from texinfo
-addr2line.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
-	$(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f addr2line.pod
-
-ar.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
-	$(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f ar.pod
-
-dlltool.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
-	$(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f dlltool.pod
-
-nm.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
-	$(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f nm.pod
-
-objcopy.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
-	$(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f objcopy.pod
-
-objdump.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
-	$(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f objdump.pod
-
-ranlib.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
-	$(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f ranlib.pod
-
-readelf.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
-	$(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f readelf.pod
-
-size.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
-	$(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f size.pod
-
-strings.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
-	$(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f strings.pod
-
-strip.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
-	$(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f strip.pod
-
-elfedit.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
-	$(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f elfedit.pod
-
-windres.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
-	$(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f windres.pod
-
-windmc.1:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
-	$(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f windmc.pod
-
-cxxfilt.man:	$(binutils_TEXI)
-	$(AM_V_GEN)touch $@
-	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
-	$(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	$(AM_V_at)rm -f $(DEMANGLER_NAME).pod
-
-$(DEMANGLER_NAME).1: cxxfilt.man Makefile
-	$(AM_V_GEN)if test -f cxxfilt.man; then \
-	  man=cxxfilt.man; \
-	else \
-	  man=$(srcdir)/cxxfilt.man; \
-	fi; \
-	sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \
-	    -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \
-		> $(DEMANGLER_NAME).1
-
-html-local: binutils/index.html
-binutils/index.html: binutils.texi $(binutils_TEXINFOS)
-	$(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
-	  --split=node -I$(srcdir) $(srcdir)/binutils.texi
-
-# Maintenance
-
-# We need it for the taz target in ../../Makefile.in.
-info-local: $(MANS)
-
-# Tell versions [3.59,3.63) of GNU make to not export all variables.
-# Otherwise a system limit (for SysV at least) may be exceeded.
-.NOEXPORT:
diff --git a/binutils/doc/Makefile.am b/binutils/doc/local.mk
similarity index 77%
rename from binutils/doc/Makefile.am
rename to binutils/doc/local.mk
index 90b238ddf8d9..687b3f65e6cb 100644
--- a/binutils/doc/Makefile.am
+++ b/binutils/doc/local.mk
@@ -6,19 +6,17 @@
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 3 of the License, or
 # (at your option) any later version.
-# 
+#
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with this program; see the file COPYING3.  If not see
 # <http://www.gnu.org/licenses/>.
 #
 
-AUTOMAKE_OPTIONS = info-in-builddir no-texinfo.tex foreign
-
 # What version of the manual you want; "all" includes everything
 CONFIG=all
 
@@ -32,155 +30,155 @@ POD2MAN = pod2man --center="GNU Development Tools" \
 
 # List of man pages generated from binutils.texi
 man_MANS = \
-	addr2line.1 \
-	ar.1 \
-	dlltool.1 \
-	nm.1 \
-	objcopy.1 \
-	objdump.1 \
-	ranlib.1 \
-	readelf.1 \
-	size.1 \
-	strings.1 \
-	strip.1 \
-	elfedit.1 \
-	windres.1 \
-	windmc.1 \
-	$(DEMANGLER_NAME).1
-
-info_TEXINFOS = binutils.texi
-binutils_TEXI = $(srcdir)/binutils.texi
-
-AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
-		   -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc \
+	%D%/addr2line.1 \
+	%D%/ar.1 \
+	%D%/dlltool.1 \
+	%D%/nm.1 \
+	%D%/objcopy.1 \
+	%D%/objdump.1 \
+	%D%/ranlib.1 \
+	%D%/readelf.1 \
+	%D%/size.1 \
+	%D%/strings.1 \
+	%D%/strip.1 \
+	%D%/elfedit.1 \
+	%D%/windres.1 \
+	%D%/windmc.1 \
+	%D%/$(DEMANGLER_NAME).1
+
+info_TEXINFOS = %D%/binutils.texi
+binutils_TEXI = $(srcdir)/%D%/binutils.texi
+
+AM_MAKEINFOFLAGS = -I "$(srcdir)/%D%" -I "$(top_srcdir)/../libiberty" \
+		   -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc \
 		   --no-split
-TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
-		    -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc
+TEXI2DVI = texi2dvi -I "$(srcdir)/%D%" -I "$(top_srcdir)/../libiberty" \
+		    -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc
 
 # Man page generation from texinfo
-addr2line.1:	$(binutils_TEXI)
+%D%/addr2line.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
 	$(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f addr2line.pod
 
-ar.1:	$(binutils_TEXI)
+%D%/ar.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
 	$(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f ar.pod
 
-dlltool.1:	$(binutils_TEXI)
+%D%/dlltool.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
 	$(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f dlltool.pod
 
-nm.1:	$(binutils_TEXI)
+%D%/nm.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
 	$(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f nm.pod
 
-objcopy.1:	$(binutils_TEXI)
+%D%/objcopy.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
 	$(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f objcopy.pod
 
-objdump.1:	$(binutils_TEXI)
+%D%/objdump.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
 	$(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f objdump.pod
 
-ranlib.1:	$(binutils_TEXI)
+%D%/ranlib.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
 	$(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f ranlib.pod
 
-readelf.1:	$(binutils_TEXI)
+%D%/readelf.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
 	$(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f readelf.pod
 
-size.1:	$(binutils_TEXI)
+%D%/size.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
 	$(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f size.pod
 
-strings.1:	$(binutils_TEXI)
+%D%/strings.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
 	$(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f strings.pod
 
-strip.1:	$(binutils_TEXI)
+%D%/strip.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
 	$(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f strip.pod
 
-elfedit.1:	$(binutils_TEXI)
+%D%/elfedit.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
 	$(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f elfedit.pod
 
-windres.1:	$(binutils_TEXI)
+%D%/windres.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
 	$(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f windres.pod
 
-windmc.1:	$(binutils_TEXI)
+%D%/windmc.1:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
 	$(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f windmc.pod
 
-cxxfilt.man:	$(binutils_TEXI)
+%D%/cxxfilt.man:	$(binutils_TEXI)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
 	$(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f $(DEMANGLER_NAME).pod
 
-MAINTAINERCLEANFILES = $(man_MANS) binutils.info cxxfilt.man
+MAINTAINERCLEANFILES += $(man_MANS) %D%/binutils.info %D%/cxxfilt.man
 
-$(DEMANGLER_NAME).1: cxxfilt.man Makefile
-	$(AM_V_GEN)if test -f cxxfilt.man; then \
-	  man=cxxfilt.man; \
+%D%/$(DEMANGLER_NAME).1: %D%/cxxfilt.man Makefile
+	$(AM_V_GEN)if test -f %D%/cxxfilt.man; then \
+	  man=%D%/cxxfilt.man; \
 	else \
-	  man=$(srcdir)/cxxfilt.man; \
+	  man=$(srcdir)/%D%/cxxfilt.man; \
 	fi; \
 	sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \
 	    -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \
-		> $(DEMANGLER_NAME).1
+		> %D%/$(DEMANGLER_NAME).1
 
-html-local: binutils/index.html
-binutils/index.html: binutils.texi $(binutils_TEXINFOS)
+html-local: %D%/binutils/index.html
+binutils/index.html: %D%/binutils.texi $(binutils_TEXINFOS)
 	$(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
-	  --split=node -I$(srcdir) $(srcdir)/binutils.texi
+	  --split=node -I$(srcdir) $(srcdir)/%D%/binutils.texi
 
 # Maintenance
 
-# We need it for the taz target in ../../Makefile.in.
+# We need it for the taz target in ../Makefile.in.
 info-local: $(MANS)
-- 
2.33.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/2] binutils: merge doc subdir up a level
  2021-11-26  4:16   ` [PATCH 2/2] binutils: merge doc subdir up a level Mike Frysinger
@ 2021-11-29 13:30     ` Nick Clifton
  2021-11-30 10:17     ` Luis Machado
  1 sibling, 0 replies; 12+ messages in thread
From: Nick Clifton @ 2021-11-29 13:30 UTC (permalink / raw)
  To: Mike Frysinger, binutils

On 11/26/21 04:16, Mike Frysinger via Binutils wrote:
> This avoids a recursive make into the doc subdir and speeds up the
> build slightly.  It also allows for more parallelism.
> ---
>   binutils/Makefile.am                   |    8 +-
>   binutils/Makefile.in                   |  594 +++++++++++++-
>   binutils/configure.ac                  |    2 +-
>   binutils/doc/Makefile.in               | 1045 ------------------------
>   binutils/doc/{Makefile.am => local.mk} |  102 ++-
>   5 files changed, 608 insertions(+), 1143 deletions(-)
>   delete mode 100644 binutils/doc/Makefile.in
>   rename binutils/doc/{Makefile.am => local.mk} (77%)
> 
> diff --git a/binutils/Makefile.am b/binutils/Makefile.am
> index 9ceb63da7b80..f54dadd921dc 100644
> 
Approved - please apply.

Cheers
   Nick


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 1/2] binutils: enable silent build rules
  2021-11-26  4:15 ` [PATCH 1/2] binutils: " Mike Frysinger
  2021-11-26  4:16   ` [PATCH 2/2] binutils: merge doc subdir up a level Mike Frysinger
@ 2021-11-29 13:31   ` Nick Clifton
  1 sibling, 0 replies; 12+ messages in thread
From: Nick Clifton @ 2021-11-29 13:31 UTC (permalink / raw)
  To: Mike Frysinger, binutils

On 11/26/21 04:15, Mike Frysinger via Binutils wrote:
> Also add $(AM_V_xxx) to various manual rules in here.
> ---
>   binutils/Makefile.am     | 100 +++++++++++++++----------------
>   binutils/Makefile.in     | 100 +++++++++++++++----------------
>   binutils/configure       |  43 +++++++++++++-
>   binutils/configure.ac    |   1 +
>   binutils/doc/Makefile.am | 124 +++++++++++++++++++--------------------
>   binutils/doc/Makefile.in | 124 +++++++++++++++++++--------------------
>   6 files changed, 266 insertions(+), 226 deletions(-)
> 
Approved - please apply.

Cheers
   Nick


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/2] binutils: merge doc subdir up a level
  2021-11-26  4:16   ` [PATCH 2/2] binutils: merge doc subdir up a level Mike Frysinger
  2021-11-29 13:30     ` Nick Clifton
@ 2021-11-30 10:17     ` Luis Machado
  2021-11-30 10:18       ` Luis Machado
  2021-11-30 16:35       ` [PATCH] binutils: add missing doc/dirstamp deps Mike Frysinger
  1 sibling, 2 replies; 12+ messages in thread
From: Luis Machado @ 2021-11-30 10:17 UTC (permalink / raw)
  To: Mike Frysinger, binutils

Hi Mike,

It seems this patch is causing some semi-deterministic failures in 
parallel builds. Sometimes it fails, other times it doesn't.

Here's the output of one that has failed:

--

   GEN      doc/addr2line.1 
 
 
                                                 [261/1955]
   GEN      doc/dlltool.1 
 
 

   GEN      doc/nm.1 

touch: cannot touch 'doc/addr2line.1'  GEN      doc/objcopy.1 
 
 

: No such file or directory 
 

Makefile:2017: recipe for target 'doc/addr2line.1' failed 
 
 

make[3]: *** [doc/addr2line.1] Error 1 
 

make[3]: *** Waiting for unfinished jobs.... 
 
 

touch: cannot touch 'doc/dlltool.1': No such file or directory 
 

   GEN      doc/objdump.1 
 
 

   GEN      doc/ranlib.1 
 
 

   GEN      doc/ar.1 
 
 

Makefile:2031: recipe for target 'doc/dlltool.1' failed 
 
 

make[3]: *** [doc/dlltool.1] Error 1 
 
 

touch: cannot touch 'doc/objcopy.1': No such file or directory 

touch: cannot touch 'doc/nm.1'  GEN      doc/strings.1 
 
 

Makefile:2045: recipe for target 'doc/objcopy.1' failed 

make[3]: *** [doc/objcopy.1] Error 1 
 
 

: No such file or directory 
 

   GEN      doc/readelf.1
configure: updating cache ./config.cache
touch: cannot touch 'doc/objdump.1': No such file or directory
touch: cannot touch 'doc/ranlib.1': No such file or directory
touch: cannot touch 'doc/readelf.1'touch: cannot touch 'doc/strings.1': 
No such file or directory
: No such file or directory
touch: cannot touch 'doc/ar.1': No such file or directory
Makefile:2066: recipe for target 'doc/readelf.1' failed
make[3]: *** [doc/readelf.1] Error 1
   GEN      doc/size.1
Makefile:2024: recipe for target 'doc/ar.1' failed
make[3]: *** [doc/ar.1] Error 1
Makefile:2038: recipe for target 'doc/nm.1' failed
make[3]: *** [doc/nm.1] Error 1
Makefile:2080: recipe for target 'doc/strings.1' failed
make[3]: *** [doc/strings.1] Error 1
   GEN      doc/strip.1
Makefile:2052: recipe for target 'doc/objdump.1' failed
make[3]: *** [doc/objdump.1] Error 1
touch: cannot touch 'doc/strip.1': No such file or directory
make[4]: Entering directory 
'/home/luis.machado/work/tcwg/builds/binutils-gdb-arm64-bionic/binutils'
checking that generated files are newer than configure... done
configure: creating ./config.status
Makefile:2059: recipe for target 'doc/ranlib.1' failed
make[3]: *** [doc/ranlib.1] Error 1
Makefile:2087: recipe for target 'doc/strip.1' failed
make[3]: *** [doc/strip.1] Error 1
touch: cannot touch 'doc/size.1': No such file or directory
Makefile:2073: recipe for target 'doc/size.1' failed
make[3]: *** [doc/size.1] Error 1

--

It is a fresh build from a clean tree. Resuming the build makes it 
complete, so I suppose there is some race condition somewhere. My build 
is a -j160. A -j1 completes just fine.

I'm on Ubuntu 20.04.

On 11/26/21 1:16 AM, Mike Frysinger via Binutils wrote:
> This avoids a recursive make into the doc subdir and speeds up the
> build slightly.  It also allows for more parallelism.
> ---
>   binutils/Makefile.am                   |    8 +-
>   binutils/Makefile.in                   |  594 +++++++++++++-
>   binutils/configure.ac                  |    2 +-
>   binutils/doc/Makefile.in               | 1045 ------------------------
>   binutils/doc/{Makefile.am => local.mk} |  102 ++-
>   5 files changed, 608 insertions(+), 1143 deletions(-)
>   delete mode 100644 binutils/doc/Makefile.in
>   rename binutils/doc/{Makefile.am => local.mk} (77%)
> 
> diff --git a/binutils/Makefile.am b/binutils/Makefile.am
> index 9ceb63da7b80..f54dadd921dc 100644
> --- a/binutils/Makefile.am
> +++ b/binutils/Makefile.am
> @@ -17,13 +17,15 @@
>   # <http://www.gnu.org/licenses/>.
>   #
>   
> -AUTOMAKE_OPTIONS = dejagnu no-dist foreign subdir-objects
> +AUTOMAKE_OPTIONS = dejagnu no-dist foreign subdir-objects info-in-builddir no-texinfo.tex
>   ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
>   
> -SUBDIRS = doc po
> +SUBDIRS = po
>   
>   tooldir = $(exec_prefix)/$(target_alias)
>   
> +MAINTAINERCLEANFILES =
> +
>   ## These aren't set by automake, because they appear in
>   ## bfd/acinclude.m4, which is included by binutils/acinclude.m4, and
>   ## thus is not seen by automake.
> @@ -552,3 +554,5 @@ install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
>   	  else true; \
>   	  fi; \
>   	done
> +
> +include doc/local.mk
> diff --git a/binutils/Makefile.in b/binutils/Makefile.in
> index 1986261f9e33..336644a3983a 100644
> --- a/binutils/Makefile.in
> +++ b/binutils/Makefile.in
> @@ -32,6 +32,24 @@
>   # <http://www.gnu.org/licenses/>.
>   #
>   
> +#
> +#   Copyright (C) 2012-2021 Free Software Foundation, Inc.
> +#
> +# This file is free software; you can redistribute it and/or modify
> +# it under the terms of the GNU General Public License as published by
> +# the Free Software Foundation; either version 3 of the License, or
> +# (at your option) any later version.
> +#
> +# This program is distributed in the hope that it will be useful,
> +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> +# GNU General Public License for more details.
> +#
> +# You should have received a copy of the GNU General Public License
> +# along with this program; see the file COPYING3.  If not see
> +# <http://www.gnu.org/licenses/>.
> +#
> +
>   
>   VPATH = @srcdir@
>   am__is_gnu_make = { \
> @@ -167,7 +185,8 @@ am__EXEEXT_10 = objcopy$(EXEEXT)
>   am__EXEEXT_11 = addr2line$(EXEEXT)
>   am__EXEEXT_12 = readelf$(EXEEXT)
>   am__EXEEXT_13 = elfedit$(EXEEXT)
> -am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"
> +am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" \
> +	"$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"
>   am__EXEEXT_14 = nm-new$(EXEEXT)
>   am__EXEEXT_15 = strip-new$(EXEEXT)
>   am__EXEEXT_16 = cxxfilt$(EXEEXT)
> @@ -356,6 +375,45 @@ SOURCES = $(addr2line_SOURCES) $(ar_SOURCES) $(EXTRA_ar_SOURCES) \
>   	$(size_SOURCES) $(srconv_SOURCES) $(strings_SOURCES) \
>   	$(strip_new_SOURCES) $(sysdump_SOURCES) \
>   	testsuite/gentestdlls.c $(windmc_SOURCES) $(windres_SOURCES)
> +AM_V_DVIPS = $(am__v_DVIPS_@AM_V@)
> +am__v_DVIPS_ = $(am__v_DVIPS_@AM_DEFAULT_V@)
> +am__v_DVIPS_0 = @echo "  DVIPS   " $@;
> +am__v_DVIPS_1 =
> +AM_V_MAKEINFO = $(am__v_MAKEINFO_@AM_V@)
> +am__v_MAKEINFO_ = $(am__v_MAKEINFO_@AM_DEFAULT_V@)
> +am__v_MAKEINFO_0 = @echo "  MAKEINFO" $@;
> +am__v_MAKEINFO_1 =
> +AM_V_INFOHTML = $(am__v_INFOHTML_@AM_V@)
> +am__v_INFOHTML_ = $(am__v_INFOHTML_@AM_DEFAULT_V@)
> +am__v_INFOHTML_0 = @echo "  INFOHTML" $@;
> +am__v_INFOHTML_1 =
> +AM_V_TEXI2DVI = $(am__v_TEXI2DVI_@AM_V@)
> +am__v_TEXI2DVI_ = $(am__v_TEXI2DVI_@AM_DEFAULT_V@)
> +am__v_TEXI2DVI_0 = @echo "  TEXI2DVI" $@;
> +am__v_TEXI2DVI_1 =
> +AM_V_TEXI2PDF = $(am__v_TEXI2PDF_@AM_V@)
> +am__v_TEXI2PDF_ = $(am__v_TEXI2PDF_@AM_DEFAULT_V@)
> +am__v_TEXI2PDF_0 = @echo "  TEXI2PDF" $@;
> +am__v_TEXI2PDF_1 =
> +AM_V_texinfo = $(am__v_texinfo_@AM_V@)
> +am__v_texinfo_ = $(am__v_texinfo_@AM_DEFAULT_V@)
> +am__v_texinfo_0 = -q
> +am__v_texinfo_1 =
> +AM_V_texidevnull = $(am__v_texidevnull_@AM_V@)
> +am__v_texidevnull_ = $(am__v_texidevnull_@AM_DEFAULT_V@)
> +am__v_texidevnull_0 = > /dev/null
> +am__v_texidevnull_1 =
> +INFO_DEPS = doc/binutils.info
> +am__TEXINFO_TEX_DIR = $(srcdir)
> +DVIS = doc/binutils.dvi
> +PDFS = doc/binutils.pdf
> +PSS = doc/binutils.ps
> +HTMLS = doc/binutils.html
> +TEXINFOS = doc/binutils.texi
> +TEXI2PDF = $(TEXI2DVI) --pdf --batch
> +MAKEINFOHTML = $(MAKEINFO) --html
> +AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS)
> +DVIPS = dvips
>   RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
>   	ctags-recursive dvi-recursive html-recursive info-recursive \
>   	install-data-recursive install-dvi-recursive \
> @@ -369,6 +427,9 @@ am__can_run_installinfo = \
>       n|no|NO) false;; \
>       *) (install-info --version) >/dev/null 2>&1;; \
>     esac
> +man1dir = $(mandir)/man1
> +NROFF = nroff
> +MANS = $(man_MANS)
>   RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
>     distclean-recursive maintainer-clean-recursive
>   am__recursive_targets = \
> @@ -569,10 +630,11 @@ top_builddir = @top_builddir@
>   top_srcdir = @top_srcdir@
>   zlibdir = @zlibdir@
>   zlibinc = @zlibinc@
> -AUTOMAKE_OPTIONS = dejagnu no-dist foreign subdir-objects
> +AUTOMAKE_OPTIONS = dejagnu no-dist foreign subdir-objects info-in-builddir no-texinfo.tex
>   ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
> -SUBDIRS = doc po
> +SUBDIRS = po
>   tooldir = $(exec_prefix)/$(target_alias)
> +MAINTAINERCLEANFILES = $(man_MANS) doc/binutils.info doc/cxxfilt.man
>   
>   # Automake 1.10+ disables lex and yacc output file regeneration if
>   # maintainer mode is disabled.  Avoid this.
> @@ -771,14 +833,52 @@ DISTCLEANFILES = sysroff.c sysroff.h site.exp development.exp \
>   MOSTLYCLEANFILES = sysinfo$(EXEEXT_FOR_BUILD) bin2c$(EXEEXT_FOR_BUILD) \
>     binutils.log binutils.sum abcdefgh*
>   
> +
> +# What version of the manual you want; "all" includes everything
> +CONFIG = all
> +
> +# Options to extract the man page from as.texinfo
> +MANCONF = -Dman
> +TEXI2POD = perl $(top_srcdir)/../etc/texi2pod.pl $(AM_MAKEINFOFLAGS)
> +POD2MAN = pod2man --center="GNU Development Tools" \
> +	 --release="binutils-$(VERSION)" --section=1
> +
> +
> +# List of man pages generated from binutils.texi
> +man_MANS = \
> +	doc/addr2line.1 \
> +	doc/ar.1 \
> +	doc/dlltool.1 \
> +	doc/nm.1 \
> +	doc/objcopy.1 \
> +	doc/objdump.1 \
> +	doc/ranlib.1 \
> +	doc/readelf.1 \
> +	doc/size.1 \
> +	doc/strings.1 \
> +	doc/strip.1 \
> +	doc/elfedit.1 \
> +	doc/windres.1 \
> +	doc/windmc.1 \
> +	doc/$(DEMANGLER_NAME).1
> +
> +info_TEXINFOS = doc/binutils.texi
> +binutils_TEXI = $(srcdir)/doc/binutils.texi
> +AM_MAKEINFOFLAGS = -I "$(srcdir)/doc" -I "$(top_srcdir)/../libiberty" \
> +		   -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc \
> +		   --no-split
> +
> +TEXI2DVI = texi2dvi -I "$(srcdir)/doc" -I "$(top_srcdir)/../libiberty" \
> +		    -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc
> +
>   all: $(BUILT_SOURCES) config.h
>   	$(MAKE) $(AM_MAKEFLAGS) all-recursive
>   
>   .SUFFIXES:
> -.SUFFIXES: .c .l .lo .o .obj .y
> +.SUFFIXES: .c .dvi .l .lo .o .obj .ps .y
>   am--refresh: Makefile
>   	@:
> -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
> +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/doc/local.mk $(am__configure_deps)
>   	@for dep in $?; do \
>   	  case '$(am__configure_deps)' in \
>   	    *$$dep*) \
> @@ -800,6 +900,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
>   	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
>   	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
>   	esac;
> +$(srcdir)/doc/local.mk $(am__empty):
>   
>   $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
>   	$(SHELL) ./config.status --recheck
> @@ -1139,6 +1240,186 @@ clean-libtool:
>   
>   distclean-libtool:
>   	-rm -f libtool config.lt
> +doc/$(am__dirstamp):
> +	@$(MKDIR_P) doc
> +	@: > doc/$(am__dirstamp)
> +
> +doc/binutils.info: doc/binutils.texi
> +	@test -f doc/$(am__dirstamp) || $(MAKE) $(AM_MAKEFLAGS) doc/$(am__dirstamp)
> +	$(AM_V_MAKEINFO)restore=: && backupdir="$(am__leading_dot)am$$$$" && \
> +	rm -rf $$backupdir && mkdir $$backupdir && \
> +	if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
> +	  for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \
> +	    if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \
> +	  done; \
> +	else :; fi && \
> +	if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
> +	 -o $@ `test -f 'doc/binutils.texi' || echo '$(srcdir)/'`doc/binutils.texi; \
> +	then \
> +	  rc=0; \
> +	else \
> +	  rc=$$?; \
> +	  $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
> +	fi; \
> +	rm -rf $$backupdir; exit $$rc
> +
> +doc/binutils.dvi: doc/binutils.texi  doc/$(am__dirstamp)
> +	$(AM_V_TEXI2DVI)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
> +	MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
> +	$(TEXI2DVI) $(AM_V_texinfo) --build-dir=$(@:.dvi=.t2d) -o $@ $(AM_V_texidevnull) \
> +	`test -f 'doc/binutils.texi' || echo '$(srcdir)/'`doc/binutils.texi
> +
> +doc/binutils.pdf: doc/binutils.texi  doc/$(am__dirstamp)
> +	$(AM_V_TEXI2PDF)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
> +	MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
> +	$(TEXI2PDF) $(AM_V_texinfo) --build-dir=$(@:.pdf=.t2p) -o $@ $(AM_V_texidevnull) \
> +	`test -f 'doc/binutils.texi' || echo '$(srcdir)/'`doc/binutils.texi
> +
> +doc/binutils.html: doc/binutils.texi  doc/$(am__dirstamp)
> +	$(AM_V_MAKEINFO)rm -rf $(@:.html=.htp)
> +	$(AM_V_at)if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
> +	 -o $(@:.html=.htp) `test -f 'doc/binutils.texi' || echo '$(srcdir)/'`doc/binutils.texi; \
> +	then \
> +	  rm -rf $@ && mv $(@:.html=.htp) $@; \
> +	else \
> +	  rm -rf $(@:.html=.htp); exit 1; \
> +	fi
> +.dvi.ps:
> +	$(AM_V_DVIPS)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
> +	$(DVIPS) $(AM_V_texinfo) -o $@ $<
> +
> +uninstall-dvi-am:
> +	@$(NORMAL_UNINSTALL)
> +	@list='$(DVIS)'; test -n "$(dvidir)" || list=; \
> +	for p in $$list; do \
> +	  $(am__strip_dir) \
> +	  echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \
> +	  rm -f "$(DESTDIR)$(dvidir)/$$f"; \
> +	done
> +
> +uninstall-html-am:
> +	@$(NORMAL_UNINSTALL)
> +	@list='$(HTMLS)'; test -n "$(htmldir)" || list=; \
> +	for p in $$list; do \
> +	  $(am__strip_dir) \
> +	  echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \
> +	  rm -rf "$(DESTDIR)$(htmldir)/$$f"; \
> +	done
> +
> +uninstall-info-am:
> +	@$(PRE_UNINSTALL)
> +	@if test -d '$(DESTDIR)$(infodir)' && $(am__can_run_installinfo); then \
> +	  list='$(INFO_DEPS)'; \
> +	  for file in $$list; do \
> +	    relfile=`echo "$$file" | sed 's|^.*/||'`; \
> +	    echo " install-info --info-dir='$(DESTDIR)$(infodir)' --remove '$(DESTDIR)$(infodir)/$$relfile'"; \
> +	    if install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$$relfile"; \
> +	    then :; else test ! -f "$(DESTDIR)$(infodir)/$$relfile" || exit 1; fi; \
> +	  done; \
> +	else :; fi
> +	@$(NORMAL_UNINSTALL)
> +	@list='$(INFO_DEPS)'; \
> +	for file in $$list; do \
> +	  relfile=`echo "$$file" | sed 's|^.*/||'`; \
> +	  relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
> +	  (if test -d "$(DESTDIR)$(infodir)" && cd "$(DESTDIR)$(infodir)"; then \
> +	     echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]"; \
> +	     rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
> +	   else :; fi); \
> +	done
> +
> +uninstall-pdf-am:
> +	@$(NORMAL_UNINSTALL)
> +	@list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
> +	for p in $$list; do \
> +	  $(am__strip_dir) \
> +	  echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \
> +	  rm -f "$(DESTDIR)$(pdfdir)/$$f"; \
> +	done
> +
> +uninstall-ps-am:
> +	@$(NORMAL_UNINSTALL)
> +	@list='$(PSS)'; test -n "$(psdir)" || list=; \
> +	for p in $$list; do \
> +	  $(am__strip_dir) \
> +	  echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \
> +	  rm -f "$(DESTDIR)$(psdir)/$$f"; \
> +	done
> +
> +dist-info: $(INFO_DEPS)
> +	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
> +	list='$(INFO_DEPS)'; \
> +	for base in $$list; do \
> +	  case $$base in \
> +	    $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
> +	  esac; \
> +	  if test -f $$base; then d=.; else d=$(srcdir); fi; \
> +	  base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
> +	  for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
> +	    if test -f $$file; then \
> +	      relfile=`expr "$$file" : "$$d/\(.*\)"`; \
> +	      test -f "$(distdir)/$$relfile" || \
> +		cp -p $$file "$(distdir)/$$relfile"; \
> +	    else :; fi; \
> +	  done; \
> +	done
> +
> +mostlyclean-aminfo:
> +	-rm -rf doc/binutils.t2d doc/binutils.t2p
> +
> +clean-aminfo:
> +	-test -z "doc/binutils.dvi doc/binutils.pdf doc/binutils.ps doc/binutils.html" \
> +	|| rm -rf doc/binutils.dvi doc/binutils.pdf doc/binutils.ps doc/binutils.html
> +
> +maintainer-clean-aminfo:
> +	@list='$(INFO_DEPS)'; for i in $$list; do \
> +	  i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
> +	  echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \
> +	  rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
> +	done
> +install-man1: $(man_MANS)
> +	@$(NORMAL_INSTALL)
> +	@list1=''; \
> +	list2='$(man_MANS)'; \
> +	test -n "$(man1dir)" \
> +	  && test -n "`echo $$list1$$list2`" \
> +	  || exit 0; \
> +	echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
> +	$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
> +	{ for i in $$list1; do echo "$$i"; done;  \
> +	if test -n "$$list2"; then \
> +	  for i in $$list2; do echo "$$i"; done \
> +	    | sed -n '/\.1[a-z]*$$/p'; \
> +	fi; \
> +	} | while read p; do \
> +	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
> +	  echo "$$d$$p"; echo "$$p"; \
> +	done | \
> +	sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
> +	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
> +	sed 'N;N;s,\n, ,g' | { \
> +	list=; while read file base inst; do \
> +	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \
> +	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
> +	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
> +	  fi; \
> +	done; \
> +	for i in $$list; do echo "$$i"; done | $(am__base_list) | \
> +	while read files; do \
> +	  test -z "$$files" || { \
> +	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
> +	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
> +	done; }
> +
> +uninstall-man1:
> +	@$(NORMAL_UNINSTALL)
> +	@list=''; test -n "$(man1dir)" || exit 0; \
> +	files=`{ for i in $$list; do echo "$$i"; done; \
> +	l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
> +	  sed -n '/\.1[a-z]*$$/p'; \
> +	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
> +	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
> +	dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
>   
>   # This directory's subdirectories are mostly independent; you can cd
>   # into them and run 'make' without going through this Makefile.
> @@ -1281,10 +1562,10 @@ check-am: all-am
>   	$(MAKE) $(AM_MAKEFLAGS) check-DEJAGNU
>   check: $(BUILT_SOURCES)
>   	$(MAKE) $(AM_MAKEFLAGS) check-recursive
> -all-am: Makefile $(PROGRAMS) $(SCRIPTS) config.h
> +all-am: Makefile $(INFO_DEPS) $(PROGRAMS) $(SCRIPTS) $(MANS) config.h
>   installdirs: installdirs-recursive
>   installdirs-am:
> -	for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"; do \
> +	for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"; do \
>   	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
>   	done
>   install: $(BUILT_SOURCES)
> @@ -1315,6 +1596,7 @@ clean-generic:
>   distclean-generic:
>   	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
>   	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
> +	-rm -f doc/$(am__dirstamp)
>   	-rm -f testsuite/$(DEPDIR)/$(am__dirstamp)
>   	-rm -f testsuite/$(am__dirstamp)
>   	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
> @@ -1333,9 +1615,10 @@ maintainer-clean-generic:
>   	-rm -f rcparse.c
>   	-rm -f rcparse.h
>   	-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
> +	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
>   clean: clean-recursive
>   
> -clean-am: clean-binPROGRAMS clean-generic clean-libtool \
> +clean-am: clean-aminfo clean-binPROGRAMS clean-generic clean-libtool \
>   	clean-noinstPROGRAMS mostlyclean-am
>   
>   distclean: distclean-recursive
> @@ -1348,43 +1631,134 @@ distclean-am: clean-am distclean-DEJAGNU distclean-compile \
>   
>   dvi: dvi-recursive
>   
> -dvi-am:
> +dvi-am: $(DVIS)
>   
>   html: html-recursive
>   
> -html-am:
> +html-am: $(HTMLS) html-local
>   
>   info: info-recursive
>   
> -info-am:
> +info-am: $(INFO_DEPS) info-local
>   
> -install-data-am:
> +install-data-am: install-info-am install-man
>   
>   install-dvi: install-dvi-recursive
>   
> -install-dvi-am:
> -
> +install-dvi-am: $(DVIS)
> +	@$(NORMAL_INSTALL)
> +	@list='$(DVIS)'; test -n "$(dvidir)" || list=; \
> +	if test -n "$$list"; then \
> +	  echo " $(MKDIR_P) '$(DESTDIR)$(dvidir)'"; \
> +	  $(MKDIR_P) "$(DESTDIR)$(dvidir)" || exit 1; \
> +	fi; \
> +	for p in $$list; do \
> +	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
> +	  echo "$$d$$p"; \
> +	done | $(am__base_list) | \
> +	while read files; do \
> +	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \
> +	  $(INSTALL_DATA) $$files "$(DESTDIR)$(dvidir)" || exit $$?; \
> +	done
>   install-exec-am: install-binPROGRAMS install-binSCRIPTS \
>   	install-exec-local
>   
>   install-html: install-html-recursive
>   
> -install-html-am:
> -
> +install-html-am: $(HTMLS)
> +	@$(NORMAL_INSTALL)
> +	@list='$(HTMLS)'; list2=; test -n "$(htmldir)" || list=; \
> +	if test -n "$$list"; then \
> +	  echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
> +	  $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
> +	fi; \
> +	for p in $$list; do \
> +	  if test -f "$$p" || test -d "$$p"; then d=; else d="$(srcdir)/"; fi; \
> +	  $(am__strip_dir) \
> +	  d2=$$d$$p; \
> +	  if test -d "$$d2"; then \
> +	    echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
> +	    $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
> +	    echo " $(INSTALL_DATA) '$$d2'/* '$(DESTDIR)$(htmldir)/$$f'"; \
> +	    $(INSTALL_DATA) "$$d2"/* "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
> +	  else \
> +	    list2="$$list2 $$d2"; \
> +	  fi; \
> +	done; \
> +	test -z "$$list2" || { echo "$$list2" | $(am__base_list) | \
> +	while read files; do \
> +	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
> +	  $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
> +	done; }
>   install-info: install-info-recursive
>   
> -install-info-am:
> -
> -install-man:
> +install-info-am: $(INFO_DEPS)
> +	@$(NORMAL_INSTALL)
> +	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
> +	list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
> +	if test -n "$$list"; then \
> +	  echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \
> +	  $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \
> +	fi; \
> +	for file in $$list; do \
> +	  case $$file in \
> +	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
> +	  esac; \
> +	  if test -f $$file; then d=.; else d=$(srcdir); fi; \
> +	  file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
> +	  for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
> +	               $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
> +	    if test -f $$ifile; then \
> +	      echo "$$ifile"; \
> +	    else : ; fi; \
> +	  done; \
> +	done | $(am__base_list) | \
> +	while read files; do \
> +	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(infodir)'"; \
> +	  $(INSTALL_DATA) $$files "$(DESTDIR)$(infodir)" || exit $$?; done
> +	@$(POST_INSTALL)
> +	@if $(am__can_run_installinfo); then \
> +	  list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
> +	  for file in $$list; do \
> +	    relfile=`echo "$$file" | sed 's|^.*/||'`; \
> +	    echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
> +	    install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
> +	  done; \
> +	else : ; fi
> +install-man: install-man1
>   
>   install-pdf: install-pdf-recursive
>   
> -install-pdf-am:
> -
> +install-pdf-am: $(PDFS)
> +	@$(NORMAL_INSTALL)
> +	@list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
> +	if test -n "$$list"; then \
> +	  echo " $(MKDIR_P) '$(DESTDIR)$(pdfdir)'"; \
> +	  $(MKDIR_P) "$(DESTDIR)$(pdfdir)" || exit 1; \
> +	fi; \
> +	for p in $$list; do \
> +	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
> +	  echo "$$d$$p"; \
> +	done | $(am__base_list) | \
> +	while read files; do \
> +	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pdfdir)'"; \
> +	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pdfdir)" || exit $$?; done
>   install-ps: install-ps-recursive
>   
> -install-ps-am:
> -
> +install-ps-am: $(PSS)
> +	@$(NORMAL_INSTALL)
> +	@list='$(PSS)'; test -n "$(psdir)" || list=; \
> +	if test -n "$$list"; then \
> +	  echo " $(MKDIR_P) '$(DESTDIR)$(psdir)'"; \
> +	  $(MKDIR_P) "$(DESTDIR)$(psdir)" || exit 1; \
> +	fi; \
> +	for p in $$list; do \
> +	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
> +	  echo "$$d$$p"; \
> +	done | $(am__base_list) | \
> +	while read files; do \
> +	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(psdir)'"; \
> +	  $(INSTALL_DATA) $$files "$(DESTDIR)$(psdir)" || exit $$?; done
>   installcheck-am: installcheck-local
>   
>   maintainer-clean: maintainer-clean-recursive
> @@ -1392,44 +1766,52 @@ maintainer-clean: maintainer-clean-recursive
>   	-rm -rf $(top_srcdir)/autom4te.cache
>   	-rm -rf ./$(DEPDIR) testsuite/$(DEPDIR)
>   	-rm -f Makefile
> -maintainer-clean-am: distclean-am maintainer-clean-generic
> +maintainer-clean-am: distclean-am maintainer-clean-aminfo \
> +	maintainer-clean-generic
>   
>   mostlyclean: mostlyclean-recursive
>   
> -mostlyclean-am: mostlyclean-compile mostlyclean-generic \
> -	mostlyclean-libtool mostlyclean-local
> +mostlyclean-am: mostlyclean-aminfo mostlyclean-compile \
> +	mostlyclean-generic mostlyclean-libtool mostlyclean-local
>   
>   pdf: pdf-recursive
>   
> -pdf-am:
> +pdf-am: $(PDFS)
>   
>   ps: ps-recursive
>   
> -ps-am:
> +ps-am: $(PSS)
> +
> +uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \
> +	uninstall-dvi-am uninstall-html-am uninstall-info-am \
> +	uninstall-man uninstall-pdf-am uninstall-ps-am
>   
> -uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS
> +uninstall-man: uninstall-man1
>   
>   .MAKE: $(am__recursive_targets) all check check-am install install-am \
>   	install-strip
>   
>   .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
> -	am--refresh check check-DEJAGNU check-am clean \
> +	am--refresh check check-DEJAGNU check-am clean clean-aminfo \
>   	clean-binPROGRAMS clean-cscope clean-generic clean-libtool \
>   	clean-noinstPROGRAMS cscope cscopelist-am ctags ctags-am \
> -	distclean distclean-DEJAGNU distclean-compile \
> +	dist-info distclean distclean-DEJAGNU distclean-compile \
>   	distclean-generic distclean-hdr distclean-libtool \
> -	distclean-tags dvi dvi-am html html-am info info-am install \
> -	install-am install-binPROGRAMS install-binSCRIPTS install-data \
> -	install-data-am install-dvi install-dvi-am install-exec \
> -	install-exec-am install-exec-local install-html \
> -	install-html-am install-info install-info-am install-man \
> -	install-pdf install-pdf-am install-ps install-ps-am \
> -	install-strip installcheck installcheck-am installcheck-local \
> -	installdirs installdirs-am maintainer-clean \
> -	maintainer-clean-generic mostlyclean mostlyclean-compile \
> -	mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \
> -	pdf-am ps ps-am tags tags-am uninstall uninstall-am \
> -	uninstall-binPROGRAMS uninstall-binSCRIPTS
> +	distclean-tags dvi dvi-am html html-am html-local info info-am \
> +	info-local install install-am install-binPROGRAMS \
> +	install-binSCRIPTS install-data install-data-am install-dvi \
> +	install-dvi-am install-exec install-exec-am install-exec-local \
> +	install-html install-html-am install-info install-info-am \
> +	install-man install-man1 install-pdf install-pdf-am install-ps \
> +	install-ps-am install-strip installcheck installcheck-am \
> +	installcheck-local installdirs installdirs-am maintainer-clean \
> +	maintainer-clean-aminfo maintainer-clean-generic mostlyclean \
> +	mostlyclean-aminfo mostlyclean-compile mostlyclean-generic \
> +	mostlyclean-libtool mostlyclean-local pdf pdf-am ps ps-am tags \
> +	tags-am uninstall uninstall-am uninstall-binPROGRAMS \
> +	uninstall-binSCRIPTS uninstall-dvi-am uninstall-html-am \
> +	uninstall-info-am uninstall-man uninstall-man1 \
> +	uninstall-pdf-am uninstall-ps-am
>   
>   .PRECIOUS: Makefile
>   
> @@ -1630,6 +2012,132 @@ install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
>   	  fi; \
>   	done
>   
> +# Man page generation from texinfo
> +doc/addr2line.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
> +	$(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f addr2line.pod
> +
> +doc/ar.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
> +	$(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f ar.pod
> +
> +doc/dlltool.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
> +	$(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f dlltool.pod
> +
> +doc/nm.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
> +	$(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f nm.pod
> +
> +doc/objcopy.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
> +	$(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f objcopy.pod
> +
> +doc/objdump.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
> +	$(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f objdump.pod
> +
> +doc/ranlib.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
> +	$(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f ranlib.pod
> +
> +doc/readelf.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
> +	$(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f readelf.pod
> +
> +doc/size.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
> +	$(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f size.pod
> +
> +doc/strings.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
> +	$(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f strings.pod
> +
> +doc/strip.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
> +	$(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f strip.pod
> +
> +doc/elfedit.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
> +	$(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f elfedit.pod
> +
> +doc/windres.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
> +	$(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f windres.pod
> +
> +doc/windmc.1:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
> +	$(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f windmc.pod
> +
> +doc/cxxfilt.man:	$(binutils_TEXI)
> +	$(AM_V_GEN)touch $@
> +	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
> +	$(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> +		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> +	$(AM_V_at)rm -f $(DEMANGLER_NAME).pod
> +
> +doc/$(DEMANGLER_NAME).1: doc/cxxfilt.man Makefile
> +	$(AM_V_GEN)if test -f doc/cxxfilt.man; then \
> +	  man=doc/cxxfilt.man; \
> +	else \
> +	  man=$(srcdir)/doc/cxxfilt.man; \
> +	fi; \
> +	sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \
> +	    -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \
> +		> doc/$(DEMANGLER_NAME).1
> +
> +html-local: doc/binutils/index.html
> +binutils/index.html: doc/binutils.texi $(binutils_TEXINFOS)
> +	$(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
> +	  --split=node -I$(srcdir) $(srcdir)/doc/binutils.texi
> +
> +# Maintenance
> +
> +# We need it for the taz target in ../Makefile.in.
> +info-local: $(MANS)
> +
>   # Tell versions [3.59,3.63) of GNU make to not export all variables.
>   # Otherwise a system limit (for SysV at least) may be exceeded.
>   .NOEXPORT:
> diff --git a/binutils/configure.ac b/binutils/configure.ac
> index b0677ba5f20e..62696ff2a225 100644
> --- a/binutils/configure.ac
> +++ b/binutils/configure.ac
> @@ -535,7 +535,7 @@ AC_SUBST(docdir)
>   AC_SUBST(htmldir)
>   AC_SUBST(pdfdir)
>   
> -AC_CONFIG_FILES(Makefile doc/Makefile po/Makefile.in:po/Make-in)
> +AC_CONFIG_FILES(Makefile po/Makefile.in:po/Make-in)
>   AC_OUTPUT
>   
>   GNU_MAKE_JOBSERVER
> diff --git a/binutils/doc/Makefile.in b/binutils/doc/Makefile.in
> deleted file mode 100644
> index d42cdd87929b..000000000000
> --- a/binutils/doc/Makefile.in
> +++ /dev/null
> @@ -1,1045 +0,0 @@
> -# Makefile.in generated by automake 1.15.1 from Makefile.am.
> -# @configure_input@
> -
> -# Copyright (C) 1994-2017 Free Software Foundation, Inc.
> -
> -# This Makefile.in is free software; the Free Software Foundation
> -# gives unlimited permission to copy and/or distribute it,
> -# with or without modifications, as long as this notice is preserved.
> -
> -# This program is distributed in the hope that it will be useful,
> -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
> -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
> -# PARTICULAR PURPOSE.
> -
> -@SET_MAKE@
> -
> -#
> -#   Copyright (C) 2012-2021 Free Software Foundation, Inc.
> -#
> -# This file is free software; you can redistribute it and/or modify
> -# it under the terms of the GNU General Public License as published by
> -# the Free Software Foundation; either version 3 of the License, or
> -# (at your option) any later version.
> -#
> -# This program is distributed in the hope that it will be useful,
> -# but WITHOUT ANY WARRANTY; without even the implied warranty of
> -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> -# GNU General Public License for more details.
> -#
> -# You should have received a copy of the GNU General Public License
> -# along with this program; see the file COPYING3.  If not see
> -# <http://www.gnu.org/licenses/>.
> -#
> -VPATH = @srcdir@
> -am__is_gnu_make = { \
> -  if test -z '$(MAKELEVEL)'; then \
> -    false; \
> -  elif test -n '$(MAKE_HOST)'; then \
> -    true; \
> -  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
> -    true; \
> -  else \
> -    false; \
> -  fi; \
> -}
> -am__make_running_with_option = \
> -  case $${target_option-} in \
> -      ?) ;; \
> -      *) echo "am__make_running_with_option: internal error: invalid" \
> -              "target option '$${target_option-}' specified" >&2; \
> -         exit 1;; \
> -  esac; \
> -  has_opt=no; \
> -  sane_makeflags=$$MAKEFLAGS; \
> -  if $(am__is_gnu_make); then \
> -    sane_makeflags=$$MFLAGS; \
> -  else \
> -    case $$MAKEFLAGS in \
> -      *\\[\ \	]*) \
> -        bs=\\; \
> -        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
> -          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
> -    esac; \
> -  fi; \
> -  skip_next=no; \
> -  strip_trailopt () \
> -  { \
> -    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
> -  }; \
> -  for flg in $$sane_makeflags; do \
> -    test $$skip_next = yes && { skip_next=no; continue; }; \
> -    case $$flg in \
> -      *=*|--*) continue;; \
> -        -*I) strip_trailopt 'I'; skip_next=yes;; \
> -      -*I?*) strip_trailopt 'I';; \
> -        -*O) strip_trailopt 'O'; skip_next=yes;; \
> -      -*O?*) strip_trailopt 'O';; \
> -        -*l) strip_trailopt 'l'; skip_next=yes;; \
> -      -*l?*) strip_trailopt 'l';; \
> -      -[dEDm]) skip_next=yes;; \
> -      -[JT]) skip_next=yes;; \
> -    esac; \
> -    case $$flg in \
> -      *$$target_option*) has_opt=yes; break;; \
> -    esac; \
> -  done; \
> -  test $$has_opt = yes
> -am__make_dryrun = (target_option=n; $(am__make_running_with_option))
> -am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
> -pkgdatadir = $(datadir)/@PACKAGE@
> -pkgincludedir = $(includedir)/@PACKAGE@
> -pkglibdir = $(libdir)/@PACKAGE@
> -pkglibexecdir = $(libexecdir)/@PACKAGE@
> -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
> -install_sh_DATA = $(install_sh) -c -m 644
> -install_sh_PROGRAM = $(install_sh) -c
> -install_sh_SCRIPT = $(install_sh) -c
> -INSTALL_HEADER = $(INSTALL_DATA)
> -transform = $(program_transform_name)
> -NORMAL_INSTALL = :
> -PRE_INSTALL = :
> -POST_INSTALL = :
> -NORMAL_UNINSTALL = :
> -PRE_UNINSTALL = :
> -POST_UNINSTALL = :
> -build_triplet = @build@
> -host_triplet = @host@
> -target_triplet = @target@
> -subdir = doc
> -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
> -am__aclocal_m4_deps = $(top_srcdir)/../bfd/acinclude.m4 \
> -	$(top_srcdir)/../bfd/warning.m4 \
> -	$(top_srcdir)/../config/depstand.m4 \
> -	$(top_srcdir)/../config/enable.m4 \
> -	$(top_srcdir)/../config/gettext-sister.m4 \
> -	$(top_srcdir)/../config/iconv.m4 \
> -	$(top_srcdir)/../config/jobserver.m4 \
> -	$(top_srcdir)/../config/largefile.m4 \
> -	$(top_srcdir)/../config/lcmessage.m4 \
> -	$(top_srcdir)/../config/lead-dot.m4 \
> -	$(top_srcdir)/../config/lib-ld.m4 \
> -	$(top_srcdir)/../config/lib-link.m4 \
> -	$(top_srcdir)/../config/lib-prefix.m4 \
> -	$(top_srcdir)/../config/nls.m4 \
> -	$(top_srcdir)/../config/override.m4 \
> -	$(top_srcdir)/../config/pkg.m4 \
> -	$(top_srcdir)/../config/plugins.m4 \
> -	$(top_srcdir)/../config/po.m4 \
> -	$(top_srcdir)/../config/progtest.m4 \
> -	$(top_srcdir)/../config/zlib.m4 $(top_srcdir)/../libtool.m4 \
> -	$(top_srcdir)/../ltoptions.m4 $(top_srcdir)/../ltsugar.m4 \
> -	$(top_srcdir)/../ltversion.m4 $(top_srcdir)/../lt~obsolete.m4 \
> -	$(top_srcdir)/../bfd/version.m4 \
> -	$(top_srcdir)/../config/debuginfod.m4 \
> -	$(top_srcdir)/configure.ac
> -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
> -	$(ACLOCAL_M4)
> -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
> -mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
> -CONFIG_HEADER = $(top_builddir)/config.h
> -CONFIG_CLEAN_FILES =
> -CONFIG_CLEAN_VPATH_FILES =
> -AM_V_P = $(am__v_P_@AM_V@)
> -am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
> -am__v_P_0 = false
> -am__v_P_1 = :
> -AM_V_GEN = $(am__v_GEN_@AM_V@)
> -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
> -am__v_GEN_0 = @echo "  GEN     " $@;
> -am__v_GEN_1 =
> -AM_V_at = $(am__v_at_@AM_V@)
> -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
> -am__v_at_0 = @
> -am__v_at_1 =
> -SOURCES =
> -DIST_SOURCES =
> -AM_V_DVIPS = $(am__v_DVIPS_@AM_V@)
> -am__v_DVIPS_ = $(am__v_DVIPS_@AM_DEFAULT_V@)
> -am__v_DVIPS_0 = @echo "  DVIPS   " $@;
> -am__v_DVIPS_1 =
> -AM_V_MAKEINFO = $(am__v_MAKEINFO_@AM_V@)
> -am__v_MAKEINFO_ = $(am__v_MAKEINFO_@AM_DEFAULT_V@)
> -am__v_MAKEINFO_0 = @echo "  MAKEINFO" $@;
> -am__v_MAKEINFO_1 =
> -AM_V_INFOHTML = $(am__v_INFOHTML_@AM_V@)
> -am__v_INFOHTML_ = $(am__v_INFOHTML_@AM_DEFAULT_V@)
> -am__v_INFOHTML_0 = @echo "  INFOHTML" $@;
> -am__v_INFOHTML_1 =
> -AM_V_TEXI2DVI = $(am__v_TEXI2DVI_@AM_V@)
> -am__v_TEXI2DVI_ = $(am__v_TEXI2DVI_@AM_DEFAULT_V@)
> -am__v_TEXI2DVI_0 = @echo "  TEXI2DVI" $@;
> -am__v_TEXI2DVI_1 =
> -AM_V_TEXI2PDF = $(am__v_TEXI2PDF_@AM_V@)
> -am__v_TEXI2PDF_ = $(am__v_TEXI2PDF_@AM_DEFAULT_V@)
> -am__v_TEXI2PDF_0 = @echo "  TEXI2PDF" $@;
> -am__v_TEXI2PDF_1 =
> -AM_V_texinfo = $(am__v_texinfo_@AM_V@)
> -am__v_texinfo_ = $(am__v_texinfo_@AM_DEFAULT_V@)
> -am__v_texinfo_0 = -q
> -am__v_texinfo_1 =
> -AM_V_texidevnull = $(am__v_texidevnull_@AM_V@)
> -am__v_texidevnull_ = $(am__v_texidevnull_@AM_DEFAULT_V@)
> -am__v_texidevnull_0 = > /dev/null
> -am__v_texidevnull_1 =
> -INFO_DEPS = binutils.info
> -am__TEXINFO_TEX_DIR = $(srcdir)
> -DVIS = binutils.dvi
> -PDFS = binutils.pdf
> -PSS = binutils.ps
> -HTMLS = binutils.html
> -TEXINFOS = binutils.texi
> -TEXI2PDF = $(TEXI2DVI) --pdf --batch
> -MAKEINFOHTML = $(MAKEINFO) --html
> -AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS)
> -DVIPS = dvips
> -am__can_run_installinfo = \
> -  case $$AM_UPDATE_INFO_DIR in \
> -    n|no|NO) false;; \
> -    *) (install-info --version) >/dev/null 2>&1;; \
> -  esac
> -am__installdirs = "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"
> -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
> -am__vpath_adj = case $$p in \
> -    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
> -    *) f=$$p;; \
> -  esac;
> -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
> -am__install_max = 40
> -am__nobase_strip_setup = \
> -  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
> -am__nobase_strip = \
> -  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
> -am__nobase_list = $(am__nobase_strip_setup); \
> -  for p in $$list; do echo "$$p $$p"; done | \
> -  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
> -  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
> -    if (++n[$$2] == $(am__install_max)) \
> -      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
> -    END { for (dir in files) print dir, files[dir] }'
> -am__base_list = \
> -  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
> -  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
> -am__uninstall_files_from_dir = { \
> -  test -z "$$files" \
> -    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
> -    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
> -         $(am__cd) "$$dir" && rm -f $$files; }; \
> -  }
> -man1dir = $(mandir)/man1
> -NROFF = nroff
> -MANS = $(man_MANS)
> -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
> -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/../mkinstalldirs
> -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
> -ACLOCAL = @ACLOCAL@
> -AMTAR = @AMTAR@
> -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
> -AR = @AR@
> -AUTOCONF = @AUTOCONF@
> -AUTOHEADER = @AUTOHEADER@
> -AUTOMAKE = @AUTOMAKE@
> -AWK = @AWK@
> -BUILD_DLLTOOL = @BUILD_DLLTOOL@
> -BUILD_DLLWRAP = @BUILD_DLLWRAP@
> -BUILD_INSTALL_MISC = @BUILD_INSTALL_MISC@
> -BUILD_MISC = @BUILD_MISC@
> -BUILD_SRCONV = @BUILD_SRCONV@
> -BUILD_WINDMC = @BUILD_WINDMC@
> -BUILD_WINDRES = @BUILD_WINDRES@
> -CATALOGS = @CATALOGS@
> -CATOBJEXT = @CATOBJEXT@
> -CC = @CC@
> -CCDEPMODE = @CCDEPMODE@
> -CC_FOR_BUILD = @CC_FOR_BUILD@
> -CFLAGS = @CFLAGS@
> -CPP = @CPP@
> -CPPFLAGS = @CPPFLAGS@
> -CYGPATH_W = @CYGPATH_W@
> -DATADIRNAME = @DATADIRNAME@
> -DEBUGINFOD_CFLAGS = @DEBUGINFOD_CFLAGS@
> -DEBUGINFOD_LIBS = @DEBUGINFOD_LIBS@
> -DEFS = @DEFS@
> -DEMANGLER_NAME = @DEMANGLER_NAME@
> -DEPDIR = @DEPDIR@
> -DLLTOOL_DEFS = @DLLTOOL_DEFS@
> -DSYMUTIL = @DSYMUTIL@
> -DUMPBIN = @DUMPBIN@
> -ECHO_C = @ECHO_C@
> -ECHO_N = @ECHO_N@
> -ECHO_T = @ECHO_T@
> -EGREP = @EGREP@
> -EMULATION = @EMULATION@
> -EMULATION_VECTOR = @EMULATION_VECTOR@
> -EXEEXT = @EXEEXT@
> -EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@
> -FGREP = @FGREP@
> -GENCAT = @GENCAT@
> -GMSGFMT = @GMSGFMT@
> -GREP = @GREP@
> -HDEFINES = @HDEFINES@
> -INCINTL = @INCINTL@
> -INSTALL = @INSTALL@
> -INSTALL_DATA = @INSTALL_DATA@
> -INSTALL_PROGRAM = @INSTALL_PROGRAM@
> -INSTALL_SCRIPT = @INSTALL_SCRIPT@
> -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
> -INSTOBJEXT = @INSTOBJEXT@
> -LARGEFILE_CPPFLAGS = @LARGEFILE_CPPFLAGS@
> -LD = @LD@
> -LDFLAGS = @LDFLAGS@
> -LEX = @LEX@
> -LEXLIB = @LEXLIB@
> -LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
> -LIBICONV = @LIBICONV@
> -LIBINTL = @LIBINTL@
> -LIBINTL_DEP = @LIBINTL_DEP@
> -LIBOBJS = @LIBOBJS@
> -LIBS = @LIBS@
> -LIBTOOL = @LIBTOOL@
> -LIPO = @LIPO@
> -LN_S = @LN_S@
> -LTLIBICONV = @LTLIBICONV@
> -LTLIBOBJS = @LTLIBOBJS@
> -MAINT = @MAINT@
> -MAKEINFO = @MAKEINFO@
> -MKDIR_P = @MKDIR_P@
> -MKINSTALLDIRS = @MKINSTALLDIRS@
> -MSGFMT = @MSGFMT@
> -MSGMERGE = @MSGMERGE@
> -NM = @NM@
> -NMEDIT = @NMEDIT@
> -NO_WERROR = @NO_WERROR@
> -OBJDUMP = @OBJDUMP@
> -OBJDUMP_DEFS = @OBJDUMP_DEFS@
> -OBJDUMP_PRIVATE_OFILES = @OBJDUMP_PRIVATE_OFILES@
> -OBJEXT = @OBJEXT@
> -OTOOL = @OTOOL@
> -OTOOL64 = @OTOOL64@
> -PACKAGE = @PACKAGE@
> -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
> -PACKAGE_NAME = @PACKAGE_NAME@
> -PACKAGE_STRING = @PACKAGE_STRING@
> -PACKAGE_TARNAME = @PACKAGE_TARNAME@
> -PACKAGE_URL = @PACKAGE_URL@
> -PACKAGE_VERSION = @PACKAGE_VERSION@
> -PATH_SEPARATOR = @PATH_SEPARATOR@
> -PKG_CONFIG = @PKG_CONFIG@
> -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
> -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
> -POSUB = @POSUB@
> -RANLIB = @RANLIB@
> -SED = @SED@
> -SET_MAKE = @SET_MAKE@
> -SHELL = @SHELL@
> -STRIP = @STRIP@
> -USE_NLS = @USE_NLS@
> -VERSION = @VERSION@
> -WARN_CFLAGS = @WARN_CFLAGS@
> -WARN_CFLAGS_FOR_BUILD = @WARN_CFLAGS_FOR_BUILD@
> -WARN_WRITE_STRINGS = @WARN_WRITE_STRINGS@
> -XGETTEXT = @XGETTEXT@
> -YACC = @YACC@
> -YFLAGS = @YFLAGS@
> -abs_builddir = @abs_builddir@
> -abs_srcdir = @abs_srcdir@
> -abs_top_builddir = @abs_top_builddir@
> -abs_top_srcdir = @abs_top_srcdir@
> -ac_ct_CC = @ac_ct_CC@
> -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
> -am__include = @am__include@
> -am__leading_dot = @am__leading_dot@
> -am__quote = @am__quote@
> -am__tar = @am__tar@
> -am__untar = @am__untar@
> -bindir = @bindir@
> -build = @build@
> -build_alias = @build_alias@
> -build_cpu = @build_cpu@
> -build_os = @build_os@
> -build_vendor = @build_vendor@
> -builddir = @builddir@
> -datadir = @datadir@
> -datarootdir = @datarootdir@
> -docdir = @docdir@
> -dvidir = @dvidir@
> -exec_prefix = @exec_prefix@
> -host = @host@
> -host_alias = @host_alias@
> -host_cpu = @host_cpu@
> -host_os = @host_os@
> -host_vendor = @host_vendor@
> -htmldir = @htmldir@
> -includedir = @includedir@
> -infodir = @infodir@
> -install_sh = @install_sh@
> -libdir = @libdir@
> -libexecdir = @libexecdir@
> -localedir = @localedir@
> -localstatedir = @localstatedir@
> -mandir = @mandir@
> -mkdir_p = @mkdir_p@
> -oldincludedir = @oldincludedir@
> -pdfdir = @pdfdir@
> -prefix = @prefix@
> -program_transform_name = @program_transform_name@
> -psdir = @psdir@
> -sbindir = @sbindir@
> -sharedstatedir = @sharedstatedir@
> -srcdir = @srcdir@
> -sysconfdir = @sysconfdir@
> -target = @target@
> -target_alias = @target_alias@
> -target_cpu = @target_cpu@
> -target_os = @target_os@
> -target_vendor = @target_vendor@
> -top_build_prefix = @top_build_prefix@
> -top_builddir = @top_builddir@
> -top_srcdir = @top_srcdir@
> -zlibdir = @zlibdir@
> -zlibinc = @zlibinc@
> -AUTOMAKE_OPTIONS = info-in-builddir no-texinfo.tex foreign
> -
> -# What version of the manual you want; "all" includes everything
> -CONFIG = all
> -
> -# Options to extract the man page from as.texinfo
> -MANCONF = -Dman
> -TEXI2POD = perl $(top_srcdir)/../etc/texi2pod.pl $(AM_MAKEINFOFLAGS)
> -POD2MAN = pod2man --center="GNU Development Tools" \
> -	 --release="binutils-$(VERSION)" --section=1
> -
> -
> -# List of man pages generated from binutils.texi
> -man_MANS = \
> -	addr2line.1 \
> -	ar.1 \
> -	dlltool.1 \
> -	nm.1 \
> -	objcopy.1 \
> -	objdump.1 \
> -	ranlib.1 \
> -	readelf.1 \
> -	size.1 \
> -	strings.1 \
> -	strip.1 \
> -	elfedit.1 \
> -	windres.1 \
> -	windmc.1 \
> -	$(DEMANGLER_NAME).1
> -
> -info_TEXINFOS = binutils.texi
> -binutils_TEXI = $(srcdir)/binutils.texi
> -AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
> -		   -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc \
> -		   --no-split
> -
> -TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
> -		    -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc
> -
> -MAINTAINERCLEANFILES = $(man_MANS) binutils.info cxxfilt.man
> -all: all-am
> -
> -.SUFFIXES:
> -.SUFFIXES: .dvi .ps
> -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
> -	@for dep in $?; do \
> -	  case '$(am__configure_deps)' in \
> -	    *$$dep*) \
> -	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
> -	        && { if test -f $@; then exit 0; else break; fi; }; \
> -	      exit 1;; \
> -	  esac; \
> -	done; \
> -	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \
> -	$(am__cd) $(top_srcdir) && \
> -	  $(AUTOMAKE) --foreign doc/Makefile
> -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
> -	@case '$?' in \
> -	  *config.status*) \
> -	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
> -	  *) \
> -	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
> -	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
> -	esac;
> -
> -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
> -	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
> -
> -$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
> -	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
> -$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
> -	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
> -$(am__aclocal_m4_deps):
> -
> -mostlyclean-libtool:
> -	-rm -f *.lo
> -
> -clean-libtool:
> -	-rm -rf .libs _libs
> -
> -binutils.info: binutils.texi
> -	$(AM_V_MAKEINFO)restore=: && backupdir="$(am__leading_dot)am$$$$" && \
> -	rm -rf $$backupdir && mkdir $$backupdir && \
> -	if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
> -	  for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \
> -	    if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \
> -	  done; \
> -	else :; fi && \
> -	if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
> -	 -o $@ `test -f 'binutils.texi' || echo '$(srcdir)/'`binutils.texi; \
> -	then \
> -	  rc=0; \
> -	else \
> -	  rc=$$?; \
> -	  $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
> -	fi; \
> -	rm -rf $$backupdir; exit $$rc
> -
> -binutils.dvi: binutils.texi
> -	$(AM_V_TEXI2DVI)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
> -	MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \
> -	$(TEXI2DVI) $(AM_V_texinfo) --build-dir=$(@:.dvi=.t2d) -o $@ $(AM_V_texidevnull) \
> -	`test -f 'binutils.texi' || echo '$(srcdir)/'`binutils.texi
> -
> -binutils.pdf: binutils.texi
> -	$(AM_V_TEXI2PDF)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
> -	MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \
> -	$(TEXI2PDF) $(AM_V_texinfo) --build-dir=$(@:.pdf=.t2p) -o $@ $(AM_V_texidevnull) \
> -	`test -f 'binutils.texi' || echo '$(srcdir)/'`binutils.texi
> -
> -binutils.html: binutils.texi
> -	$(AM_V_MAKEINFO)rm -rf $(@:.html=.htp)
> -	$(AM_V_at)if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
> -	 -o $(@:.html=.htp) `test -f 'binutils.texi' || echo '$(srcdir)/'`binutils.texi; \
> -	then \
> -	  rm -rf $@ && mv $(@:.html=.htp) $@; \
> -	else \
> -	  rm -rf $(@:.html=.htp); exit 1; \
> -	fi
> -.dvi.ps:
> -	$(AM_V_DVIPS)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
> -	$(DVIPS) $(AM_V_texinfo) -o $@ $<
> -
> -uninstall-dvi-am:
> -	@$(NORMAL_UNINSTALL)
> -	@list='$(DVIS)'; test -n "$(dvidir)" || list=; \
> -	for p in $$list; do \
> -	  $(am__strip_dir) \
> -	  echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \
> -	  rm -f "$(DESTDIR)$(dvidir)/$$f"; \
> -	done
> -
> -uninstall-html-am:
> -	@$(NORMAL_UNINSTALL)
> -	@list='$(HTMLS)'; test -n "$(htmldir)" || list=; \
> -	for p in $$list; do \
> -	  $(am__strip_dir) \
> -	  echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \
> -	  rm -rf "$(DESTDIR)$(htmldir)/$$f"; \
> -	done
> -
> -uninstall-info-am:
> -	@$(PRE_UNINSTALL)
> -	@if test -d '$(DESTDIR)$(infodir)' && $(am__can_run_installinfo); then \
> -	  list='$(INFO_DEPS)'; \
> -	  for file in $$list; do \
> -	    relfile=`echo "$$file" | sed 's|^.*/||'`; \
> -	    echo " install-info --info-dir='$(DESTDIR)$(infodir)' --remove '$(DESTDIR)$(infodir)/$$relfile'"; \
> -	    if install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$$relfile"; \
> -	    then :; else test ! -f "$(DESTDIR)$(infodir)/$$relfile" || exit 1; fi; \
> -	  done; \
> -	else :; fi
> -	@$(NORMAL_UNINSTALL)
> -	@list='$(INFO_DEPS)'; \
> -	for file in $$list; do \
> -	  relfile=`echo "$$file" | sed 's|^.*/||'`; \
> -	  relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
> -	  (if test -d "$(DESTDIR)$(infodir)" && cd "$(DESTDIR)$(infodir)"; then \
> -	     echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]"; \
> -	     rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
> -	   else :; fi); \
> -	done
> -
> -uninstall-pdf-am:
> -	@$(NORMAL_UNINSTALL)
> -	@list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
> -	for p in $$list; do \
> -	  $(am__strip_dir) \
> -	  echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \
> -	  rm -f "$(DESTDIR)$(pdfdir)/$$f"; \
> -	done
> -
> -uninstall-ps-am:
> -	@$(NORMAL_UNINSTALL)
> -	@list='$(PSS)'; test -n "$(psdir)" || list=; \
> -	for p in $$list; do \
> -	  $(am__strip_dir) \
> -	  echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \
> -	  rm -f "$(DESTDIR)$(psdir)/$$f"; \
> -	done
> -
> -dist-info: $(INFO_DEPS)
> -	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
> -	list='$(INFO_DEPS)'; \
> -	for base in $$list; do \
> -	  case $$base in \
> -	    $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
> -	  esac; \
> -	  if test -f $$base; then d=.; else d=$(srcdir); fi; \
> -	  base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
> -	  for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
> -	    if test -f $$file; then \
> -	      relfile=`expr "$$file" : "$$d/\(.*\)"`; \
> -	      test -f "$(distdir)/$$relfile" || \
> -		cp -p $$file "$(distdir)/$$relfile"; \
> -	    else :; fi; \
> -	  done; \
> -	done
> -
> -mostlyclean-aminfo:
> -	-rm -rf binutils.t2d binutils.t2p
> -
> -clean-aminfo:
> -	-test -z "binutils.dvi binutils.pdf binutils.ps binutils.html" \
> -	|| rm -rf binutils.dvi binutils.pdf binutils.ps binutils.html
> -
> -maintainer-clean-aminfo:
> -	@list='$(INFO_DEPS)'; for i in $$list; do \
> -	  i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
> -	  echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \
> -	  rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
> -	done
> -install-man1: $(man_MANS)
> -	@$(NORMAL_INSTALL)
> -	@list1=''; \
> -	list2='$(man_MANS)'; \
> -	test -n "$(man1dir)" \
> -	  && test -n "`echo $$list1$$list2`" \
> -	  || exit 0; \
> -	echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
> -	$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
> -	{ for i in $$list1; do echo "$$i"; done;  \
> -	if test -n "$$list2"; then \
> -	  for i in $$list2; do echo "$$i"; done \
> -	    | sed -n '/\.1[a-z]*$$/p'; \
> -	fi; \
> -	} | while read p; do \
> -	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
> -	  echo "$$d$$p"; echo "$$p"; \
> -	done | \
> -	sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
> -	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
> -	sed 'N;N;s,\n, ,g' | { \
> -	list=; while read file base inst; do \
> -	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \
> -	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
> -	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
> -	  fi; \
> -	done; \
> -	for i in $$list; do echo "$$i"; done | $(am__base_list) | \
> -	while read files; do \
> -	  test -z "$$files" || { \
> -	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
> -	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
> -	done; }
> -
> -uninstall-man1:
> -	@$(NORMAL_UNINSTALL)
> -	@list=''; test -n "$(man1dir)" || exit 0; \
> -	files=`{ for i in $$list; do echo "$$i"; done; \
> -	l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
> -	  sed -n '/\.1[a-z]*$$/p'; \
> -	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
> -	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
> -	dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
> -tags TAGS:
> -
> -ctags CTAGS:
> -
> -cscope cscopelist:
> -
> -
> -distdir: $(DISTFILES)
> -	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
> -	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
> -	list='$(DISTFILES)'; \
> -	  dist_files=`for file in $$list; do echo $$file; done | \
> -	  sed -e "s|^$$srcdirstrip/||;t" \
> -	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
> -	case $$dist_files in \
> -	  */*) $(MKDIR_P) `echo "$$dist_files" | \
> -			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
> -			   sort -u` ;; \
> -	esac; \
> -	for file in $$dist_files; do \
> -	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
> -	  if test -d $$d/$$file; then \
> -	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
> -	    if test -d "$(distdir)/$$file"; then \
> -	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
> -	    fi; \
> -	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
> -	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
> -	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
> -	    fi; \
> -	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
> -	  else \
> -	    test -f "$(distdir)/$$file" \
> -	    || cp -p $$d/$$file "$(distdir)/$$file" \
> -	    || exit 1; \
> -	  fi; \
> -	done
> -	$(MAKE) $(AM_MAKEFLAGS) \
> -	  top_distdir="$(top_distdir)" distdir="$(distdir)" \
> -	  dist-info
> -check-am: all-am
> -check: check-am
> -all-am: Makefile $(INFO_DEPS) $(MANS)
> -installdirs:
> -	for dir in "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"; do \
> -	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
> -	done
> -install: install-am
> -install-exec: install-exec-am
> -install-data: install-data-am
> -uninstall: uninstall-am
> -
> -install-am: all-am
> -	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
> -
> -installcheck: installcheck-am
> -install-strip:
> -	if test -z '$(STRIP)'; then \
> -	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
> -	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
> -	      install; \
> -	else \
> -	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
> -	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
> -	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
> -	fi
> -mostlyclean-generic:
> -
> -clean-generic:
> -
> -distclean-generic:
> -	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
> -	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
> -
> -maintainer-clean-generic:
> -	@echo "This command is intended for maintainers to use"
> -	@echo "it deletes files that may require special tools to rebuild."
> -	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
> -clean: clean-am
> -
> -clean-am: clean-aminfo clean-generic clean-libtool mostlyclean-am
> -
> -distclean: distclean-am
> -	-rm -f Makefile
> -distclean-am: clean-am distclean-generic
> -
> -dvi: dvi-am
> -
> -dvi-am: $(DVIS)
> -
> -html: html-am
> -
> -html-am: $(HTMLS) html-local
> -
> -info: info-am
> -
> -info-am: $(INFO_DEPS) info-local
> -
> -install-data-am: install-info-am install-man
> -
> -install-dvi: install-dvi-am
> -
> -install-dvi-am: $(DVIS)
> -	@$(NORMAL_INSTALL)
> -	@list='$(DVIS)'; test -n "$(dvidir)" || list=; \
> -	if test -n "$$list"; then \
> -	  echo " $(MKDIR_P) '$(DESTDIR)$(dvidir)'"; \
> -	  $(MKDIR_P) "$(DESTDIR)$(dvidir)" || exit 1; \
> -	fi; \
> -	for p in $$list; do \
> -	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
> -	  echo "$$d$$p"; \
> -	done | $(am__base_list) | \
> -	while read files; do \
> -	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \
> -	  $(INSTALL_DATA) $$files "$(DESTDIR)$(dvidir)" || exit $$?; \
> -	done
> -install-exec-am:
> -
> -install-html: install-html-am
> -
> -install-html-am: $(HTMLS)
> -	@$(NORMAL_INSTALL)
> -	@list='$(HTMLS)'; list2=; test -n "$(htmldir)" || list=; \
> -	if test -n "$$list"; then \
> -	  echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
> -	  $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
> -	fi; \
> -	for p in $$list; do \
> -	  if test -f "$$p" || test -d "$$p"; then d=; else d="$(srcdir)/"; fi; \
> -	  $(am__strip_dir) \
> -	  d2=$$d$$p; \
> -	  if test -d "$$d2"; then \
> -	    echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
> -	    $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
> -	    echo " $(INSTALL_DATA) '$$d2'/* '$(DESTDIR)$(htmldir)/$$f'"; \
> -	    $(INSTALL_DATA) "$$d2"/* "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
> -	  else \
> -	    list2="$$list2 $$d2"; \
> -	  fi; \
> -	done; \
> -	test -z "$$list2" || { echo "$$list2" | $(am__base_list) | \
> -	while read files; do \
> -	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
> -	  $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
> -	done; }
> -install-info: install-info-am
> -
> -install-info-am: $(INFO_DEPS)
> -	@$(NORMAL_INSTALL)
> -	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
> -	list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
> -	if test -n "$$list"; then \
> -	  echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \
> -	  $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \
> -	fi; \
> -	for file in $$list; do \
> -	  case $$file in \
> -	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
> -	  esac; \
> -	  if test -f $$file; then d=.; else d=$(srcdir); fi; \
> -	  file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
> -	  for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
> -	               $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
> -	    if test -f $$ifile; then \
> -	      echo "$$ifile"; \
> -	    else : ; fi; \
> -	  done; \
> -	done | $(am__base_list) | \
> -	while read files; do \
> -	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(infodir)'"; \
> -	  $(INSTALL_DATA) $$files "$(DESTDIR)$(infodir)" || exit $$?; done
> -	@$(POST_INSTALL)
> -	@if $(am__can_run_installinfo); then \
> -	  list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
> -	  for file in $$list; do \
> -	    relfile=`echo "$$file" | sed 's|^.*/||'`; \
> -	    echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
> -	    install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
> -	  done; \
> -	else : ; fi
> -install-man: install-man1
> -
> -install-pdf: install-pdf-am
> -
> -install-pdf-am: $(PDFS)
> -	@$(NORMAL_INSTALL)
> -	@list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
> -	if test -n "$$list"; then \
> -	  echo " $(MKDIR_P) '$(DESTDIR)$(pdfdir)'"; \
> -	  $(MKDIR_P) "$(DESTDIR)$(pdfdir)" || exit 1; \
> -	fi; \
> -	for p in $$list; do \
> -	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
> -	  echo "$$d$$p"; \
> -	done | $(am__base_list) | \
> -	while read files; do \
> -	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pdfdir)'"; \
> -	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pdfdir)" || exit $$?; done
> -install-ps: install-ps-am
> -
> -install-ps-am: $(PSS)
> -	@$(NORMAL_INSTALL)
> -	@list='$(PSS)'; test -n "$(psdir)" || list=; \
> -	if test -n "$$list"; then \
> -	  echo " $(MKDIR_P) '$(DESTDIR)$(psdir)'"; \
> -	  $(MKDIR_P) "$(DESTDIR)$(psdir)" || exit 1; \
> -	fi; \
> -	for p in $$list; do \
> -	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
> -	  echo "$$d$$p"; \
> -	done | $(am__base_list) | \
> -	while read files; do \
> -	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(psdir)'"; \
> -	  $(INSTALL_DATA) $$files "$(DESTDIR)$(psdir)" || exit $$?; done
> -installcheck-am:
> -
> -maintainer-clean: maintainer-clean-am
> -	-rm -f Makefile
> -maintainer-clean-am: distclean-am maintainer-clean-aminfo \
> -	maintainer-clean-generic
> -
> -mostlyclean: mostlyclean-am
> -
> -mostlyclean-am: mostlyclean-aminfo mostlyclean-generic \
> -	mostlyclean-libtool
> -
> -pdf: pdf-am
> -
> -pdf-am: $(PDFS)
> -
> -ps: ps-am
> -
> -ps-am: $(PSS)
> -
> -uninstall-am: uninstall-dvi-am uninstall-html-am uninstall-info-am \
> -	uninstall-man uninstall-pdf-am uninstall-ps-am
> -
> -uninstall-man: uninstall-man1
> -
> -.MAKE: install-am install-strip
> -
> -.PHONY: all all-am check check-am clean clean-aminfo clean-generic \
> -	clean-libtool cscopelist-am ctags-am dist-info distclean \
> -	distclean-generic distclean-libtool distdir dvi dvi-am html \
> -	html-am html-local info info-am info-local install install-am \
> -	install-data install-data-am install-dvi install-dvi-am \
> -	install-exec install-exec-am install-html install-html-am \
> -	install-info install-info-am install-man install-man1 \
> -	install-pdf install-pdf-am install-ps install-ps-am \
> -	install-strip installcheck installcheck-am installdirs \
> -	maintainer-clean maintainer-clean-aminfo \
> -	maintainer-clean-generic mostlyclean mostlyclean-aminfo \
> -	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
> -	tags-am uninstall uninstall-am uninstall-dvi-am \
> -	uninstall-html-am uninstall-info-am uninstall-man \
> -	uninstall-man1 uninstall-pdf-am uninstall-ps-am
> -
> -.PRECIOUS: Makefile
> -
> -
> -# Man page generation from texinfo
> -addr2line.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
> -	$(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f addr2line.pod
> -
> -ar.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
> -	$(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f ar.pod
> -
> -dlltool.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
> -	$(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f dlltool.pod
> -
> -nm.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
> -	$(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f nm.pod
> -
> -objcopy.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
> -	$(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f objcopy.pod
> -
> -objdump.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
> -	$(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f objdump.pod
> -
> -ranlib.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
> -	$(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f ranlib.pod
> -
> -readelf.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
> -	$(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f readelf.pod
> -
> -size.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
> -	$(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f size.pod
> -
> -strings.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
> -	$(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f strings.pod
> -
> -strip.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
> -	$(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f strip.pod
> -
> -elfedit.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
> -	$(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f elfedit.pod
> -
> -windres.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
> -	$(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f windres.pod
> -
> -windmc.1:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
> -	$(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f windmc.pod
> -
> -cxxfilt.man:	$(binutils_TEXI)
> -	$(AM_V_GEN)touch $@
> -	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
> -	$(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
> -		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
> -	$(AM_V_at)rm -f $(DEMANGLER_NAME).pod
> -
> -$(DEMANGLER_NAME).1: cxxfilt.man Makefile
> -	$(AM_V_GEN)if test -f cxxfilt.man; then \
> -	  man=cxxfilt.man; \
> -	else \
> -	  man=$(srcdir)/cxxfilt.man; \
> -	fi; \
> -	sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \
> -	    -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \
> -		> $(DEMANGLER_NAME).1
> -
> -html-local: binutils/index.html
> -binutils/index.html: binutils.texi $(binutils_TEXINFOS)
> -	$(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
> -	  --split=node -I$(srcdir) $(srcdir)/binutils.texi
> -
> -# Maintenance
> -
> -# We need it for the taz target in ../../Makefile.in.
> -info-local: $(MANS)
> -
> -# Tell versions [3.59,3.63) of GNU make to not export all variables.
> -# Otherwise a system limit (for SysV at least) may be exceeded.
> -.NOEXPORT:
> diff --git a/binutils/doc/Makefile.am b/binutils/doc/local.mk
> similarity index 77%
> rename from binutils/doc/Makefile.am
> rename to binutils/doc/local.mk
> index 90b238ddf8d9..687b3f65e6cb 100644
> --- a/binutils/doc/Makefile.am
> +++ b/binutils/doc/local.mk
> @@ -6,19 +6,17 @@
>   # it under the terms of the GNU General Public License as published by
>   # the Free Software Foundation; either version 3 of the License, or
>   # (at your option) any later version.
> -#
> +#
>   # This program is distributed in the hope that it will be useful,
>   # but WITHOUT ANY WARRANTY; without even the implied warranty of
>   # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>   # GNU General Public License for more details.
> -#
> +#
>   # You should have received a copy of the GNU General Public License
>   # along with this program; see the file COPYING3.  If not see
>   # <http://www.gnu.org/licenses/>.
>   #
>   
> -AUTOMAKE_OPTIONS = info-in-builddir no-texinfo.tex foreign
> -
>   # What version of the manual you want; "all" includes everything
>   CONFIG=all
>   
> @@ -32,155 +30,155 @@ POD2MAN = pod2man --center="GNU Development Tools" \
>   
>   # List of man pages generated from binutils.texi
>   man_MANS = \
> -	addr2line.1 \
> -	ar.1 \
> -	dlltool.1 \
> -	nm.1 \
> -	objcopy.1 \
> -	objdump.1 \
> -	ranlib.1 \
> -	readelf.1 \
> -	size.1 \
> -	strings.1 \
> -	strip.1 \
> -	elfedit.1 \
> -	windres.1 \
> -	windmc.1 \
> -	$(DEMANGLER_NAME).1
> -
> -info_TEXINFOS = binutils.texi
> -binutils_TEXI = $(srcdir)/binutils.texi
> -
> -AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
> -		   -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc \
> +	%D%/addr2line.1 \
> +	%D%/ar.1 \
> +	%D%/dlltool.1 \
> +	%D%/nm.1 \
> +	%D%/objcopy.1 \
> +	%D%/objdump.1 \
> +	%D%/ranlib.1 \
> +	%D%/readelf.1 \
> +	%D%/size.1 \
> +	%D%/strings.1 \
> +	%D%/strip.1 \
> +	%D%/elfedit.1 \
> +	%D%/windres.1 \
> +	%D%/windmc.1 \
> +	%D%/$(DEMANGLER_NAME).1
> +
> +info_TEXINFOS = %D%/binutils.texi
> +binutils_TEXI = $(srcdir)/%D%/binutils.texi
> +
> +AM_MAKEINFOFLAGS = -I "$(srcdir)/%D%" -I "$(top_srcdir)/../libiberty" \
> +		   -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc \
>   		   --no-split
> -TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
> -		    -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc
> +TEXI2DVI = texi2dvi -I "$(srcdir)/%D%" -I "$(top_srcdir)/../libiberty" \
> +		    -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc
>   
>   # Man page generation from texinfo
> -addr2line.1:	$(binutils_TEXI)
> +%D%/addr2line.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
>   	$(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f addr2line.pod
>   
> -ar.1:	$(binutils_TEXI)
> +%D%/ar.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
>   	$(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f ar.pod
>   
> -dlltool.1:	$(binutils_TEXI)
> +%D%/dlltool.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
>   	$(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f dlltool.pod
>   
> -nm.1:	$(binutils_TEXI)
> +%D%/nm.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
>   	$(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f nm.pod
>   
> -objcopy.1:	$(binutils_TEXI)
> +%D%/objcopy.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
>   	$(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f objcopy.pod
>   
> -objdump.1:	$(binutils_TEXI)
> +%D%/objdump.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
>   	$(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f objdump.pod
>   
> -ranlib.1:	$(binutils_TEXI)
> +%D%/ranlib.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
>   	$(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f ranlib.pod
>   
> -readelf.1:	$(binutils_TEXI)
> +%D%/readelf.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
>   	$(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f readelf.pod
>   
> -size.1:	$(binutils_TEXI)
> +%D%/size.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
>   	$(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f size.pod
>   
> -strings.1:	$(binutils_TEXI)
> +%D%/strings.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
>   	$(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f strings.pod
>   
> -strip.1:	$(binutils_TEXI)
> +%D%/strip.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
>   	$(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f strip.pod
>   
> -elfedit.1:	$(binutils_TEXI)
> +%D%/elfedit.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
>   	$(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f elfedit.pod
>   
> -windres.1:	$(binutils_TEXI)
> +%D%/windres.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
>   	$(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f windres.pod
>   
> -windmc.1:	$(binutils_TEXI)
> +%D%/windmc.1:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
>   	$(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f windmc.pod
>   
> -cxxfilt.man:	$(binutils_TEXI)
> +%D%/cxxfilt.man:	$(binutils_TEXI)
>   	$(AM_V_GEN)touch $@
>   	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
>   	$(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
>   		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>   	$(AM_V_at)rm -f $(DEMANGLER_NAME).pod
>   
> -MAINTAINERCLEANFILES = $(man_MANS) binutils.info cxxfilt.man
> +MAINTAINERCLEANFILES += $(man_MANS) %D%/binutils.info %D%/cxxfilt.man
>   
> -$(DEMANGLER_NAME).1: cxxfilt.man Makefile
> -	$(AM_V_GEN)if test -f cxxfilt.man; then \
> -	  man=cxxfilt.man; \
> +%D%/$(DEMANGLER_NAME).1: %D%/cxxfilt.man Makefile
> +	$(AM_V_GEN)if test -f %D%/cxxfilt.man; then \
> +	  man=%D%/cxxfilt.man; \
>   	else \
> -	  man=$(srcdir)/cxxfilt.man; \
> +	  man=$(srcdir)/%D%/cxxfilt.man; \
>   	fi; \
>   	sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \
>   	    -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \
> -		> $(DEMANGLER_NAME).1
> +		> %D%/$(DEMANGLER_NAME).1
>   
> -html-local: binutils/index.html
> -binutils/index.html: binutils.texi $(binutils_TEXINFOS)
> +html-local: %D%/binutils/index.html
> +binutils/index.html: %D%/binutils.texi $(binutils_TEXINFOS)
>   	$(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
> -	  --split=node -I$(srcdir) $(srcdir)/binutils.texi
> +	  --split=node -I$(srcdir) $(srcdir)/%D%/binutils.texi
>   
>   # Maintenance
>   
> -# We need it for the taz target in ../../Makefile.in.
> +# We need it for the taz target in ../Makefile.in.
>   info-local: $(MANS)
> 

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/2] binutils: merge doc subdir up a level
  2021-11-30 10:17     ` Luis Machado
@ 2021-11-30 10:18       ` Luis Machado
  2021-11-30 14:41         ` Jeff Law
  2021-11-30 16:12         ` Jeff Law
  2021-11-30 16:35       ` [PATCH] binutils: add missing doc/dirstamp deps Mike Frysinger
  1 sibling, 2 replies; 12+ messages in thread
From: Luis Machado @ 2021-11-30 10:18 UTC (permalink / raw)
  To: Mike Frysinger, binutils

Sorry, forgot to mention, it is a --enable-targets=all build. Though I 
don't think that makes a difference.

On 11/30/21 7:17 AM, Luis Machado wrote:
> Hi Mike,
> 
> It seems this patch is causing some semi-deterministic failures in 
> parallel builds. Sometimes it fails, other times it doesn't.
> 
> Here's the output of one that has failed:
> 
> -- 
> 
>    GEN      doc/addr2line.1
> 
>                                                  [261/1955]
>    GEN      doc/dlltool.1
> 
> 
>    GEN      doc/nm.1
> touch: cannot touch 'doc/addr2line.1'  GEN      doc/objcopy.1
> 
> 
> : No such file or directory
> 
> Makefile:2017: recipe for target 'doc/addr2line.1' failed
> 
> 
> make[3]: *** [doc/addr2line.1] Error 1
> 
> make[3]: *** Waiting for unfinished jobs....
> 
> 
> touch: cannot touch 'doc/dlltool.1': No such file or directory
> 
>    GEN      doc/objdump.1
> 
> 
>    GEN      doc/ranlib.1
> 
> 
>    GEN      doc/ar.1
> 
> 
> Makefile:2031: recipe for target 'doc/dlltool.1' failed
> 
> 
> make[3]: *** [doc/dlltool.1] Error 1
> 
> 
> touch: cannot touch 'doc/objcopy.1': No such file or directory
> touch: cannot touch 'doc/nm.1'  GEN      doc/strings.1
> 
> 
> Makefile:2045: recipe for target 'doc/objcopy.1' failed
> make[3]: *** [doc/objcopy.1] Error 1
> 
> 
> : No such file or directory
> 
>    GEN      doc/readelf.1
> configure: updating cache ./config.cache
> touch: cannot touch 'doc/objdump.1': No such file or directory
> touch: cannot touch 'doc/ranlib.1': No such file or directory
> touch: cannot touch 'doc/readelf.1'touch: cannot touch 'doc/strings.1': 
> No such file or directory
> : No such file or directory
> touch: cannot touch 'doc/ar.1': No such file or directory
> Makefile:2066: recipe for target 'doc/readelf.1' failed
> make[3]: *** [doc/readelf.1] Error 1
>    GEN      doc/size.1
> Makefile:2024: recipe for target 'doc/ar.1' failed
> make[3]: *** [doc/ar.1] Error 1
> Makefile:2038: recipe for target 'doc/nm.1' failed
> make[3]: *** [doc/nm.1] Error 1
> Makefile:2080: recipe for target 'doc/strings.1' failed
> make[3]: *** [doc/strings.1] Error 1
>    GEN      doc/strip.1
> Makefile:2052: recipe for target 'doc/objdump.1' failed
> make[3]: *** [doc/objdump.1] Error 1
> touch: cannot touch 'doc/strip.1': No such file or directory
> make[4]: Entering directory 
> '/home/luis.machado/work/tcwg/builds/binutils-gdb-arm64-bionic/binutils'
> checking that generated files are newer than configure... done
> configure: creating ./config.status
> Makefile:2059: recipe for target 'doc/ranlib.1' failed
> make[3]: *** [doc/ranlib.1] Error 1
> Makefile:2087: recipe for target 'doc/strip.1' failed
> make[3]: *** [doc/strip.1] Error 1
> touch: cannot touch 'doc/size.1': No such file or directory
> Makefile:2073: recipe for target 'doc/size.1' failed
> make[3]: *** [doc/size.1] Error 1
> 
> -- 
> 
> It is a fresh build from a clean tree. Resuming the build makes it 
> complete, so I suppose there is some race condition somewhere. My build 
> is a -j160. A -j1 completes just fine.
> 
> I'm on Ubuntu 20.04.
> 
> On 11/26/21 1:16 AM, Mike Frysinger via Binutils wrote:
>> This avoids a recursive make into the doc subdir and speeds up the
>> build slightly.  It also allows for more parallelism.
>> ---
>>   binutils/Makefile.am                   |    8 +-
>>   binutils/Makefile.in                   |  594 +++++++++++++-
>>   binutils/configure.ac                  |    2 +-
>>   binutils/doc/Makefile.in               | 1045 ------------------------
>>   binutils/doc/{Makefile.am => local.mk} |  102 ++-
>>   5 files changed, 608 insertions(+), 1143 deletions(-)
>>   delete mode 100644 binutils/doc/Makefile.in
>>   rename binutils/doc/{Makefile.am => local.mk} (77%)
>>
>> diff --git a/binutils/Makefile.am b/binutils/Makefile.am
>> index 9ceb63da7b80..f54dadd921dc 100644
>> --- a/binutils/Makefile.am
>> +++ b/binutils/Makefile.am
>> @@ -17,13 +17,15 @@
>>   # <http://www.gnu.org/licenses/>.
>>   #
>> -AUTOMAKE_OPTIONS = dejagnu no-dist foreign subdir-objects
>> +AUTOMAKE_OPTIONS = dejagnu no-dist foreign subdir-objects 
>> info-in-builddir no-texinfo.tex
>>   ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
>> -SUBDIRS = doc po
>> +SUBDIRS = po
>>   tooldir = $(exec_prefix)/$(target_alias)
>> +MAINTAINERCLEANFILES =
>> +
>>   ## These aren't set by automake, because they appear in
>>   ## bfd/acinclude.m4, which is included by binutils/acinclude.m4, and
>>   ## thus is not seen by automake.
>> @@ -552,3 +554,5 @@ install-exec-local: install-binPROGRAMS 
>> $(bin_PROGRAMS) $(noinst_PROGRAMS)
>>         else true; \
>>         fi; \
>>       done
>> +
>> +include doc/local.mk
>> diff --git a/binutils/Makefile.in b/binutils/Makefile.in
>> index 1986261f9e33..336644a3983a 100644
>> --- a/binutils/Makefile.in
>> +++ b/binutils/Makefile.in
>> @@ -32,6 +32,24 @@
>>   # <http://www.gnu.org/licenses/>.
>>   #
>> +#
>> +#   Copyright (C) 2012-2021 Free Software Foundation, Inc.
>> +#
>> +# This file is free software; you can redistribute it and/or modify
>> +# it under the terms of the GNU General Public License as published by
>> +# the Free Software Foundation; either version 3 of the License, or
>> +# (at your option) any later version.
>> +#
>> +# This program is distributed in the hope that it will be useful,
>> +# but WITHOUT ANY WARRANTY; without even the implied warranty of
>> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>> +# GNU General Public License for more details.
>> +#
>> +# You should have received a copy of the GNU General Public License
>> +# along with this program; see the file COPYING3.  If not see
>> +# <http://www.gnu.org/licenses/>.
>> +#
>> +
>>   VPATH = @srcdir@
>>   am__is_gnu_make = { \
>> @@ -167,7 +185,8 @@ am__EXEEXT_10 = objcopy$(EXEEXT)
>>   am__EXEEXT_11 = addr2line$(EXEEXT)
>>   am__EXEEXT_12 = readelf$(EXEEXT)
>>   am__EXEEXT_13 = elfedit$(EXEEXT)
>> -am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"
>> +am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" \
>> +    "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"
>>   am__EXEEXT_14 = nm-new$(EXEEXT)
>>   am__EXEEXT_15 = strip-new$(EXEEXT)
>>   am__EXEEXT_16 = cxxfilt$(EXEEXT)
>> @@ -356,6 +375,45 @@ SOURCES = $(addr2line_SOURCES) $(ar_SOURCES) 
>> $(EXTRA_ar_SOURCES) \
>>       $(size_SOURCES) $(srconv_SOURCES) $(strings_SOURCES) \
>>       $(strip_new_SOURCES) $(sysdump_SOURCES) \
>>       testsuite/gentestdlls.c $(windmc_SOURCES) $(windres_SOURCES)
>> +AM_V_DVIPS = $(am__v_DVIPS_@AM_V@)
>> +am__v_DVIPS_ = $(am__v_DVIPS_@AM_DEFAULT_V@)
>> +am__v_DVIPS_0 = @echo "  DVIPS   " $@;
>> +am__v_DVIPS_1 =
>> +AM_V_MAKEINFO = $(am__v_MAKEINFO_@AM_V@)
>> +am__v_MAKEINFO_ = $(am__v_MAKEINFO_@AM_DEFAULT_V@)
>> +am__v_MAKEINFO_0 = @echo "  MAKEINFO" $@;
>> +am__v_MAKEINFO_1 =
>> +AM_V_INFOHTML = $(am__v_INFOHTML_@AM_V@)
>> +am__v_INFOHTML_ = $(am__v_INFOHTML_@AM_DEFAULT_V@)
>> +am__v_INFOHTML_0 = @echo "  INFOHTML" $@;
>> +am__v_INFOHTML_1 =
>> +AM_V_TEXI2DVI = $(am__v_TEXI2DVI_@AM_V@)
>> +am__v_TEXI2DVI_ = $(am__v_TEXI2DVI_@AM_DEFAULT_V@)
>> +am__v_TEXI2DVI_0 = @echo "  TEXI2DVI" $@;
>> +am__v_TEXI2DVI_1 =
>> +AM_V_TEXI2PDF = $(am__v_TEXI2PDF_@AM_V@)
>> +am__v_TEXI2PDF_ = $(am__v_TEXI2PDF_@AM_DEFAULT_V@)
>> +am__v_TEXI2PDF_0 = @echo "  TEXI2PDF" $@;
>> +am__v_TEXI2PDF_1 =
>> +AM_V_texinfo = $(am__v_texinfo_@AM_V@)
>> +am__v_texinfo_ = $(am__v_texinfo_@AM_DEFAULT_V@)
>> +am__v_texinfo_0 = -q
>> +am__v_texinfo_1 =
>> +AM_V_texidevnull = $(am__v_texidevnull_@AM_V@)
>> +am__v_texidevnull_ = $(am__v_texidevnull_@AM_DEFAULT_V@)
>> +am__v_texidevnull_0 = > /dev/null
>> +am__v_texidevnull_1 =
>> +INFO_DEPS = doc/binutils.info
>> +am__TEXINFO_TEX_DIR = $(srcdir)
>> +DVIS = doc/binutils.dvi
>> +PDFS = doc/binutils.pdf
>> +PSS = doc/binutils.ps
>> +HTMLS = doc/binutils.html
>> +TEXINFOS = doc/binutils.texi
>> +TEXI2PDF = $(TEXI2DVI) --pdf --batch
>> +MAKEINFOHTML = $(MAKEINFO) --html
>> +AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS)
>> +DVIPS = dvips
>>   RECURSIVE_TARGETS = all-recursive check-recursive 
>> cscopelist-recursive \
>>       ctags-recursive dvi-recursive html-recursive info-recursive \
>>       install-data-recursive install-dvi-recursive \
>> @@ -369,6 +427,9 @@ am__can_run_installinfo = \
>>       n|no|NO) false;; \
>>       *) (install-info --version) >/dev/null 2>&1;; \
>>     esac
>> +man1dir = $(mandir)/man1
>> +NROFF = nroff
>> +MANS = $(man_MANS)
>>   RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive    \
>>     distclean-recursive maintainer-clean-recursive
>>   am__recursive_targets = \
>> @@ -569,10 +630,11 @@ top_builddir = @top_builddir@
>>   top_srcdir = @top_srcdir@
>>   zlibdir = @zlibdir@
>>   zlibinc = @zlibinc@
>> -AUTOMAKE_OPTIONS = dejagnu no-dist foreign subdir-objects
>> +AUTOMAKE_OPTIONS = dejagnu no-dist foreign subdir-objects 
>> info-in-builddir no-texinfo.tex
>>   ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
>> -SUBDIRS = doc po
>> +SUBDIRS = po
>>   tooldir = $(exec_prefix)/$(target_alias)
>> +MAINTAINERCLEANFILES = $(man_MANS) doc/binutils.info doc/cxxfilt.man
>>   # Automake 1.10+ disables lex and yacc output file regeneration if
>>   # maintainer mode is disabled.  Avoid this.
>> @@ -771,14 +833,52 @@ DISTCLEANFILES = sysroff.c sysroff.h site.exp 
>> development.exp \
>>   MOSTLYCLEANFILES = sysinfo$(EXEEXT_FOR_BUILD) 
>> bin2c$(EXEEXT_FOR_BUILD) \
>>     binutils.log binutils.sum abcdefgh*
>> +
>> +# What version of the manual you want; "all" includes everything
>> +CONFIG = all
>> +
>> +# Options to extract the man page from as.texinfo
>> +MANCONF = -Dman
>> +TEXI2POD = perl $(top_srcdir)/../etc/texi2pod.pl $(AM_MAKEINFOFLAGS)
>> +POD2MAN = pod2man --center="GNU Development Tools" \
>> +     --release="binutils-$(VERSION)" --section=1
>> +
>> +
>> +# List of man pages generated from binutils.texi
>> +man_MANS = \
>> +    doc/addr2line.1 \
>> +    doc/ar.1 \
>> +    doc/dlltool.1 \
>> +    doc/nm.1 \
>> +    doc/objcopy.1 \
>> +    doc/objdump.1 \
>> +    doc/ranlib.1 \
>> +    doc/readelf.1 \
>> +    doc/size.1 \
>> +    doc/strings.1 \
>> +    doc/strip.1 \
>> +    doc/elfedit.1 \
>> +    doc/windres.1 \
>> +    doc/windmc.1 \
>> +    doc/$(DEMANGLER_NAME).1
>> +
>> +info_TEXINFOS = doc/binutils.texi
>> +binutils_TEXI = $(srcdir)/doc/binutils.texi
>> +AM_MAKEINFOFLAGS = -I "$(srcdir)/doc" -I "$(top_srcdir)/../libiberty" \
>> +           -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc \
>> +           --no-split
>> +
>> +TEXI2DVI = texi2dvi -I "$(srcdir)/doc" -I "$(top_srcdir)/../libiberty" \
>> +            -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc
>> +
>>   all: $(BUILT_SOURCES) config.h
>>       $(MAKE) $(AM_MAKEFLAGS) all-recursive
>>   .SUFFIXES:
>> -.SUFFIXES: .c .l .lo .o .obj .y
>> +.SUFFIXES: .c .dvi .l .lo .o .obj .ps .y
>>   am--refresh: Makefile
>>       @:
>> -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  
>> $(am__configure_deps)
>> +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am 
>> $(srcdir)/doc/local.mk $(am__configure_deps)
>>       @for dep in $?; do \
>>         case '$(am__configure_deps)' in \
>>           *$$dep*) \
>> @@ -800,6 +900,7 @@ Makefile: $(srcdir)/Makefile.in 
>> $(top_builddir)/config.status
>>           echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ 
>> $(am__depfiles_maybe)'; \
>>           cd $(top_builddir) && $(SHELL) ./config.status $@ 
>> $(am__depfiles_maybe);; \
>>       esac;
>> +$(srcdir)/doc/local.mk $(am__empty):
>>   $(top_builddir)/config.status: $(top_srcdir)/configure 
>> $(CONFIG_STATUS_DEPENDENCIES)
>>       $(SHELL) ./config.status --recheck
>> @@ -1139,6 +1240,186 @@ clean-libtool:
>>   distclean-libtool:
>>       -rm -f libtool config.lt
>> +doc/$(am__dirstamp):
>> +    @$(MKDIR_P) doc
>> +    @: > doc/$(am__dirstamp)
>> +
>> +doc/binutils.info: doc/binutils.texi
>> +    @test -f doc/$(am__dirstamp) || $(MAKE) $(AM_MAKEFLAGS) 
>> doc/$(am__dirstamp)
>> +    $(AM_V_MAKEINFO)restore=: && backupdir="$(am__leading_dot)am$$$$" 
>> && \
>> +    rm -rf $$backupdir && mkdir $$backupdir && \
>> +    if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
>> +      for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] 
>> $(@:.info=).i[0-9][0-9]; do \
>> +        if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; 
>> fi; \
>> +      done; \
>> +    else :; fi && \
>> +    if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I 
>> $(srcdir)/doc \
>> +     -o $@ `test -f 'doc/binutils.texi' || echo 
>> '$(srcdir)/'`doc/binutils.texi; \
>> +    then \
>> +      rc=0; \
>> +    else \
>> +      rc=$$?; \
>> +      $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
>> +    fi; \
>> +    rm -rf $$backupdir; exit $$rc
>> +
>> +doc/binutils.dvi: doc/binutils.texi  doc/$(am__dirstamp)
>> +    
>> $(AM_V_TEXI2DVI)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" 
>> \
>> +    MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc 
>> -I $(srcdir)/doc' \
>> +    $(TEXI2DVI) $(AM_V_texinfo) --build-dir=$(@:.dvi=.t2d) -o $@ 
>> $(AM_V_texidevnull) \
>> +    `test -f 'doc/binutils.texi' || echo '$(srcdir)/'`doc/binutils.texi
>> +
>> +doc/binutils.pdf: doc/binutils.texi  doc/$(am__dirstamp)
>> +    
>> $(AM_V_TEXI2PDF)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" 
>> \
>> +    MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc 
>> -I $(srcdir)/doc' \
>> +    $(TEXI2PDF) $(AM_V_texinfo) --build-dir=$(@:.pdf=.t2p) -o $@ 
>> $(AM_V_texidevnull) \
>> +    `test -f 'doc/binutils.texi' || echo '$(srcdir)/'`doc/binutils.texi
>> +
>> +doc/binutils.html: doc/binutils.texi  doc/$(am__dirstamp)
>> +    $(AM_V_MAKEINFO)rm -rf $(@:.html=.htp)
>> +    $(AM_V_at)if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) 
>> $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
>> +     -o $(@:.html=.htp) `test -f 'doc/binutils.texi' || echo 
>> '$(srcdir)/'`doc/binutils.texi; \
>> +    then \
>> +      rm -rf $@ && mv $(@:.html=.htp) $@; \
>> +    else \
>> +      rm -rf $(@:.html=.htp); exit 1; \
>> +    fi
>> +.dvi.ps:
>> +    
>> $(AM_V_DVIPS)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" 
>> \
>> +    $(DVIPS) $(AM_V_texinfo) -o $@ $<
>> +
>> +uninstall-dvi-am:
>> +    @$(NORMAL_UNINSTALL)
>> +    @list='$(DVIS)'; test -n "$(dvidir)" || list=; \
>> +    for p in $$list; do \
>> +      $(am__strip_dir) \
>> +      echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \
>> +      rm -f "$(DESTDIR)$(dvidir)/$$f"; \
>> +    done
>> +
>> +uninstall-html-am:
>> +    @$(NORMAL_UNINSTALL)
>> +    @list='$(HTMLS)'; test -n "$(htmldir)" || list=; \
>> +    for p in $$list; do \
>> +      $(am__strip_dir) \
>> +      echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \
>> +      rm -rf "$(DESTDIR)$(htmldir)/$$f"; \
>> +    done
>> +
>> +uninstall-info-am:
>> +    @$(PRE_UNINSTALL)
>> +    @if test -d '$(DESTDIR)$(infodir)' && $(am__can_run_installinfo); 
>> then \
>> +      list='$(INFO_DEPS)'; \
>> +      for file in $$list; do \
>> +        relfile=`echo "$$file" | sed 's|^.*/||'`; \
>> +        echo " install-info --info-dir='$(DESTDIR)$(infodir)' 
>> --remove '$(DESTDIR)$(infodir)/$$relfile'"; \
>> +        if install-info --info-dir="$(DESTDIR)$(infodir)" --remove 
>> "$(DESTDIR)$(infodir)/$$relfile"; \
>> +        then :; else test ! -f "$(DESTDIR)$(infodir)/$$relfile" || 
>> exit 1; fi; \
>> +      done; \
>> +    else :; fi
>> +    @$(NORMAL_UNINSTALL)
>> +    @list='$(INFO_DEPS)'; \
>> +    for file in $$list; do \
>> +      relfile=`echo "$$file" | sed 's|^.*/||'`; \
>> +      relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
>> +      (if test -d "$(DESTDIR)$(infodir)" && cd 
>> "$(DESTDIR)$(infodir)"; then \
>> +         echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile 
>> $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] 
>> $$relfile_i[0-9][0-9]"; \
>> +         rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] 
>> $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
>> +       else :; fi); \
>> +    done
>> +
>> +uninstall-pdf-am:
>> +    @$(NORMAL_UNINSTALL)
>> +    @list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
>> +    for p in $$list; do \
>> +      $(am__strip_dir) \
>> +      echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \
>> +      rm -f "$(DESTDIR)$(pdfdir)/$$f"; \
>> +    done
>> +
>> +uninstall-ps-am:
>> +    @$(NORMAL_UNINSTALL)
>> +    @list='$(PSS)'; test -n "$(psdir)" || list=; \
>> +    for p in $$list; do \
>> +      $(am__strip_dir) \
>> +      echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \
>> +      rm -f "$(DESTDIR)$(psdir)/$$f"; \
>> +    done
>> +
>> +dist-info: $(INFO_DEPS)
>> +    @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
>> +    list='$(INFO_DEPS)'; \
>> +    for base in $$list; do \
>> +      case $$base in \
>> +        $(srcdir)/*) base=`echo "$$base" | sed 
>> "s|^$$srcdirstrip/||"`;; \
>> +      esac; \
>> +      if test -f $$base; then d=.; else d=$(srcdir); fi; \
>> +      base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
>> +      for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] 
>> $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
>> +        if test -f $$file; then \
>> +          relfile=`expr "$$file" : "$$d/\(.*\)"`; \
>> +          test -f "$(distdir)/$$relfile" || \
>> +        cp -p $$file "$(distdir)/$$relfile"; \
>> +        else :; fi; \
>> +      done; \
>> +    done
>> +
>> +mostlyclean-aminfo:
>> +    -rm -rf doc/binutils.t2d doc/binutils.t2p
>> +
>> +clean-aminfo:
>> +    -test -z "doc/binutils.dvi doc/binutils.pdf doc/binutils.ps 
>> doc/binutils.html" \
>> +    || rm -rf doc/binutils.dvi doc/binutils.pdf doc/binutils.ps 
>> doc/binutils.html
>> +
>> +maintainer-clean-aminfo:
>> +    @list='$(INFO_DEPS)'; for i in $$list; do \
>> +      i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
>> +      echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] 
>> $$i_i[0-9][0-9]"; \
>> +      rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
>> +    done
>> +install-man1: $(man_MANS)
>> +    @$(NORMAL_INSTALL)
>> +    @list1=''; \
>> +    list2='$(man_MANS)'; \
>> +    test -n "$(man1dir)" \
>> +      && test -n "`echo $$list1$$list2`" \
>> +      || exit 0; \
>> +    echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
>> +    $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
>> +    { for i in $$list1; do echo "$$i"; done;  \
>> +    if test -n "$$list2"; then \
>> +      for i in $$list2; do echo "$$i"; done \
>> +        | sed -n '/\.1[a-z]*$$/p'; \
>> +    fi; \
>> +    } | while read p; do \
>> +      if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
>> +      echo "$$d$$p"; echo "$$p"; \
>> +    done | \
>> +    sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
>> +          -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
>> +    sed 'N;N;s,\n, ,g' | { \
>> +    list=; while read file base inst; do \
>> +      if test "$$base" = "$$inst"; then list="$$list $$file"; else \
>> +        echo " $(INSTALL_DATA) '$$file' 
>> '$(DESTDIR)$(man1dir)/$$inst'"; \
>> +        $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || 
>> exit $$?; \
>> +      fi; \
>> +    done; \
>> +    for i in $$list; do echo "$$i"; done | $(am__base_list) | \
>> +    while read files; do \
>> +      test -z "$$files" || { \
>> +        echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
>> +        $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
>> +    done; }
>> +
>> +uninstall-man1:
>> +    @$(NORMAL_UNINSTALL)
>> +    @list=''; test -n "$(man1dir)" || exit 0; \
>> +    files=`{ for i in $$list; do echo "$$i"; done; \
>> +    l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
>> +      sed -n '/\.1[a-z]*$$/p'; \
>> +    } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
>> +          -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
>> +    dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
>>   # This directory's subdirectories are mostly independent; you can cd
>>   # into them and run 'make' without going through this Makefile.
>> @@ -1281,10 +1562,10 @@ check-am: all-am
>>       $(MAKE) $(AM_MAKEFLAGS) check-DEJAGNU
>>   check: $(BUILT_SOURCES)
>>       $(MAKE) $(AM_MAKEFLAGS) check-recursive
>> -all-am: Makefile $(PROGRAMS) $(SCRIPTS) config.h
>> +all-am: Makefile $(INFO_DEPS) $(PROGRAMS) $(SCRIPTS) $(MANS) config.h
>>   installdirs: installdirs-recursive
>>   installdirs-am:
>> -    for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"; do \
>> +    for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" 
>> "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"; do \
>>         test -z "$$dir" || $(MKDIR_P) "$$dir"; \
>>       done
>>   install: $(BUILT_SOURCES)
>> @@ -1315,6 +1596,7 @@ clean-generic:
>>   distclean-generic:
>>       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
>>       -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" 
>> || rm -f $(CONFIG_CLEAN_VPATH_FILES)
>> +    -rm -f doc/$(am__dirstamp)
>>       -rm -f testsuite/$(DEPDIR)/$(am__dirstamp)
>>       -rm -f testsuite/$(am__dirstamp)
>>       -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
>> @@ -1333,9 +1615,10 @@ maintainer-clean-generic:
>>       -rm -f rcparse.c
>>       -rm -f rcparse.h
>>       -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
>> +    -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
>>   clean: clean-recursive
>> -clean-am: clean-binPROGRAMS clean-generic clean-libtool \
>> +clean-am: clean-aminfo clean-binPROGRAMS clean-generic clean-libtool \
>>       clean-noinstPROGRAMS mostlyclean-am
>>   distclean: distclean-recursive
>> @@ -1348,43 +1631,134 @@ distclean-am: clean-am distclean-DEJAGNU 
>> distclean-compile \
>>   dvi: dvi-recursive
>> -dvi-am:
>> +dvi-am: $(DVIS)
>>   html: html-recursive
>> -html-am:
>> +html-am: $(HTMLS) html-local
>>   info: info-recursive
>> -info-am:
>> +info-am: $(INFO_DEPS) info-local
>> -install-data-am:
>> +install-data-am: install-info-am install-man
>>   install-dvi: install-dvi-recursive
>> -install-dvi-am:
>> -
>> +install-dvi-am: $(DVIS)
>> +    @$(NORMAL_INSTALL)
>> +    @list='$(DVIS)'; test -n "$(dvidir)" || list=; \
>> +    if test -n "$$list"; then \
>> +      echo " $(MKDIR_P) '$(DESTDIR)$(dvidir)'"; \
>> +      $(MKDIR_P) "$(DESTDIR)$(dvidir)" || exit 1; \
>> +    fi; \
>> +    for p in $$list; do \
>> +      if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
>> +      echo "$$d$$p"; \
>> +    done | $(am__base_list) | \
>> +    while read files; do \
>> +      echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \
>> +      $(INSTALL_DATA) $$files "$(DESTDIR)$(dvidir)" || exit $$?; \
>> +    done
>>   install-exec-am: install-binPROGRAMS install-binSCRIPTS \
>>       install-exec-local
>>   install-html: install-html-recursive
>> -install-html-am:
>> -
>> +install-html-am: $(HTMLS)
>> +    @$(NORMAL_INSTALL)
>> +    @list='$(HTMLS)'; list2=; test -n "$(htmldir)" || list=; \
>> +    if test -n "$$list"; then \
>> +      echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
>> +      $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
>> +    fi; \
>> +    for p in $$list; do \
>> +      if test -f "$$p" || test -d "$$p"; then d=; else 
>> d="$(srcdir)/"; fi; \
>> +      $(am__strip_dir) \
>> +      d2=$$d$$p; \
>> +      if test -d "$$d2"; then \
>> +        echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
>> +        $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
>> +        echo " $(INSTALL_DATA) '$$d2'/* '$(DESTDIR)$(htmldir)/$$f'"; \
>> +        $(INSTALL_DATA) "$$d2"/* "$(DESTDIR)$(htmldir)/$$f" || exit 
>> $$?; \
>> +      else \
>> +        list2="$$list2 $$d2"; \
>> +      fi; \
>> +    done; \
>> +    test -z "$$list2" || { echo "$$list2" | $(am__base_list) | \
>> +    while read files; do \
>> +      echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
>> +      $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
>> +    done; }
>>   install-info: install-info-recursive
>> -install-info-am:
>> -
>> -install-man:
>> +install-info-am: $(INFO_DEPS)
>> +    @$(NORMAL_INSTALL)
>> +    @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
>> +    list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
>> +    if test -n "$$list"; then \
>> +      echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \
>> +      $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \
>> +    fi; \
>> +    for file in $$list; do \
>> +      case $$file in \
>> +        $(srcdir)/*) file=`echo "$$file" | sed 
>> "s|^$$srcdirstrip/||"`;; \
>> +      esac; \
>> +      if test -f $$file; then d=.; else d=$(srcdir); fi; \
>> +      file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
>> +      for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
>> +                   $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
>> +        if test -f $$ifile; then \
>> +          echo "$$ifile"; \
>> +        else : ; fi; \
>> +      done; \
>> +    done | $(am__base_list) | \
>> +    while read files; do \
>> +      echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(infodir)'"; \
>> +      $(INSTALL_DATA) $$files "$(DESTDIR)$(infodir)" || exit $$?; done
>> +    @$(POST_INSTALL)
>> +    @if $(am__can_run_installinfo); then \
>> +      list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
>> +      for file in $$list; do \
>> +        relfile=`echo "$$file" | sed 's|^.*/||'`; \
>> +        echo " install-info --info-dir='$(DESTDIR)$(infodir)' 
>> '$(DESTDIR)$(infodir)/$$relfile'";\
>> +        install-info --info-dir="$(DESTDIR)$(infodir)" 
>> "$(DESTDIR)$(infodir)/$$relfile" || :;\
>> +      done; \
>> +    else : ; fi
>> +install-man: install-man1
>>   install-pdf: install-pdf-recursive
>> -install-pdf-am:
>> -
>> +install-pdf-am: $(PDFS)
>> +    @$(NORMAL_INSTALL)
>> +    @list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
>> +    if test -n "$$list"; then \
>> +      echo " $(MKDIR_P) '$(DESTDIR)$(pdfdir)'"; \
>> +      $(MKDIR_P) "$(DESTDIR)$(pdfdir)" || exit 1; \
>> +    fi; \
>> +    for p in $$list; do \
>> +      if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
>> +      echo "$$d$$p"; \
>> +    done | $(am__base_list) | \
>> +    while read files; do \
>> +      echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pdfdir)'"; \
>> +      $(INSTALL_DATA) $$files "$(DESTDIR)$(pdfdir)" || exit $$?; done
>>   install-ps: install-ps-recursive
>> -install-ps-am:
>> -
>> +install-ps-am: $(PSS)
>> +    @$(NORMAL_INSTALL)
>> +    @list='$(PSS)'; test -n "$(psdir)" || list=; \
>> +    if test -n "$$list"; then \
>> +      echo " $(MKDIR_P) '$(DESTDIR)$(psdir)'"; \
>> +      $(MKDIR_P) "$(DESTDIR)$(psdir)" || exit 1; \
>> +    fi; \
>> +    for p in $$list; do \
>> +      if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
>> +      echo "$$d$$p"; \
>> +    done | $(am__base_list) | \
>> +    while read files; do \
>> +      echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(psdir)'"; \
>> +      $(INSTALL_DATA) $$files "$(DESTDIR)$(psdir)" || exit $$?; done
>>   installcheck-am: installcheck-local
>>   maintainer-clean: maintainer-clean-recursive
>> @@ -1392,44 +1766,52 @@ maintainer-clean: maintainer-clean-recursive
>>       -rm -rf $(top_srcdir)/autom4te.cache
>>       -rm -rf ./$(DEPDIR) testsuite/$(DEPDIR)
>>       -rm -f Makefile
>> -maintainer-clean-am: distclean-am maintainer-clean-generic
>> +maintainer-clean-am: distclean-am maintainer-clean-aminfo \
>> +    maintainer-clean-generic
>>   mostlyclean: mostlyclean-recursive
>> -mostlyclean-am: mostlyclean-compile mostlyclean-generic \
>> -    mostlyclean-libtool mostlyclean-local
>> +mostlyclean-am: mostlyclean-aminfo mostlyclean-compile \
>> +    mostlyclean-generic mostlyclean-libtool mostlyclean-local
>>   pdf: pdf-recursive
>> -pdf-am:
>> +pdf-am: $(PDFS)
>>   ps: ps-recursive
>> -ps-am:
>> +ps-am: $(PSS)
>> +
>> +uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \
>> +    uninstall-dvi-am uninstall-html-am uninstall-info-am \
>> +    uninstall-man uninstall-pdf-am uninstall-ps-am
>> -uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS
>> +uninstall-man: uninstall-man1
>>   .MAKE: $(am__recursive_targets) all check check-am install install-am \
>>       install-strip
>>   .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
>> -    am--refresh check check-DEJAGNU check-am clean \
>> +    am--refresh check check-DEJAGNU check-am clean clean-aminfo \
>>       clean-binPROGRAMS clean-cscope clean-generic clean-libtool \
>>       clean-noinstPROGRAMS cscope cscopelist-am ctags ctags-am \
>> -    distclean distclean-DEJAGNU distclean-compile \
>> +    dist-info distclean distclean-DEJAGNU distclean-compile \
>>       distclean-generic distclean-hdr distclean-libtool \
>> -    distclean-tags dvi dvi-am html html-am info info-am install \
>> -    install-am install-binPROGRAMS install-binSCRIPTS install-data \
>> -    install-data-am install-dvi install-dvi-am install-exec \
>> -    install-exec-am install-exec-local install-html \
>> -    install-html-am install-info install-info-am install-man \
>> -    install-pdf install-pdf-am install-ps install-ps-am \
>> -    install-strip installcheck installcheck-am installcheck-local \
>> -    installdirs installdirs-am maintainer-clean \
>> -    maintainer-clean-generic mostlyclean mostlyclean-compile \
>> -    mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \
>> -    pdf-am ps ps-am tags tags-am uninstall uninstall-am \
>> -    uninstall-binPROGRAMS uninstall-binSCRIPTS
>> +    distclean-tags dvi dvi-am html html-am html-local info info-am \
>> +    info-local install install-am install-binPROGRAMS \
>> +    install-binSCRIPTS install-data install-data-am install-dvi \
>> +    install-dvi-am install-exec install-exec-am install-exec-local \
>> +    install-html install-html-am install-info install-info-am \
>> +    install-man install-man1 install-pdf install-pdf-am install-ps \
>> +    install-ps-am install-strip installcheck installcheck-am \
>> +    installcheck-local installdirs installdirs-am maintainer-clean \
>> +    maintainer-clean-aminfo maintainer-clean-generic mostlyclean \
>> +    mostlyclean-aminfo mostlyclean-compile mostlyclean-generic \
>> +    mostlyclean-libtool mostlyclean-local pdf pdf-am ps ps-am tags \
>> +    tags-am uninstall uninstall-am uninstall-binPROGRAMS \
>> +    uninstall-binSCRIPTS uninstall-dvi-am uninstall-html-am \
>> +    uninstall-info-am uninstall-man uninstall-man1 \
>> +    uninstall-pdf-am uninstall-ps-am
>>   .PRECIOUS: Makefile
>> @@ -1630,6 +2012,132 @@ install-exec-local: install-binPROGRAMS 
>> $(bin_PROGRAMS) $(noinst_PROGRAMS)
>>         fi; \
>>       done
>> +# Man page generation from texinfo
>> +doc/addr2line.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) 
>> > addr2line.pod
>> +    $(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f addr2line.pod
>> +
>> +doc/ar.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
>> +    $(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ 
>> && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f ar.pod
>> +
>> +doc/dlltool.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > 
>> dlltool.pod
>> +    $(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f dlltool.pod
>> +
>> +doc/nm.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
>> +    $(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ 
>> && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f nm.pod
>> +
>> +doc/objcopy.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > 
>> objcopy.pod
>> +    $(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f objcopy.pod
>> +
>> +doc/objdump.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > 
>> objdump.pod
>> +    $(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f objdump.pod
>> +
>> +doc/ranlib.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > 
>> ranlib.pod
>> +    $(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f ranlib.pod
>> +
>> +doc/readelf.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > 
>> readelf.pod
>> +    $(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f readelf.pod
>> +
>> +doc/size.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > 
>> size.pod
>> +    $(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f size.pod
>> +
>> +doc/strings.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > 
>> strings.pod
>> +    $(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f strings.pod
>> +
>> +doc/strip.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > 
>> strip.pod
>> +    $(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f strip.pod
>> +
>> +doc/elfedit.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > 
>> elfedit.pod
>> +    $(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f elfedit.pod
>> +
>> +doc/windres.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > 
>> windres.pod
>> +    $(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f windres.pod
>> +
>> +doc/windmc.1:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > 
>> windmc.pod
>> +    $(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f windmc.pod
>> +
>> +doc/cxxfilt.man:    $(binutils_TEXI)
>> +    $(AM_V_GEN)touch $@
>> +    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > 
>> $(DEMANGLER_NAME).pod
>> +    $(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n 
>> .na/d' > $@.T$$$$ && \
>> +        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> +    $(AM_V_at)rm -f $(DEMANGLER_NAME).pod
>> +
>> +doc/$(DEMANGLER_NAME).1: doc/cxxfilt.man Makefile
>> +    $(AM_V_GEN)if test -f doc/cxxfilt.man; then \
>> +      man=doc/cxxfilt.man; \
>> +    else \
>> +      man=$(srcdir)/doc/cxxfilt.man; \
>> +    fi; \
>> +    sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \
>> +        -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \
>> +        > doc/$(DEMANGLER_NAME).1
>> +
>> +html-local: doc/binutils/index.html
>> +binutils/index.html: doc/binutils.texi $(binutils_TEXINFOS)
>> +    $(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) 
>> $(MAKEINFOFLAGS) \
>> +      --split=node -I$(srcdir) $(srcdir)/doc/binutils.texi
>> +
>> +# Maintenance
>> +
>> +# We need it for the taz target in ../Makefile.in.
>> +info-local: $(MANS)
>> +
>>   # Tell versions [3.59,3.63) of GNU make to not export all variables.
>>   # Otherwise a system limit (for SysV at least) may be exceeded.
>>   .NOEXPORT:
>> diff --git a/binutils/configure.ac b/binutils/configure.ac
>> index b0677ba5f20e..62696ff2a225 100644
>> --- a/binutils/configure.ac
>> +++ b/binutils/configure.ac
>> @@ -535,7 +535,7 @@ AC_SUBST(docdir)
>>   AC_SUBST(htmldir)
>>   AC_SUBST(pdfdir)
>> -AC_CONFIG_FILES(Makefile doc/Makefile po/Makefile.in:po/Make-in)
>> +AC_CONFIG_FILES(Makefile po/Makefile.in:po/Make-in)
>>   AC_OUTPUT
>>   GNU_MAKE_JOBSERVER
>> diff --git a/binutils/doc/Makefile.in b/binutils/doc/Makefile.in
>> deleted file mode 100644
>> index d42cdd87929b..000000000000
>> --- a/binutils/doc/Makefile.in
>> +++ /dev/null
>> @@ -1,1045 +0,0 @@
>> -# Makefile.in generated by automake 1.15.1 from Makefile.am.
>> -# @configure_input@
>> -
>> -# Copyright (C) 1994-2017 Free Software Foundation, Inc.
>> -
>> -# This Makefile.in is free software; the Free Software Foundation
>> -# gives unlimited permission to copy and/or distribute it,
>> -# with or without modifications, as long as this notice is preserved.
>> -
>> -# This program is distributed in the hope that it will be useful,
>> -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
>> -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
>> -# PARTICULAR PURPOSE.
>> -
>> -@SET_MAKE@
>> -
>> -#
>> -#   Copyright (C) 2012-2021 Free Software Foundation, Inc.
>> -#
>> -# This file is free software; you can redistribute it and/or modify
>> -# it under the terms of the GNU General Public License as published by
>> -# the Free Software Foundation; either version 3 of the License, or
>> -# (at your option) any later version.
>> -#
>> -# This program is distributed in the hope that it will be useful,
>> -# but WITHOUT ANY WARRANTY; without even the implied warranty of
>> -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>> -# GNU General Public License for more details.
>> -#
>> -# You should have received a copy of the GNU General Public License
>> -# along with this program; see the file COPYING3.  If not see
>> -# <http://www.gnu.org/licenses/>.
>> -#
>> -VPATH = @srcdir@
>> -am__is_gnu_make = { \
>> -  if test -z '$(MAKELEVEL)'; then \
>> -    false; \
>> -  elif test -n '$(MAKE_HOST)'; then \
>> -    true; \
>> -  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
>> -    true; \
>> -  else \
>> -    false; \
>> -  fi; \
>> -}
>> -am__make_running_with_option = \
>> -  case $${target_option-} in \
>> -      ?) ;; \
>> -      *) echo "am__make_running_with_option: internal error: invalid" \
>> -              "target option '$${target_option-}' specified" >&2; \
>> -         exit 1;; \
>> -  esac; \
>> -  has_opt=no; \
>> -  sane_makeflags=$$MAKEFLAGS; \
>> -  if $(am__is_gnu_make); then \
>> -    sane_makeflags=$$MFLAGS; \
>> -  else \
>> -    case $$MAKEFLAGS in \
>> -      *\\[\ \    ]*) \
>> -        bs=\\; \
>> -        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
>> -          | sed "s/$$bs$$bs[$$bs $$bs    ]*//g"`;; \
>> -    esac; \
>> -  fi; \
>> -  skip_next=no; \
>> -  strip_trailopt () \
>> -  { \
>> -    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
>> -  }; \
>> -  for flg in $$sane_makeflags; do \
>> -    test $$skip_next = yes && { skip_next=no; continue; }; \
>> -    case $$flg in \
>> -      *=*|--*) continue;; \
>> -        -*I) strip_trailopt 'I'; skip_next=yes;; \
>> -      -*I?*) strip_trailopt 'I';; \
>> -        -*O) strip_trailopt 'O'; skip_next=yes;; \
>> -      -*O?*) strip_trailopt 'O';; \
>> -        -*l) strip_trailopt 'l'; skip_next=yes;; \
>> -      -*l?*) strip_trailopt 'l';; \
>> -      -[dEDm]) skip_next=yes;; \
>> -      -[JT]) skip_next=yes;; \
>> -    esac; \
>> -    case $$flg in \
>> -      *$$target_option*) has_opt=yes; break;; \
>> -    esac; \
>> -  done; \
>> -  test $$has_opt = yes
>> -am__make_dryrun = (target_option=n; $(am__make_running_with_option))
>> -am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
>> -pkgdatadir = $(datadir)/@PACKAGE@
>> -pkgincludedir = $(includedir)/@PACKAGE@
>> -pkglibdir = $(libdir)/@PACKAGE@
>> -pkglibexecdir = $(libexecdir)/@PACKAGE@
>> -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
>> -install_sh_DATA = $(install_sh) -c -m 644
>> -install_sh_PROGRAM = $(install_sh) -c
>> -install_sh_SCRIPT = $(install_sh) -c
>> -INSTALL_HEADER = $(INSTALL_DATA)
>> -transform = $(program_transform_name)
>> -NORMAL_INSTALL = :
>> -PRE_INSTALL = :
>> -POST_INSTALL = :
>> -NORMAL_UNINSTALL = :
>> -PRE_UNINSTALL = :
>> -POST_UNINSTALL = :
>> -build_triplet = @build@
>> -host_triplet = @host@
>> -target_triplet = @target@
>> -subdir = doc
>> -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
>> -am__aclocal_m4_deps = $(top_srcdir)/../bfd/acinclude.m4 \
>> -    $(top_srcdir)/../bfd/warning.m4 \
>> -    $(top_srcdir)/../config/depstand.m4 \
>> -    $(top_srcdir)/../config/enable.m4 \
>> -    $(top_srcdir)/../config/gettext-sister.m4 \
>> -    $(top_srcdir)/../config/iconv.m4 \
>> -    $(top_srcdir)/../config/jobserver.m4 \
>> -    $(top_srcdir)/../config/largefile.m4 \
>> -    $(top_srcdir)/../config/lcmessage.m4 \
>> -    $(top_srcdir)/../config/lead-dot.m4 \
>> -    $(top_srcdir)/../config/lib-ld.m4 \
>> -    $(top_srcdir)/../config/lib-link.m4 \
>> -    $(top_srcdir)/../config/lib-prefix.m4 \
>> -    $(top_srcdir)/../config/nls.m4 \
>> -    $(top_srcdir)/../config/override.m4 \
>> -    $(top_srcdir)/../config/pkg.m4 \
>> -    $(top_srcdir)/../config/plugins.m4 \
>> -    $(top_srcdir)/../config/po.m4 \
>> -    $(top_srcdir)/../config/progtest.m4 \
>> -    $(top_srcdir)/../config/zlib.m4 $(top_srcdir)/../libtool.m4 \
>> -    $(top_srcdir)/../ltoptions.m4 $(top_srcdir)/../ltsugar.m4 \
>> -    $(top_srcdir)/../ltversion.m4 $(top_srcdir)/../lt~obsolete.m4 \
>> -    $(top_srcdir)/../bfd/version.m4 \
>> -    $(top_srcdir)/../config/debuginfod.m4 \
>> -    $(top_srcdir)/configure.ac
>> -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
>> -    $(ACLOCAL_M4)
>> -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
>> -mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
>> -CONFIG_HEADER = $(top_builddir)/config.h
>> -CONFIG_CLEAN_FILES =
>> -CONFIG_CLEAN_VPATH_FILES =
>> -AM_V_P = $(am__v_P_@AM_V@)
>> -am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
>> -am__v_P_0 = false
>> -am__v_P_1 = :
>> -AM_V_GEN = $(am__v_GEN_@AM_V@)
>> -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
>> -am__v_GEN_0 = @echo "  GEN     " $@;
>> -am__v_GEN_1 =
>> -AM_V_at = $(am__v_at_@AM_V@)
>> -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
>> -am__v_at_0 = @
>> -am__v_at_1 =
>> -SOURCES =
>> -DIST_SOURCES =
>> -AM_V_DVIPS = $(am__v_DVIPS_@AM_V@)
>> -am__v_DVIPS_ = $(am__v_DVIPS_@AM_DEFAULT_V@)
>> -am__v_DVIPS_0 = @echo "  DVIPS   " $@;
>> -am__v_DVIPS_1 =
>> -AM_V_MAKEINFO = $(am__v_MAKEINFO_@AM_V@)
>> -am__v_MAKEINFO_ = $(am__v_MAKEINFO_@AM_DEFAULT_V@)
>> -am__v_MAKEINFO_0 = @echo "  MAKEINFO" $@;
>> -am__v_MAKEINFO_1 =
>> -AM_V_INFOHTML = $(am__v_INFOHTML_@AM_V@)
>> -am__v_INFOHTML_ = $(am__v_INFOHTML_@AM_DEFAULT_V@)
>> -am__v_INFOHTML_0 = @echo "  INFOHTML" $@;
>> -am__v_INFOHTML_1 =
>> -AM_V_TEXI2DVI = $(am__v_TEXI2DVI_@AM_V@)
>> -am__v_TEXI2DVI_ = $(am__v_TEXI2DVI_@AM_DEFAULT_V@)
>> -am__v_TEXI2DVI_0 = @echo "  TEXI2DVI" $@;
>> -am__v_TEXI2DVI_1 =
>> -AM_V_TEXI2PDF = $(am__v_TEXI2PDF_@AM_V@)
>> -am__v_TEXI2PDF_ = $(am__v_TEXI2PDF_@AM_DEFAULT_V@)
>> -am__v_TEXI2PDF_0 = @echo "  TEXI2PDF" $@;
>> -am__v_TEXI2PDF_1 =
>> -AM_V_texinfo = $(am__v_texinfo_@AM_V@)
>> -am__v_texinfo_ = $(am__v_texinfo_@AM_DEFAULT_V@)
>> -am__v_texinfo_0 = -q
>> -am__v_texinfo_1 =
>> -AM_V_texidevnull = $(am__v_texidevnull_@AM_V@)
>> -am__v_texidevnull_ = $(am__v_texidevnull_@AM_DEFAULT_V@)
>> -am__v_texidevnull_0 = > /dev/null
>> -am__v_texidevnull_1 =
>> -INFO_DEPS = binutils.info
>> -am__TEXINFO_TEX_DIR = $(srcdir)
>> -DVIS = binutils.dvi
>> -PDFS = binutils.pdf
>> -PSS = binutils.ps
>> -HTMLS = binutils.html
>> -TEXINFOS = binutils.texi
>> -TEXI2PDF = $(TEXI2DVI) --pdf --batch
>> -MAKEINFOHTML = $(MAKEINFO) --html
>> -AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS)
>> -DVIPS = dvips
>> -am__can_run_installinfo = \
>> -  case $$AM_UPDATE_INFO_DIR in \
>> -    n|no|NO) false;; \
>> -    *) (install-info --version) >/dev/null 2>&1;; \
>> -  esac
>> -am__installdirs = "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"
>> -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
>> -am__vpath_adj = case $$p in \
>> -    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
>> -    *) f=$$p;; \
>> -  esac;
>> -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
>> -am__install_max = 40
>> -am__nobase_strip_setup = \
>> -  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
>> -am__nobase_strip = \
>> -  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
>> -am__nobase_list = $(am__nobase_strip_setup); \
>> -  for p in $$list; do echo "$$p $$p"; done | \
>> -  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( 
>> .*\)/[^/]*$$,\1,' | \
>> -  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
>> -    if (++n[$$2] == $(am__install_max)) \
>> -      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
>> -    END { for (dir in files) print dir, files[dir] }'
>> -am__base_list = \
>> -  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
>> -  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
>> -am__uninstall_files_from_dir = { \
>> -  test -z "$$files" \
>> -    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; 
>> } \
>> -    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
>> -         $(am__cd) "$$dir" && rm -f $$files; }; \
>> -  }
>> -man1dir = $(mandir)/man1
>> -NROFF = nroff
>> -MANS = $(man_MANS)
>> -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
>> -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/../mkinstalldirs
>> -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
>> -ACLOCAL = @ACLOCAL@
>> -AMTAR = @AMTAR@
>> -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
>> -AR = @AR@
>> -AUTOCONF = @AUTOCONF@
>> -AUTOHEADER = @AUTOHEADER@
>> -AUTOMAKE = @AUTOMAKE@
>> -AWK = @AWK@
>> -BUILD_DLLTOOL = @BUILD_DLLTOOL@
>> -BUILD_DLLWRAP = @BUILD_DLLWRAP@
>> -BUILD_INSTALL_MISC = @BUILD_INSTALL_MISC@
>> -BUILD_MISC = @BUILD_MISC@
>> -BUILD_SRCONV = @BUILD_SRCONV@
>> -BUILD_WINDMC = @BUILD_WINDMC@
>> -BUILD_WINDRES = @BUILD_WINDRES@
>> -CATALOGS = @CATALOGS@
>> -CATOBJEXT = @CATOBJEXT@
>> -CC = @CC@
>> -CCDEPMODE = @CCDEPMODE@
>> -CC_FOR_BUILD = @CC_FOR_BUILD@
>> -CFLAGS = @CFLAGS@
>> -CPP = @CPP@
>> -CPPFLAGS = @CPPFLAGS@
>> -CYGPATH_W = @CYGPATH_W@
>> -DATADIRNAME = @DATADIRNAME@
>> -DEBUGINFOD_CFLAGS = @DEBUGINFOD_CFLAGS@
>> -DEBUGINFOD_LIBS = @DEBUGINFOD_LIBS@
>> -DEFS = @DEFS@
>> -DEMANGLER_NAME = @DEMANGLER_NAME@
>> -DEPDIR = @DEPDIR@
>> -DLLTOOL_DEFS = @DLLTOOL_DEFS@
>> -DSYMUTIL = @DSYMUTIL@
>> -DUMPBIN = @DUMPBIN@
>> -ECHO_C = @ECHO_C@
>> -ECHO_N = @ECHO_N@
>> -ECHO_T = @ECHO_T@
>> -EGREP = @EGREP@
>> -EMULATION = @EMULATION@
>> -EMULATION_VECTOR = @EMULATION_VECTOR@
>> -EXEEXT = @EXEEXT@
>> -EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@
>> -FGREP = @FGREP@
>> -GENCAT = @GENCAT@
>> -GMSGFMT = @GMSGFMT@
>> -GREP = @GREP@
>> -HDEFINES = @HDEFINES@
>> -INCINTL = @INCINTL@
>> -INSTALL = @INSTALL@
>> -INSTALL_DATA = @INSTALL_DATA@
>> -INSTALL_PROGRAM = @INSTALL_PROGRAM@
>> -INSTALL_SCRIPT = @INSTALL_SCRIPT@
>> -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
>> -INSTOBJEXT = @INSTOBJEXT@
>> -LARGEFILE_CPPFLAGS = @LARGEFILE_CPPFLAGS@
>> -LD = @LD@
>> -LDFLAGS = @LDFLAGS@
>> -LEX = @LEX@
>> -LEXLIB = @LEXLIB@
>> -LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
>> -LIBICONV = @LIBICONV@
>> -LIBINTL = @LIBINTL@
>> -LIBINTL_DEP = @LIBINTL_DEP@
>> -LIBOBJS = @LIBOBJS@
>> -LIBS = @LIBS@
>> -LIBTOOL = @LIBTOOL@
>> -LIPO = @LIPO@
>> -LN_S = @LN_S@
>> -LTLIBICONV = @LTLIBICONV@
>> -LTLIBOBJS = @LTLIBOBJS@
>> -MAINT = @MAINT@
>> -MAKEINFO = @MAKEINFO@
>> -MKDIR_P = @MKDIR_P@
>> -MKINSTALLDIRS = @MKINSTALLDIRS@
>> -MSGFMT = @MSGFMT@
>> -MSGMERGE = @MSGMERGE@
>> -NM = @NM@
>> -NMEDIT = @NMEDIT@
>> -NO_WERROR = @NO_WERROR@
>> -OBJDUMP = @OBJDUMP@
>> -OBJDUMP_DEFS = @OBJDUMP_DEFS@
>> -OBJDUMP_PRIVATE_OFILES = @OBJDUMP_PRIVATE_OFILES@
>> -OBJEXT = @OBJEXT@
>> -OTOOL = @OTOOL@
>> -OTOOL64 = @OTOOL64@
>> -PACKAGE = @PACKAGE@
>> -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
>> -PACKAGE_NAME = @PACKAGE_NAME@
>> -PACKAGE_STRING = @PACKAGE_STRING@
>> -PACKAGE_TARNAME = @PACKAGE_TARNAME@
>> -PACKAGE_URL = @PACKAGE_URL@
>> -PACKAGE_VERSION = @PACKAGE_VERSION@
>> -PATH_SEPARATOR = @PATH_SEPARATOR@
>> -PKG_CONFIG = @PKG_CONFIG@
>> -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
>> -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
>> -POSUB = @POSUB@
>> -RANLIB = @RANLIB@
>> -SED = @SED@
>> -SET_MAKE = @SET_MAKE@
>> -SHELL = @SHELL@
>> -STRIP = @STRIP@
>> -USE_NLS = @USE_NLS@
>> -VERSION = @VERSION@
>> -WARN_CFLAGS = @WARN_CFLAGS@
>> -WARN_CFLAGS_FOR_BUILD = @WARN_CFLAGS_FOR_BUILD@
>> -WARN_WRITE_STRINGS = @WARN_WRITE_STRINGS@
>> -XGETTEXT = @XGETTEXT@
>> -YACC = @YACC@
>> -YFLAGS = @YFLAGS@
>> -abs_builddir = @abs_builddir@
>> -abs_srcdir = @abs_srcdir@
>> -abs_top_builddir = @abs_top_builddir@
>> -abs_top_srcdir = @abs_top_srcdir@
>> -ac_ct_CC = @ac_ct_CC@
>> -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
>> -am__include = @am__include@
>> -am__leading_dot = @am__leading_dot@
>> -am__quote = @am__quote@
>> -am__tar = @am__tar@
>> -am__untar = @am__untar@
>> -bindir = @bindir@
>> -build = @build@
>> -build_alias = @build_alias@
>> -build_cpu = @build_cpu@
>> -build_os = @build_os@
>> -build_vendor = @build_vendor@
>> -builddir = @builddir@
>> -datadir = @datadir@
>> -datarootdir = @datarootdir@
>> -docdir = @docdir@
>> -dvidir = @dvidir@
>> -exec_prefix = @exec_prefix@
>> -host = @host@
>> -host_alias = @host_alias@
>> -host_cpu = @host_cpu@
>> -host_os = @host_os@
>> -host_vendor = @host_vendor@
>> -htmldir = @htmldir@
>> -includedir = @includedir@
>> -infodir = @infodir@
>> -install_sh = @install_sh@
>> -libdir = @libdir@
>> -libexecdir = @libexecdir@
>> -localedir = @localedir@
>> -localstatedir = @localstatedir@
>> -mandir = @mandir@
>> -mkdir_p = @mkdir_p@
>> -oldincludedir = @oldincludedir@
>> -pdfdir = @pdfdir@
>> -prefix = @prefix@
>> -program_transform_name = @program_transform_name@
>> -psdir = @psdir@
>> -sbindir = @sbindir@
>> -sharedstatedir = @sharedstatedir@
>> -srcdir = @srcdir@
>> -sysconfdir = @sysconfdir@
>> -target = @target@
>> -target_alias = @target_alias@
>> -target_cpu = @target_cpu@
>> -target_os = @target_os@
>> -target_vendor = @target_vendor@
>> -top_build_prefix = @top_build_prefix@
>> -top_builddir = @top_builddir@
>> -top_srcdir = @top_srcdir@
>> -zlibdir = @zlibdir@
>> -zlibinc = @zlibinc@
>> -AUTOMAKE_OPTIONS = info-in-builddir no-texinfo.tex foreign
>> -
>> -# What version of the manual you want; "all" includes everything
>> -CONFIG = all
>> -
>> -# Options to extract the man page from as.texinfo
>> -MANCONF = -Dman
>> -TEXI2POD = perl $(top_srcdir)/../etc/texi2pod.pl $(AM_MAKEINFOFLAGS)
>> -POD2MAN = pod2man --center="GNU Development Tools" \
>> -     --release="binutils-$(VERSION)" --section=1
>> -
>> -
>> -# List of man pages generated from binutils.texi
>> -man_MANS = \
>> -    addr2line.1 \
>> -    ar.1 \
>> -    dlltool.1 \
>> -    nm.1 \
>> -    objcopy.1 \
>> -    objdump.1 \
>> -    ranlib.1 \
>> -    readelf.1 \
>> -    size.1 \
>> -    strings.1 \
>> -    strip.1 \
>> -    elfedit.1 \
>> -    windres.1 \
>> -    windmc.1 \
>> -    $(DEMANGLER_NAME).1
>> -
>> -info_TEXINFOS = binutils.texi
>> -binutils_TEXI = $(srcdir)/binutils.texi
>> -AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
>> -           -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc \
>> -           --no-split
>> -
>> -TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
>> -            -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc
>> -
>> -MAINTAINERCLEANFILES = $(man_MANS) binutils.info cxxfilt.man
>> -all: all-am
>> -
>> -.SUFFIXES:
>> -.SUFFIXES: .dvi .ps
>> -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  
>> $(am__configure_deps)
>> -    @for dep in $?; do \
>> -      case '$(am__configure_deps)' in \
>> -        *$$dep*) \
>> -          ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 
>> ) \
>> -            && { if test -f $@; then exit 0; else break; fi; }; \
>> -          exit 1;; \
>> -      esac; \
>> -    done; \
>> -    echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \
>> -    $(am__cd) $(top_srcdir) && \
>> -      $(AUTOMAKE) --foreign doc/Makefile
>> -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
>> -    @case '$?' in \
>> -      *config.status*) \
>> -        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
>> -      *) \
>> -        echo ' cd $(top_builddir) && $(SHELL) ./config.status 
>> $(subdir)/$@ $(am__depfiles_maybe)'; \
>> -        cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ 
>> $(am__depfiles_maybe);; \
>> -    esac;
>> -
>> -$(top_builddir)/config.status: $(top_srcdir)/configure 
>> $(CONFIG_STATUS_DEPENDENCIES)
>> -    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
>> -
>> -$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
>> -    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
>> -$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
>> -    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
>> -$(am__aclocal_m4_deps):
>> -
>> -mostlyclean-libtool:
>> -    -rm -f *.lo
>> -
>> -clean-libtool:
>> -    -rm -rf .libs _libs
>> -
>> -binutils.info: binutils.texi
>> -    $(AM_V_MAKEINFO)restore=: && backupdir="$(am__leading_dot)am$$$$" 
>> && \
>> -    rm -rf $$backupdir && mkdir $$backupdir && \
>> -    if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
>> -      for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] 
>> $(@:.info=).i[0-9][0-9]; do \
>> -        if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; 
>> fi; \
>> -      done; \
>> -    else :; fi && \
>> -    if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
>> -     -o $@ `test -f 'binutils.texi' || echo 
>> '$(srcdir)/'`binutils.texi; \
>> -    then \
>> -      rc=0; \
>> -    else \
>> -      rc=$$?; \
>> -      $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
>> -    fi; \
>> -    rm -rf $$backupdir; exit $$rc
>> -
>> -binutils.dvi: binutils.texi
>> -    
>> $(AM_V_TEXI2DVI)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" 
>> \
>> -    MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I 
>> $(srcdir)' \
>> -    $(TEXI2DVI) $(AM_V_texinfo) --build-dir=$(@:.dvi=.t2d) -o $@ 
>> $(AM_V_texidevnull) \
>> -    `test -f 'binutils.texi' || echo '$(srcdir)/'`binutils.texi
>> -
>> -binutils.pdf: binutils.texi
>> -    
>> $(AM_V_TEXI2PDF)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" 
>> \
>> -    MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I 
>> $(srcdir)' \
>> -    $(TEXI2PDF) $(AM_V_texinfo) --build-dir=$(@:.pdf=.t2p) -o $@ 
>> $(AM_V_texidevnull) \
>> -    `test -f 'binutils.texi' || echo '$(srcdir)/'`binutils.texi
>> -
>> -binutils.html: binutils.texi
>> -    $(AM_V_MAKEINFO)rm -rf $(@:.html=.htp)
>> -    $(AM_V_at)if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) 
>> $(MAKEINFOFLAGS) -I $(srcdir) \
>> -     -o $(@:.html=.htp) `test -f 'binutils.texi' || echo 
>> '$(srcdir)/'`binutils.texi; \
>> -    then \
>> -      rm -rf $@ && mv $(@:.html=.htp) $@; \
>> -    else \
>> -      rm -rf $(@:.html=.htp); exit 1; \
>> -    fi
>> -.dvi.ps:
>> -    
>> $(AM_V_DVIPS)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" 
>> \
>> -    $(DVIPS) $(AM_V_texinfo) -o $@ $<
>> -
>> -uninstall-dvi-am:
>> -    @$(NORMAL_UNINSTALL)
>> -    @list='$(DVIS)'; test -n "$(dvidir)" || list=; \
>> -    for p in $$list; do \
>> -      $(am__strip_dir) \
>> -      echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \
>> -      rm -f "$(DESTDIR)$(dvidir)/$$f"; \
>> -    done
>> -
>> -uninstall-html-am:
>> -    @$(NORMAL_UNINSTALL)
>> -    @list='$(HTMLS)'; test -n "$(htmldir)" || list=; \
>> -    for p in $$list; do \
>> -      $(am__strip_dir) \
>> -      echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \
>> -      rm -rf "$(DESTDIR)$(htmldir)/$$f"; \
>> -    done
>> -
>> -uninstall-info-am:
>> -    @$(PRE_UNINSTALL)
>> -    @if test -d '$(DESTDIR)$(infodir)' && $(am__can_run_installinfo); 
>> then \
>> -      list='$(INFO_DEPS)'; \
>> -      for file in $$list; do \
>> -        relfile=`echo "$$file" | sed 's|^.*/||'`; \
>> -        echo " install-info --info-dir='$(DESTDIR)$(infodir)' 
>> --remove '$(DESTDIR)$(infodir)/$$relfile'"; \
>> -        if install-info --info-dir="$(DESTDIR)$(infodir)" --remove 
>> "$(DESTDIR)$(infodir)/$$relfile"; \
>> -        then :; else test ! -f "$(DESTDIR)$(infodir)/$$relfile" || 
>> exit 1; fi; \
>> -      done; \
>> -    else :; fi
>> -    @$(NORMAL_UNINSTALL)
>> -    @list='$(INFO_DEPS)'; \
>> -    for file in $$list; do \
>> -      relfile=`echo "$$file" | sed 's|^.*/||'`; \
>> -      relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
>> -      (if test -d "$(DESTDIR)$(infodir)" && cd 
>> "$(DESTDIR)$(infodir)"; then \
>> -         echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile 
>> $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] 
>> $$relfile_i[0-9][0-9]"; \
>> -         rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] 
>> $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
>> -       else :; fi); \
>> -    done
>> -
>> -uninstall-pdf-am:
>> -    @$(NORMAL_UNINSTALL)
>> -    @list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
>> -    for p in $$list; do \
>> -      $(am__strip_dir) \
>> -      echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \
>> -      rm -f "$(DESTDIR)$(pdfdir)/$$f"; \
>> -    done
>> -
>> -uninstall-ps-am:
>> -    @$(NORMAL_UNINSTALL)
>> -    @list='$(PSS)'; test -n "$(psdir)" || list=; \
>> -    for p in $$list; do \
>> -      $(am__strip_dir) \
>> -      echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \
>> -      rm -f "$(DESTDIR)$(psdir)/$$f"; \
>> -    done
>> -
>> -dist-info: $(INFO_DEPS)
>> -    @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
>> -    list='$(INFO_DEPS)'; \
>> -    for base in $$list; do \
>> -      case $$base in \
>> -        $(srcdir)/*) base=`echo "$$base" | sed 
>> "s|^$$srcdirstrip/||"`;; \
>> -      esac; \
>> -      if test -f $$base; then d=.; else d=$(srcdir); fi; \
>> -      base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
>> -      for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] 
>> $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
>> -        if test -f $$file; then \
>> -          relfile=`expr "$$file" : "$$d/\(.*\)"`; \
>> -          test -f "$(distdir)/$$relfile" || \
>> -        cp -p $$file "$(distdir)/$$relfile"; \
>> -        else :; fi; \
>> -      done; \
>> -    done
>> -
>> -mostlyclean-aminfo:
>> -    -rm -rf binutils.t2d binutils.t2p
>> -
>> -clean-aminfo:
>> -    -test -z "binutils.dvi binutils.pdf binutils.ps binutils.html" \
>> -    || rm -rf binutils.dvi binutils.pdf binutils.ps binutils.html
>> -
>> -maintainer-clean-aminfo:
>> -    @list='$(INFO_DEPS)'; for i in $$list; do \
>> -      i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
>> -      echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] 
>> $$i_i[0-9][0-9]"; \
>> -      rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
>> -    done
>> -install-man1: $(man_MANS)
>> -    @$(NORMAL_INSTALL)
>> -    @list1=''; \
>> -    list2='$(man_MANS)'; \
>> -    test -n "$(man1dir)" \
>> -      && test -n "`echo $$list1$$list2`" \
>> -      || exit 0; \
>> -    echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
>> -    $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
>> -    { for i in $$list1; do echo "$$i"; done;  \
>> -    if test -n "$$list2"; then \
>> -      for i in $$list2; do echo "$$i"; done \
>> -        | sed -n '/\.1[a-z]*$$/p'; \
>> -    fi; \
>> -    } | while read p; do \
>> -      if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
>> -      echo "$$d$$p"; echo "$$p"; \
>> -    done | \
>> -    sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
>> -          -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
>> -    sed 'N;N;s,\n, ,g' | { \
>> -    list=; while read file base inst; do \
>> -      if test "$$base" = "$$inst"; then list="$$list $$file"; else \
>> -        echo " $(INSTALL_DATA) '$$file' 
>> '$(DESTDIR)$(man1dir)/$$inst'"; \
>> -        $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || 
>> exit $$?; \
>> -      fi; \
>> -    done; \
>> -    for i in $$list; do echo "$$i"; done | $(am__base_list) | \
>> -    while read files; do \
>> -      test -z "$$files" || { \
>> -        echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
>> -        $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
>> -    done; }
>> -
>> -uninstall-man1:
>> -    @$(NORMAL_UNINSTALL)
>> -    @list=''; test -n "$(man1dir)" || exit 0; \
>> -    files=`{ for i in $$list; do echo "$$i"; done; \
>> -    l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
>> -      sed -n '/\.1[a-z]*$$/p'; \
>> -    } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
>> -          -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
>> -    dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
>> -tags TAGS:
>> -
>> -ctags CTAGS:
>> -
>> -cscope cscopelist:
>> -
>> -
>> -distdir: $(DISTFILES)
>> -    @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
>> -    topsrcdirstrip=`echo "$(top_srcdir)" | sed 
>> 's/[].[^$$\\*]/\\\\&/g'`; \
>> -    list='$(DISTFILES)'; \
>> -      dist_files=`for file in $$list; do echo $$file; done | \
>> -      sed -e "s|^$$srcdirstrip/||;t" \
>> -          -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
>> -    case $$dist_files in \
>> -      */*) $(MKDIR_P) `echo "$$dist_files" | \
>> -               sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
>> -               sort -u` ;; \
>> -    esac; \
>> -    for file in $$dist_files; do \
>> -      if test -f $$file || test -d $$file; then d=.; else 
>> d=$(srcdir); fi; \
>> -      if test -d $$d/$$file; then \
>> -        dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
>> -        if test -d "$(distdir)/$$file"; then \
>> -          find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod 
>> u+rwx {} \;; \
>> -        fi; \
>> -        if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
>> -          cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
>> -          find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod 
>> u+rwx {} \;; \
>> -        fi; \
>> -        cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
>> -      else \
>> -        test -f "$(distdir)/$$file" \
>> -        || cp -p $$d/$$file "$(distdir)/$$file" \
>> -        || exit 1; \
>> -      fi; \
>> -    done
>> -    $(MAKE) $(AM_MAKEFLAGS) \
>> -      top_distdir="$(top_distdir)" distdir="$(distdir)" \
>> -      dist-info
>> -check-am: all-am
>> -check: check-am
>> -all-am: Makefile $(INFO_DEPS) $(MANS)
>> -installdirs:
>> -    for dir in "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"; do \
>> -      test -z "$$dir" || $(MKDIR_P) "$$dir"; \
>> -    done
>> -install: install-am
>> -install-exec: install-exec-am
>> -install-data: install-data-am
>> -uninstall: uninstall-am
>> -
>> -install-am: all-am
>> -    @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
>> -
>> -installcheck: installcheck-am
>> -install-strip:
>> -    if test -z '$(STRIP)'; then \
>> -      $(MAKE) $(AM_MAKEFLAGS) 
>> INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
>> -        install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" 
>> INSTALL_STRIP_FLAG=-s \
>> -          install; \
>> -    else \
>> -      $(MAKE) $(AM_MAKEFLAGS) 
>> INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
>> -        install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" 
>> INSTALL_STRIP_FLAG=-s \
>> -        "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
>> -    fi
>> -mostlyclean-generic:
>> -
>> -clean-generic:
>> -
>> -distclean-generic:
>> -    -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
>> -    -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || 
>> rm -f $(CONFIG_CLEAN_VPATH_FILES)
>> -
>> -maintainer-clean-generic:
>> -    @echo "This command is intended for maintainers to use"
>> -    @echo "it deletes files that may require special tools to rebuild."
>> -    -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
>> -clean: clean-am
>> -
>> -clean-am: clean-aminfo clean-generic clean-libtool mostlyclean-am
>> -
>> -distclean: distclean-am
>> -    -rm -f Makefile
>> -distclean-am: clean-am distclean-generic
>> -
>> -dvi: dvi-am
>> -
>> -dvi-am: $(DVIS)
>> -
>> -html: html-am
>> -
>> -html-am: $(HTMLS) html-local
>> -
>> -info: info-am
>> -
>> -info-am: $(INFO_DEPS) info-local
>> -
>> -install-data-am: install-info-am install-man
>> -
>> -install-dvi: install-dvi-am
>> -
>> -install-dvi-am: $(DVIS)
>> -    @$(NORMAL_INSTALL)
>> -    @list='$(DVIS)'; test -n "$(dvidir)" || list=; \
>> -    if test -n "$$list"; then \
>> -      echo " $(MKDIR_P) '$(DESTDIR)$(dvidir)'"; \
>> -      $(MKDIR_P) "$(DESTDIR)$(dvidir)" || exit 1; \
>> -    fi; \
>> -    for p in $$list; do \
>> -      if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
>> -      echo "$$d$$p"; \
>> -    done | $(am__base_list) | \
>> -    while read files; do \
>> -      echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \
>> -      $(INSTALL_DATA) $$files "$(DESTDIR)$(dvidir)" || exit $$?; \
>> -    done
>> -install-exec-am:
>> -
>> -install-html: install-html-am
>> -
>> -install-html-am: $(HTMLS)
>> -    @$(NORMAL_INSTALL)
>> -    @list='$(HTMLS)'; list2=; test -n "$(htmldir)" || list=; \
>> -    if test -n "$$list"; then \
>> -      echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
>> -      $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
>> -    fi; \
>> -    for p in $$list; do \
>> -      if test -f "$$p" || test -d "$$p"; then d=; else 
>> d="$(srcdir)/"; fi; \
>> -      $(am__strip_dir) \
>> -      d2=$$d$$p; \
>> -      if test -d "$$d2"; then \
>> -        echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
>> -        $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
>> -        echo " $(INSTALL_DATA) '$$d2'/* '$(DESTDIR)$(htmldir)/$$f'"; \
>> -        $(INSTALL_DATA) "$$d2"/* "$(DESTDIR)$(htmldir)/$$f" || exit 
>> $$?; \
>> -      else \
>> -        list2="$$list2 $$d2"; \
>> -      fi; \
>> -    done; \
>> -    test -z "$$list2" || { echo "$$list2" | $(am__base_list) | \
>> -    while read files; do \
>> -      echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
>> -      $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
>> -    done; }
>> -install-info: install-info-am
>> -
>> -install-info-am: $(INFO_DEPS)
>> -    @$(NORMAL_INSTALL)
>> -    @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
>> -    list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
>> -    if test -n "$$list"; then \
>> -      echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \
>> -      $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \
>> -    fi; \
>> -    for file in $$list; do \
>> -      case $$file in \
>> -        $(srcdir)/*) file=`echo "$$file" | sed 
>> "s|^$$srcdirstrip/||"`;; \
>> -      esac; \
>> -      if test -f $$file; then d=.; else d=$(srcdir); fi; \
>> -      file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
>> -      for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
>> -                   $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
>> -        if test -f $$ifile; then \
>> -          echo "$$ifile"; \
>> -        else : ; fi; \
>> -      done; \
>> -    done | $(am__base_list) | \
>> -    while read files; do \
>> -      echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(infodir)'"; \
>> -      $(INSTALL_DATA) $$files "$(DESTDIR)$(infodir)" || exit $$?; done
>> -    @$(POST_INSTALL)
>> -    @if $(am__can_run_installinfo); then \
>> -      list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
>> -      for file in $$list; do \
>> -        relfile=`echo "$$file" | sed 's|^.*/||'`; \
>> -        echo " install-info --info-dir='$(DESTDIR)$(infodir)' 
>> '$(DESTDIR)$(infodir)/$$relfile'";\
>> -        install-info --info-dir="$(DESTDIR)$(infodir)" 
>> "$(DESTDIR)$(infodir)/$$relfile" || :;\
>> -      done; \
>> -    else : ; fi
>> -install-man: install-man1
>> -
>> -install-pdf: install-pdf-am
>> -
>> -install-pdf-am: $(PDFS)
>> -    @$(NORMAL_INSTALL)
>> -    @list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
>> -    if test -n "$$list"; then \
>> -      echo " $(MKDIR_P) '$(DESTDIR)$(pdfdir)'"; \
>> -      $(MKDIR_P) "$(DESTDIR)$(pdfdir)" || exit 1; \
>> -    fi; \
>> -    for p in $$list; do \
>> -      if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
>> -      echo "$$d$$p"; \
>> -    done | $(am__base_list) | \
>> -    while read files; do \
>> -      echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pdfdir)'"; \
>> -      $(INSTALL_DATA) $$files "$(DESTDIR)$(pdfdir)" || exit $$?; done
>> -install-ps: install-ps-am
>> -
>> -install-ps-am: $(PSS)
>> -    @$(NORMAL_INSTALL)
>> -    @list='$(PSS)'; test -n "$(psdir)" || list=; \
>> -    if test -n "$$list"; then \
>> -      echo " $(MKDIR_P) '$(DESTDIR)$(psdir)'"; \
>> -      $(MKDIR_P) "$(DESTDIR)$(psdir)" || exit 1; \
>> -    fi; \
>> -    for p in $$list; do \
>> -      if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
>> -      echo "$$d$$p"; \
>> -    done | $(am__base_list) | \
>> -    while read files; do \
>> -      echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(psdir)'"; \
>> -      $(INSTALL_DATA) $$files "$(DESTDIR)$(psdir)" || exit $$?; done
>> -installcheck-am:
>> -
>> -maintainer-clean: maintainer-clean-am
>> -    -rm -f Makefile
>> -maintainer-clean-am: distclean-am maintainer-clean-aminfo \
>> -    maintainer-clean-generic
>> -
>> -mostlyclean: mostlyclean-am
>> -
>> -mostlyclean-am: mostlyclean-aminfo mostlyclean-generic \
>> -    mostlyclean-libtool
>> -
>> -pdf: pdf-am
>> -
>> -pdf-am: $(PDFS)
>> -
>> -ps: ps-am
>> -
>> -ps-am: $(PSS)
>> -
>> -uninstall-am: uninstall-dvi-am uninstall-html-am uninstall-info-am \
>> -    uninstall-man uninstall-pdf-am uninstall-ps-am
>> -
>> -uninstall-man: uninstall-man1
>> -
>> -.MAKE: install-am install-strip
>> -
>> -.PHONY: all all-am check check-am clean clean-aminfo clean-generic \
>> -    clean-libtool cscopelist-am ctags-am dist-info distclean \
>> -    distclean-generic distclean-libtool distdir dvi dvi-am html \
>> -    html-am html-local info info-am info-local install install-am \
>> -    install-data install-data-am install-dvi install-dvi-am \
>> -    install-exec install-exec-am install-html install-html-am \
>> -    install-info install-info-am install-man install-man1 \
>> -    install-pdf install-pdf-am install-ps install-ps-am \
>> -    install-strip installcheck installcheck-am installdirs \
>> -    maintainer-clean maintainer-clean-aminfo \
>> -    maintainer-clean-generic mostlyclean mostlyclean-aminfo \
>> -    mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
>> -    tags-am uninstall uninstall-am uninstall-dvi-am \
>> -    uninstall-html-am uninstall-info-am uninstall-man \
>> -    uninstall-man1 uninstall-pdf-am uninstall-ps-am
>> -
>> -.PRECIOUS: Makefile
>> -
>> -
>> -# Man page generation from texinfo
>> -addr2line.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) 
>> > addr2line.pod
>> -    $(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f addr2line.pod
>> -
>> -ar.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
>> -    $(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ 
>> && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f ar.pod
>> -
>> -dlltool.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > 
>> dlltool.pod
>> -    $(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f dlltool.pod
>> -
>> -nm.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
>> -    $(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ 
>> && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f nm.pod
>> -
>> -objcopy.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > 
>> objcopy.pod
>> -    $(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f objcopy.pod
>> -
>> -objdump.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > 
>> objdump.pod
>> -    $(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f objdump.pod
>> -
>> -ranlib.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > 
>> ranlib.pod
>> -    $(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f ranlib.pod
>> -
>> -readelf.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > 
>> readelf.pod
>> -    $(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f readelf.pod
>> -
>> -size.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > 
>> size.pod
>> -    $(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f size.pod
>> -
>> -strings.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > 
>> strings.pod
>> -    $(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f strings.pod
>> -
>> -strip.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > 
>> strip.pod
>> -    $(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f strip.pod
>> -
>> -elfedit.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > 
>> elfedit.pod
>> -    $(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f elfedit.pod
>> -
>> -windres.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > 
>> windres.pod
>> -    $(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f windres.pod
>> -
>> -windmc.1:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > 
>> windmc.pod
>> -    $(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f windmc.pod
>> -
>> -cxxfilt.man:    $(binutils_TEXI)
>> -    $(AM_V_GEN)touch $@
>> -    $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > 
>> $(DEMANGLER_NAME).pod
>> -    $(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n 
>> .na/d' > $@.T$$$$ && \
>> -        mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>> -    $(AM_V_at)rm -f $(DEMANGLER_NAME).pod
>> -
>> -$(DEMANGLER_NAME).1: cxxfilt.man Makefile
>> -    $(AM_V_GEN)if test -f cxxfilt.man; then \
>> -      man=cxxfilt.man; \
>> -    else \
>> -      man=$(srcdir)/cxxfilt.man; \
>> -    fi; \
>> -    sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \
>> -        -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \
>> -        > $(DEMANGLER_NAME).1
>> -
>> -html-local: binutils/index.html
>> -binutils/index.html: binutils.texi $(binutils_TEXINFOS)
>> -    $(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) 
>> $(MAKEINFOFLAGS) \
>> -      --split=node -I$(srcdir) $(srcdir)/binutils.texi
>> -
>> -# Maintenance
>> -
>> -# We need it for the taz target in ../../Makefile.in.
>> -info-local: $(MANS)
>> -
>> -# Tell versions [3.59,3.63) of GNU make to not export all variables.
>> -# Otherwise a system limit (for SysV at least) may be exceeded.
>> -.NOEXPORT:
>> diff --git a/binutils/doc/Makefile.am b/binutils/doc/local.mk
>> similarity index 77%
>> rename from binutils/doc/Makefile.am
>> rename to binutils/doc/local.mk
>> index 90b238ddf8d9..687b3f65e6cb 100644
>> --- a/binutils/doc/Makefile.am
>> +++ b/binutils/doc/local.mk
>> @@ -6,19 +6,17 @@
>>   # it under the terms of the GNU General Public License as published by
>>   # the Free Software Foundation; either version 3 of the License, or
>>   # (at your option) any later version.
>> -#
>> +#
>>   # This program is distributed in the hope that it will be useful,
>>   # but WITHOUT ANY WARRANTY; without even the implied warranty of
>>   # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>>   # GNU General Public License for more details.
>> -#
>> +#
>>   # You should have received a copy of the GNU General Public License
>>   # along with this program; see the file COPYING3.  If not see
>>   # <http://www.gnu.org/licenses/>.
>>   #
>> -AUTOMAKE_OPTIONS = info-in-builddir no-texinfo.tex foreign
>> -
>>   # What version of the manual you want; "all" includes everything
>>   CONFIG=all
>> @@ -32,155 +30,155 @@ POD2MAN = pod2man --center="GNU Development 
>> Tools" \
>>   # List of man pages generated from binutils.texi
>>   man_MANS = \
>> -    addr2line.1 \
>> -    ar.1 \
>> -    dlltool.1 \
>> -    nm.1 \
>> -    objcopy.1 \
>> -    objdump.1 \
>> -    ranlib.1 \
>> -    readelf.1 \
>> -    size.1 \
>> -    strings.1 \
>> -    strip.1 \
>> -    elfedit.1 \
>> -    windres.1 \
>> -    windmc.1 \
>> -    $(DEMANGLER_NAME).1
>> -
>> -info_TEXINFOS = binutils.texi
>> -binutils_TEXI = $(srcdir)/binutils.texi
>> -
>> -AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
>> -           -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc \
>> +    %D%/addr2line.1 \
>> +    %D%/ar.1 \
>> +    %D%/dlltool.1 \
>> +    %D%/nm.1 \
>> +    %D%/objcopy.1 \
>> +    %D%/objdump.1 \
>> +    %D%/ranlib.1 \
>> +    %D%/readelf.1 \
>> +    %D%/size.1 \
>> +    %D%/strings.1 \
>> +    %D%/strip.1 \
>> +    %D%/elfedit.1 \
>> +    %D%/windres.1 \
>> +    %D%/windmc.1 \
>> +    %D%/$(DEMANGLER_NAME).1
>> +
>> +info_TEXINFOS = %D%/binutils.texi
>> +binutils_TEXI = $(srcdir)/%D%/binutils.texi
>> +
>> +AM_MAKEINFOFLAGS = -I "$(srcdir)/%D%" -I "$(top_srcdir)/../libiberty" \
>> +           -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc \
>>              --no-split
>> -TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" \
>> -            -I "$(top_srcdir)/../bfd/doc" -I ../../bfd/doc
>> +TEXI2DVI = texi2dvi -I "$(srcdir)/%D%" -I "$(top_srcdir)/../libiberty" \
>> +            -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc
>>   # Man page generation from texinfo
>> -addr2line.1:    $(binutils_TEXI)
>> +%D%/addr2line.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) 
>> > addr2line.pod
>>       $(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f addr2line.pod
>> -ar.1:    $(binutils_TEXI)
>> +%D%/ar.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
>>       $(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f ar.pod
>> -dlltool.1:    $(binutils_TEXI)
>> +%D%/dlltool.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > 
>> dlltool.pod
>>       $(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f dlltool.pod
>> -nm.1:    $(binutils_TEXI)
>> +%D%/nm.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
>>       $(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f nm.pod
>> -objcopy.1:    $(binutils_TEXI)
>> +%D%/objcopy.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > 
>> objcopy.pod
>>       $(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f objcopy.pod
>> -objdump.1:    $(binutils_TEXI)
>> +%D%/objdump.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > 
>> objdump.pod
>>       $(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f objdump.pod
>> -ranlib.1:    $(binutils_TEXI)
>> +%D%/ranlib.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > 
>> ranlib.pod
>>       $(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f ranlib.pod
>> -readelf.1:    $(binutils_TEXI)
>> +%D%/readelf.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > 
>> readelf.pod
>>       $(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f readelf.pod
>> -size.1:    $(binutils_TEXI)
>> +%D%/size.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > 
>> size.pod
>>       $(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f size.pod
>> -strings.1:    $(binutils_TEXI)
>> +%D%/strings.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > 
>> strings.pod
>>       $(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f strings.pod
>> -strip.1:    $(binutils_TEXI)
>> +%D%/strip.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > 
>> strip.pod
>>       $(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f strip.pod
>> -elfedit.1:    $(binutils_TEXI)
>> +%D%/elfedit.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > 
>> elfedit.pod
>>       $(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f elfedit.pod
>> -windres.1:    $(binutils_TEXI)
>> +%D%/windres.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > 
>> windres.pod
>>       $(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f windres.pod
>> -windmc.1:    $(binutils_TEXI)
>> +%D%/windmc.1:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > 
>> windmc.pod
>>       $(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > 
>> $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f windmc.pod
>> -cxxfilt.man:    $(binutils_TEXI)
>> +%D%/cxxfilt.man:    $(binutils_TEXI)
>>       $(AM_V_GEN)touch $@
>>       $(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > 
>> $(DEMANGLER_NAME).pod
>>       $(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n 
>> .na/d' > $@.T$$$$ && \
>>           mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
>>       $(AM_V_at)rm -f $(DEMANGLER_NAME).pod
>> -MAINTAINERCLEANFILES = $(man_MANS) binutils.info cxxfilt.man
>> +MAINTAINERCLEANFILES += $(man_MANS) %D%/binutils.info %D%/cxxfilt.man
>> -$(DEMANGLER_NAME).1: cxxfilt.man Makefile
>> -    $(AM_V_GEN)if test -f cxxfilt.man; then \
>> -      man=cxxfilt.man; \
>> +%D%/$(DEMANGLER_NAME).1: %D%/cxxfilt.man Makefile
>> +    $(AM_V_GEN)if test -f %D%/cxxfilt.man; then \
>> +      man=%D%/cxxfilt.man; \
>>       else \
>> -      man=$(srcdir)/cxxfilt.man; \
>> +      man=$(srcdir)/%D%/cxxfilt.man; \
>>       fi; \
>>       sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' \
>>           -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \
>> -        > $(DEMANGLER_NAME).1
>> +        > %D%/$(DEMANGLER_NAME).1
>> -html-local: binutils/index.html
>> -binutils/index.html: binutils.texi $(binutils_TEXINFOS)
>> +html-local: %D%/binutils/index.html
>> +binutils/index.html: %D%/binutils.texi $(binutils_TEXINFOS)
>>       $(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) 
>> $(MAKEINFOFLAGS) \
>> -      --split=node -I$(srcdir) $(srcdir)/binutils.texi
>> +      --split=node -I$(srcdir) $(srcdir)/%D%/binutils.texi
>>   # Maintenance
>> -# We need it for the taz target in ../../Makefile.in.
>> +# We need it for the taz target in ../Makefile.in.
>>   info-local: $(MANS)
>>

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/2] binutils: merge doc subdir up a level
  2021-11-30 10:18       ` Luis Machado
@ 2021-11-30 14:41         ` Jeff Law
  2021-11-30 16:12         ` Jeff Law
  1 sibling, 0 replies; 12+ messages in thread
From: Jeff Law @ 2021-11-30 14:41 UTC (permalink / raw)
  To: Luis Machado, Mike Frysinger, binutils



On 11/30/2021 3:18 AM, Luis Machado via Binutils wrote:
> Sorry, forgot to mention, it is a --enable-targets=all build. Though I 
> don't think that makes a difference.
It doesn't.  Every target in my tester is failing because of this.

Jeff


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/2] binutils: merge doc subdir up a level
  2021-11-30 10:18       ` Luis Machado
  2021-11-30 14:41         ` Jeff Law
@ 2021-11-30 16:12         ` Jeff Law
  1 sibling, 0 replies; 12+ messages in thread
From: Jeff Law @ 2021-11-30 16:12 UTC (permalink / raw)
  To: Luis Machado, Mike Frysinger, binutils



On 11/30/2021 3:18 AM, Luis Machado via Binutils wrote:
> Sorry, forgot to mention, it is a --enable-targets=all build. Though I 
> don't think that makes a difference.
I think those doc file targets are missing a dependency on the target 
which creates the doc subdir in the build tree.

jeff


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH] binutils: add missing doc/dirstamp deps
  2021-11-30 10:17     ` Luis Machado
  2021-11-30 10:18       ` Luis Machado
@ 2021-11-30 16:35       ` Mike Frysinger
  2021-11-30 17:38         ` Jeff Law
  2021-11-30 17:41         ` Nick Clifton
  1 sibling, 2 replies; 12+ messages in thread
From: Mike Frysinger @ 2021-11-30 16:35 UTC (permalink / raw)
  To: binutils

Since configure no longer creates the subdir, we have to explicitly
depend on the dirstamp target.
---
 binutils/Makefile.in  | 30 +++++++++++++++---------------
 binutils/doc/local.mk | 30 +++++++++++++++---------------
 2 files changed, 30 insertions(+), 30 deletions(-)

diff --git a/binutils/Makefile.in b/binutils/Makefile.in
index 336644a3983a..a5dc80989fda 100644
--- a/binutils/Makefile.in
+++ b/binutils/Makefile.in
@@ -2013,105 +2013,105 @@ install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
 	done
 
 # Man page generation from texinfo
-doc/addr2line.1:	$(binutils_TEXI)
+doc/addr2line.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
 	$(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f addr2line.pod
 
-doc/ar.1:	$(binutils_TEXI)
+doc/ar.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
 	$(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f ar.pod
 
-doc/dlltool.1:	$(binutils_TEXI)
+doc/dlltool.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
 	$(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f dlltool.pod
 
-doc/nm.1:	$(binutils_TEXI)
+doc/nm.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
 	$(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f nm.pod
 
-doc/objcopy.1:	$(binutils_TEXI)
+doc/objcopy.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
 	$(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f objcopy.pod
 
-doc/objdump.1:	$(binutils_TEXI)
+doc/objdump.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
 	$(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f objdump.pod
 
-doc/ranlib.1:	$(binutils_TEXI)
+doc/ranlib.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
 	$(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f ranlib.pod
 
-doc/readelf.1:	$(binutils_TEXI)
+doc/readelf.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
 	$(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f readelf.pod
 
-doc/size.1:	$(binutils_TEXI)
+doc/size.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
 	$(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f size.pod
 
-doc/strings.1:	$(binutils_TEXI)
+doc/strings.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
 	$(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f strings.pod
 
-doc/strip.1:	$(binutils_TEXI)
+doc/strip.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
 	$(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f strip.pod
 
-doc/elfedit.1:	$(binutils_TEXI)
+doc/elfedit.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
 	$(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f elfedit.pod
 
-doc/windres.1:	$(binutils_TEXI)
+doc/windres.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
 	$(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f windres.pod
 
-doc/windmc.1:	$(binutils_TEXI)
+doc/windmc.1:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
 	$(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f windmc.pod
 
-doc/cxxfilt.man:	$(binutils_TEXI)
+doc/cxxfilt.man:	$(binutils_TEXI) doc/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
 	$(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
diff --git a/binutils/doc/local.mk b/binutils/doc/local.mk
index 687b3f65e6cb..718ae02fd7d5 100644
--- a/binutils/doc/local.mk
+++ b/binutils/doc/local.mk
@@ -56,105 +56,105 @@ TEXI2DVI = texi2dvi -I "$(srcdir)/%D%" -I "$(top_srcdir)/../libiberty" \
 		    -I "$(top_srcdir)/../bfd/doc" -I ../bfd/doc
 
 # Man page generation from texinfo
-%D%/addr2line.1:	$(binutils_TEXI)
+%D%/addr2line.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Daddr2line < $(binutils_TEXI) > addr2line.pod
 	$(AM_V_at)-($(POD2MAN) addr2line.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f addr2line.pod
 
-%D%/ar.1:	$(binutils_TEXI)
+%D%/ar.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dar < $(binutils_TEXI) > ar.pod
 	$(AM_V_at)-($(POD2MAN) ar.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f ar.pod
 
-%D%/dlltool.1:	$(binutils_TEXI)
+%D%/dlltool.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Ddlltool < $(binutils_TEXI) > dlltool.pod
 	$(AM_V_at)-($(POD2MAN) dlltool.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f dlltool.pod
 
-%D%/nm.1:	$(binutils_TEXI)
+%D%/nm.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod
 	$(AM_V_at)-($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f nm.pod
 
-%D%/objcopy.1:	$(binutils_TEXI)
+%D%/objcopy.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjcopy < $(binutils_TEXI) > objcopy.pod
 	$(AM_V_at)-($(POD2MAN) objcopy.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f objcopy.pod
 
-%D%/objdump.1:	$(binutils_TEXI)
+%D%/objdump.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dobjdump < $(binutils_TEXI) > objdump.pod
 	$(AM_V_at)-($(POD2MAN) objdump.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f objdump.pod
 
-%D%/ranlib.1:	$(binutils_TEXI)
+%D%/ranlib.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dranlib < $(binutils_TEXI) > ranlib.pod
 	$(AM_V_at)-($(POD2MAN) ranlib.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f ranlib.pod
 
-%D%/readelf.1:	$(binutils_TEXI)
+%D%/readelf.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dreadelf < $(binutils_TEXI) > readelf.pod
 	$(AM_V_at)-($(POD2MAN) readelf.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f readelf.pod
 
-%D%/size.1:	$(binutils_TEXI)
+%D%/size.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dsize < $(binutils_TEXI) > size.pod
 	$(AM_V_at)-($(POD2MAN) size.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f size.pod
 
-%D%/strings.1:	$(binutils_TEXI)
+%D%/strings.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod
 	$(AM_V_at)-($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f strings.pod
 
-%D%/strip.1:	$(binutils_TEXI)
+%D%/strip.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dstrip < $(binutils_TEXI) > strip.pod
 	$(AM_V_at)-($(POD2MAN) strip.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f strip.pod
 
-%D%/elfedit.1:	$(binutils_TEXI)
+%D%/elfedit.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Delfedit < $(binutils_TEXI) > elfedit.pod
 	$(AM_V_at)-($(POD2MAN) elfedit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f elfedit.pod
 
-%D%/windres.1:	$(binutils_TEXI)
+%D%/windres.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindres < $(binutils_TEXI) > windres.pod
 	$(AM_V_at)-($(POD2MAN) windres.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f windres.pod
 
-%D%/windmc.1:	$(binutils_TEXI)
+%D%/windmc.1:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dwindmc < $(binutils_TEXI) > windmc.pod
 	$(AM_V_at)-($(POD2MAN) windmc.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	$(AM_V_at)rm -f windmc.pod
 
-%D%/cxxfilt.man:	$(binutils_TEXI)
+%D%/cxxfilt.man:	$(binutils_TEXI) %D%/$(am__dirstamp)
 	$(AM_V_GEN)touch $@
 	$(AM_V_at)-$(TEXI2POD) $(MANCONF) -Dcxxfilt < $(binutils_TEXI) > $(DEMANGLER_NAME).pod
 	$(AM_V_at)-($(POD2MAN) $(DEMANGLER_NAME).pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-- 
2.33.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH] binutils: add missing doc/dirstamp deps
  2021-11-30 16:35       ` [PATCH] binutils: add missing doc/dirstamp deps Mike Frysinger
@ 2021-11-30 17:38         ` Jeff Law
  2021-11-30 17:41         ` Nick Clifton
  1 sibling, 0 replies; 12+ messages in thread
From: Jeff Law @ 2021-11-30 17:38 UTC (permalink / raw)
  To: Mike Frysinger, binutils



On 11/30/2021 9:35 AM, Mike Frysinger via Binutils wrote:
> Since configure no longer creates the subdir, we have to explicitly
> depend on the dirstamp target.
Yea, I'd come to the same conclusion and have an equivalent patch in my 
tester.

jeff


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH] binutils: add missing doc/dirstamp deps
  2021-11-30 16:35       ` [PATCH] binutils: add missing doc/dirstamp deps Mike Frysinger
  2021-11-30 17:38         ` Jeff Law
@ 2021-11-30 17:41         ` Nick Clifton
  1 sibling, 0 replies; 12+ messages in thread
From: Nick Clifton @ 2021-11-30 17:41 UTC (permalink / raw)
  To: Mike Frysinger, binutils

Hi Mike,

> Since configure no longer creates the subdir, we have to explicitly
> depend on the dirstamp target.
> ---
>   binutils/Makefile.in  | 30 +++++++++++++++---------------
>   binutils/doc/local.mk | 30 +++++++++++++++---------------
>   2 files changed, 30 insertions(+), 30 deletions(-)

Patch approved - please apply.

Cheers
   Nick


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2021-11-30 17:41 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-26  3:59 [PATCH] bfd: enable silent build rules Mike Frysinger
2021-11-26  4:15 ` [PATCH 1/2] binutils: " Mike Frysinger
2021-11-26  4:16   ` [PATCH 2/2] binutils: merge doc subdir up a level Mike Frysinger
2021-11-29 13:30     ` Nick Clifton
2021-11-30 10:17     ` Luis Machado
2021-11-30 10:18       ` Luis Machado
2021-11-30 14:41         ` Jeff Law
2021-11-30 16:12         ` Jeff Law
2021-11-30 16:35       ` [PATCH] binutils: add missing doc/dirstamp deps Mike Frysinger
2021-11-30 17:38         ` Jeff Law
2021-11-30 17:41         ` Nick Clifton
2021-11-29 13:31   ` [PATCH 1/2] binutils: enable silent build rules Nick Clifton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).