summaryrefslogtreecommitdiffstats
path: root/runtime/doc/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-20 21:47:49 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-20 21:47:49 +0000
commit371d5403d0dc6411f6f17c5b472c1cfcac6789e4 (patch)
tree08066b3d097303df50e1b67fffc33d1d68bcb0d4 /runtime/doc/Makefile
parentceaf7b8b66764b4a99526c715886d80397ce81dd (diff)
updated for version 7.0230
Diffstat (limited to 'runtime/doc/Makefile')
-rw-r--r--runtime/doc/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile
index 9ebce3c7e1..a0ea10066d 100644
--- a/runtime/doc/Makefile
+++ b/runtime/doc/Makefile
@@ -161,7 +161,6 @@ HTMLS = \
gui_x11.html \
hangulin.html \
hebrew.html \
- help.html \
howto.html \
if_cscop.html \
if_mzsch.html \
@@ -173,6 +172,7 @@ HTMLS = \
if_tcl.html \
indent.html \
index.html \
+ vimindex.html \
insert.html \
intro.html \
map.html \
@@ -327,6 +327,14 @@ noerrors:
.txt.html:
$(AWK) -f makehtml.awk $< >$@
+# index.html is the starting point for HTML, but for the help files it is
+# help.txt. Therefore use vimindex.html for index.txt.
+index.html: help.txt
+ $(AWK) -f makehtml.awk help.txt >index.html
+
+vimindex.html: index.txt
+ $(AWK) -f makehtml.awk index.txt >vimindex.html
+
tags.ref tags.html: tags
$(AWK) -f maketags.awk tags >tags.html