diff options
Diffstat (limited to 'ld/Makefile.am')
-rw-r--r-- | ld/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/Makefile.am b/ld/Makefile.am index a4a52d7..b5b154b 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -1644,7 +1644,9 @@ 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. -ld.1: $(srcdir)/ld.texinfo configdoc.texi ldver.texi +# It depends on "info" instead of "configdoc.texi ldver.texi" to +# support parallel build. +ld.1: $(srcdir)/ld.texinfo info touch $@ -$(TEXI2POD) $(MANCONF) < $(srcdir)/ld.texinfo > ld.pod -($(POD2MAN) ld.pod | \ @@ -1699,8 +1701,6 @@ EXTRA_DIST = ldgram.c ldgram.h ldlex.c $(man_MANS) diststuff: info $(EXTRA_DIST) all: info ld.1 -ld.1: info - DISTCLEANFILES = tdirs site.exp site.bak stringify.sed distclean-local: rm -rf ldscripts |