summaryrefslogtreecommitdiff
path: root/runtime/doc/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2010-07-21 20:40:27 +0200
committerBram Moolenaar <bram@vim.org>2010-07-21 20:40:27 +0200
commit58a518aec81dd4ac1f1af9dea55f055386aca264 (patch)
treea348d581bda423eb29a674640828af4b8e4f55f4 /runtime/doc/Makefile
parentdb239b5db6260953b3cabbcc517daa935fa611fd (diff)
downloadvim-58a518aec81dd4ac1f1af9dea55f055386aca264.tar.gz
Fix dependencies in help Makefile. (James Vega)
Diffstat (limited to 'runtime/doc/Makefile')
-rw-r--r--runtime/doc/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile
index 3505c037..a6610a93 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 $< >$@