aboutsummaryrefslogtreecommitdiff
path: root/bfd/Makefile.in
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2023-08-31 08:57:31 +0930
committerAlan Modra <amodra@gmail.com>2023-08-31 08:57:31 +0930
commit00aea11f400dc4fae27952996cb6b1e18ef97285 (patch)
treed5cabd620c0534b3f977d104d2d6ec220b15662e /bfd/Makefile.in
parentd7d4e9115548d2ddc01c2f1e6f2c1188dc823066 (diff)
downloadbinutils-00aea11f400dc4fae27952996cb6b1e18ef97285.zip
binutils-00aea11f400dc4fae27952996cb6b1e18ef97285.tar.gz
binutils-00aea11f400dc4fae27952996cb6b1e18ef97285.tar.bz2
libbfd.texi zero size
Pattern rules in doc/local.mk exist that specify how to make libbfd.texi from libfd.h or libbfd.c. Since both files exist and the libbfd.h rule is first, libbfd.h is used. libbfd.h doesn't contain the documentation.. * doc/local.mk (doc/%stamp): Put rule making this from %.c before %.h rule. * Makefile.in: Regenerate. * libbfd.c (Byte swapping routines): Don't omit description.
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r--bfd/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in
index bb53027..f8bc859 100644
--- a/bfd/Makefile.in
+++ b/bfd/Makefile.in
@@ -2489,10 +2489,10 @@ doc/chew.stamp: $(srcdir)/doc/chew.c doc/$(am__dirstamp)
.PRECIOUS: doc/%.stamp
doc/%.texi: doc/%.stamp ; @true
-doc/%.stamp: $(srcdir)/%.h $(srcdir)/doc/doc.str $(MKDOC) doc/$(am__dirstamp)
- $(AM_V_GEN)$(REGEN_TEXI)
doc/%.stamp: $(srcdir)/%.c $(srcdir)/doc/doc.str $(MKDOC) doc/$(am__dirstamp)
$(AM_V_GEN)$(REGEN_TEXI)
+doc/%.stamp: $(srcdir)/%.h $(srcdir)/doc/doc.str $(MKDOC) doc/$(am__dirstamp)
+ $(AM_V_GEN)$(REGEN_TEXI)
# Avoid the %.stamp generating a builddir/bfd.texi that overrides the
# srcdir/ as well as regenerating doc/bfd.info for each make run.