From: Bram Moolenaar Date: Wed, 21 Jul 2010 18:40:27 +0000 (+0200) Subject: Fix dependencies in help Makefile. (James Vega) X-Git-Tag: v7.3~203 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cdda8fe1c6ff147b3c1f4408884ab4905aeb4e06;p=vim Fix dependencies in help Makefile. (James Vega) --- diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile index 3505c037d..a6610a937 100644 --- a/runtime/doc/Makefile +++ b/runtime/doc/Makefile @@ -340,12 +340,14 @@ uganda.nsis.txt: uganda.txt uganda.txt | uniq >uganda.nsis.txt # Awk version of .txt to .html conversion. -html: noerrors tags tags.ref $(HTMLS) +html: noerrors tags $(HTMLS) @if test -f errors.log; then more errors.log; fi noerrors: -rm -f errors.log +$(HTMLS): tags.ref + .txt.html: $(AWK) -f makehtml.awk $< >$@