aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/Makefile
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2015-05-11 17:30:18 -0400
committerMichael Reed <m.reed@mykolab.com>2015-05-13 18:16:51 -0400
commit0086c0a53b17d99bb336832f45899ee1fb6a67b7 (patch)
treeac5d38c5ce37ac984ae7e18ab70cc172c75c1929 /runtime/doc/Makefile
parentb0b30769951963bd439d45586a0c86bba445d6ee (diff)
downloadrneovim-0086c0a53b17d99bb336832f45899ee1fb6a67b7.tar.gz
rneovim-0086c0a53b17d99bb336832f45899ee1fb6a67b7.tar.bz2
rneovim-0086c0a53b17d99bb336832f45899ee1fb6a67b7.zip
Man pages: Move to nvim namespace and out of `runtime/`
Also clean up man page references in `runtime/doc/Makefile` as it doesn't deal with them anymore.
Diffstat (limited to 'runtime/doc/Makefile')
-rw-r--r--runtime/doc/Makefile33
1 files changed, 3 insertions, 30 deletions
diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile
index 36ea60860f..07b4226151 100644
--- a/runtime/doc/Makefile
+++ b/runtime/doc/Makefile
@@ -12,31 +12,10 @@ VIMEXE = vim
DOCS = $(wildcard *.txt)
HTMLS = $(DOCS:.txt=.html)
-MANPAGES = \
- manpages/vim.man \
- manpages/vimtutor.man \
- manpages/xxd.man \
- manpages/de/vim-de.man \
- manpages/fr/vim-fr.man \
- manpages/fr/vimtutor-fr.man \
- manpages/fr/xxd-fr.man \
- manpages/pl/vim-pl.man \
- manpages/pl/vimtutor-pl.man \
- manpages/pl/xxd-pl.man \
- manpages/it/vim-it.man \
- manpages/it/vimtutor-it.man \
- manpages/it/xxd-it.man \
- manpages/ru/vim-ru.man \
- manpages/ru/vimtutor-ru.man \
- manpages/ru/xxd-ru.man \
- manpages/ja/vim-ja.man \
- manpages/ja/vimtutor-ja.man \
- manpages/ja/xxd-ja.man
-
.SUFFIXES:
-.SUFFIXES: .c .o .txt .html .1 .man
+.SUFFIXES: .c .o .txt .html
-all: tags manpages html
+all: tags html
# Use Vim to generate the tags file. Can only be used when Vim has been
# compiled and installed. Supports multiple languages.
@@ -51,12 +30,6 @@ tags: doctags $(DOCS)
doctags: doctags.c
$(CC) doctags.c -o doctags
-manpages: $(MANPAGES)
-
-# OSX groff doesn't support utf-8 as input encoding, so this won't work there.
-.1.man:
- groff -k -mandoc -Tutf8 $< | sed -e s/.^H//g > $@
-
# Awk version of .txt to .html conversion.
html: noerrors tags $(HTMLS)
@if test -f errors.log; then cat errors.log; fi
@@ -81,5 +54,5 @@ tags.ref tags.html: tags
$(AWK) -f maketags.awk tags >tags.html
clean:
- -rm -f doctags *.html tags.ref $(MANPAGES) $(HTMLS) errors.log
+ -rm -f doctags *.html tags.ref $(HTMLS) errors.log