diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-21 20:40:27 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-21 20:40:27 +0200 |
commit | cdda8fe1c6ff147b3c1f4408884ab4905aeb4e06 (patch) | |
tree | 2e529916412dd411e3fc90c0fb46032d583447dc /runtime/doc/Makefile | |
parent | 60aad974be620cfd3e4f76e3cd29a968289bd4f7 (diff) | |
download | vim-cdda8fe1c6ff147b3c1f4408884ab4905aeb4e06.zip |
Fix dependencies in help Makefile. (James Vega)
Diffstat (limited to 'runtime/doc/Makefile')
-rw-r--r-- | runtime/doc/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
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 $< >$@ |