From cdda8fe1c6ff147b3c1f4408884ab4905aeb4e06 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar <Bram@vim.org> Date: Wed, 21 Jul 2010 20:40:27 +0200 Subject: [PATCH] Fix dependencies in help Makefile. (James Vega) --- runtime/doc/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile index 3505c037de..a6610a937a 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 $< >$@ -- GitLab