diff options
Diffstat (limited to 'ld/Makefile.in')
-rw-r--r-- | ld/Makefile.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ld/Makefile.in b/ld/Makefile.in index eec16c7..8f97207 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -2437,9 +2437,7 @@ ld.dvi: $(srcdir)/ld.texinfo configdoc.texi ldver.texi # Build the man page from the texinfo file # The sed command removes the no-adjust Nroff command so that # the man output looks standard. -# It depends on "info" instead of "configdoc.texi ldver.texi" to -# support parallel build. -ld.1: $(srcdir)/ld.texinfo info +ld.1: $(srcdir)/ld.texinfo configdoc.texi ldver.texi touch $@ -$(TEXI2POD) $(MANCONF) < $(srcdir)/ld.texinfo > ld.pod -($(POD2MAN) ld.pod | \ @@ -2478,6 +2476,11 @@ install-data-local: install-data-local: install-info diststuff: info $(EXTRA_DIST) all: info ld.1 + +# Both info (ld.info) and ld.1 depend on configdoc.texi and ldver.texi. +# But info isn't a direct target. Make info-recursive to depend on +# ld.1 to support parallel build. +info-recursive: ld.1 distclean-local: rm -rf ldscripts |