Mercurial > vim
annotate runtime/doc/Makefile @ 36563:c1dd0338b6b9 draft default tip
runtime(cfg): only consider leading // as starting a comment
Commit: https://github.com/vim/vim/commit/7c3b65eb3e882aeda7214faa17aef04d76d9c06f
Author: Christian Brabandt <cb@256bit.org>
Date: Thu Nov 14 23:22:31 2024 +0100
runtime(cfg): only consider leading // as starting a comment
fixes: https://github.com/vim/vim/issues/16051
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 14 Nov 2024 23:30:03 +0100 |
parents | 3ea2963b90d9 |
children |
rev | line source |
---|---|
7 | 1 # |
2 # Makefile for the Vim documentation on Unix | |
3 # | |
4 # If you get "don't know how to make scratch", first run make in the source | |
5 # directory. Or remove the include below. | |
6 | |
7 AWK = awk | |
8 | |
35551
e21cd2efeb87
CI: Pre-v9.0.0110 versions generate bogus documentation tag entries
Christian Brabandt <cb@256bit.org>
parents:
35534
diff
changeset
|
9 VIMPROG = ../../src/vim |
7 | 10 |
11 # include the config.mk from the source directory. It's only needed to set | |
12 # AWK, used for "make html". Comment this out if the include gives problems. | |
13 include ../../src/auto/config.mk | |
14 | |
33712
e09acb1daea7
runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
15 # Common components |
33757
b882a17c8e2b
runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents:
33712
diff
changeset
|
16 include Make_all.mak |
216 | 17 |
7 | 18 .SUFFIXES: |
19 .SUFFIXES: .c .o .txt .html | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
20 .PHONY: all vimtags noerrors perlhtml clean test_urls |
7 | 21 |
1698 | 22 all: tags vim.man evim.man vimdiff.man vimtutor.man xxd.man $(CONVERTED) |
7 | 23 |
24 # Use Vim to generate the tags file. Can only be used when Vim has been | |
35769
4f48d5d327ea
patch 9.1.0609: outdated comments in Makefile
Christian Brabandt <cb@256bit.org>
parents:
35551
diff
changeset
|
25 # compiled. Supports multiple languages. |
7 | 26 vimtags: $(DOCS) |
35534
4f63df5700aa
patch 9.1.0527: inconsistent parameter in Makefiles for Vim executable
Christian Brabandt <cb@256bit.org>
parents:
34670
diff
changeset
|
27 @$(VIMPROG) --clean -esX -V1 -u doctags.vim |
7 | 28 |
29 # Use "doctags" to generate the tags file. Only works for English! | |
30 tags: doctags $(DOCS) | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
31 ./doctags $(DOCS) | LANG=C LC_ALL=C sort >$@ |
7 | 32 uniq -d -2 tags |
33 | |
34 doctags: doctags.c | |
35 $(CC) doctags.c -o doctags | |
36 | |
37 vim.man: vim.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
38 nroff -man $? | sed -e s/.//g > $@ |
7 | 39 |
1698 | 40 evim.man: evim.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
41 nroff -man $? | sed -e s/.//g > $@ |
1698 | 42 |
7 | 43 vimdiff.man: vimdiff.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
44 nroff -man $? | sed -e s/.//g > $@ |
7 | 45 |
46 vimtutor.man: vimtutor.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
47 nroff -man $? | sed -e s/.//g > $@ |
7 | 48 |
49 xxd.man: xxd.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
50 nroff -man $? | sed -e s/.//g > $@ |
7 | 51 |
34670
879a61a9aa07
NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents:
34181
diff
changeset
|
52 uganda.nsis.txt : uganda.??? |
879a61a9aa07
NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents:
34181
diff
changeset
|
53 for dpn in $?; do \ |
879a61a9aa07
NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents:
34181
diff
changeset
|
54 trg=$@; \ |
879a61a9aa07
NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents:
34181
diff
changeset
|
55 sed -e 's/[ ]*\*.*\*//g' -e 's/vim:tw=[[:digit:]][[:digit:]]:.*//' \ |
879a61a9aa07
NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents:
34181
diff
changeset
|
56 $${dpn} | uniq > $${trg%txt}$${dpn##*.}; \ |
879a61a9aa07
NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents:
34181
diff
changeset
|
57 done |
879a61a9aa07
NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents:
34181
diff
changeset
|
58 # This files needs to be in dos fileformat for NSIS. |
35534
4f63df5700aa
patch 9.1.0527: inconsistent parameter in Makefiles for Vim executable
Christian Brabandt <cb@256bit.org>
parents:
34670
diff
changeset
|
59 $(VIMPROG) -e -X -u NONE --cmd "set notitle noicon nocp noml viminfo=" \ |
34670
879a61a9aa07
NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents:
34181
diff
changeset
|
60 -c "argdo write ++ff=dos" -c "qa" uganda.nsis.??? |
7 | 61 |
62 # Awk version of .txt to .html conversion. | |
2369
435b5c6a5191
Fix dependencies in help Makefile. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
63 html: noerrors tags $(HTMLS) |
7 | 64 @if test -f errors.log; then more errors.log; fi |
65 | |
66 noerrors: | |
67 -rm -f errors.log | |
68 | |
2369
435b5c6a5191
Fix dependencies in help Makefile. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
69 $(HTMLS): tags.ref |
435b5c6a5191
Fix dependencies in help Makefile. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
70 |
7 | 71 .txt.html: |
72 $(AWK) -f makehtml.awk $< >$@ | |
73 | |
788 | 74 # index.html is the starting point for HTML, but for the help files it is |
75 # help.txt. Therefore use vimindex.html for index.txt. | |
76 index.html: help.txt | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
77 $(AWK) -f makehtml.awk $? >$@ |
788 | 78 |
79 vimindex.html: index.txt | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
80 $(AWK) -f makehtml.awk $? >$@ |
788 | 81 |
7 | 82 tags.ref tags.html: tags |
83 $(AWK) -f maketags.awk tags >tags.html | |
84 | |
85 # Perl version of .txt to .html conversion. | |
86 # There can't be two rules to produce a .html from a .txt file. | |
87 # Just run over all .txt files each time one changes. It's fast anyway. | |
88 perlhtml: tags $(DOCS) | |
89 ./vim2html.pl tags $(DOCS) | |
90 | |
12968 | 91 # Check URLs in the help with "curl". |
92 test_urls: | |
35534
4f63df5700aa
patch 9.1.0527: inconsistent parameter in Makefiles for Vim executable
Christian Brabandt <cb@256bit.org>
parents:
34670
diff
changeset
|
93 $(VIMPROG) --clean -S test_urls.vim |
12968 | 94 |
7 | 95 clean: |
21242
c2fbac867d9c
patch 8.2.1172: error messages when doing "make clean" in doc or tee
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
96 -rm -f doctags *.html tags.ref |
7 | 97 |
98 # These files are in the extra archive, skip if not present | |
99 | |
100 arabic.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
101 touch $@ |
7 | 102 |
103 farsi.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
104 touch $@ |
7 | 105 |
106 hebrew.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
107 touch $@ |
7 | 108 |
109 russian.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
110 touch $@ |
7 | 111 |
112 gui_w32.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
113 touch $@ |
7 | 114 |
115 if_ole.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
116 touch $@ |
7 | 117 |
118 os_390.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
119 touch $@ |
7 | 120 |
121 os_amiga.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
122 touch $@ |
7 | 123 |
124 os_beos.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
125 touch $@ |
7 | 126 |
127 os_dos.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
128 touch $@ |
7 | 129 |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19181
diff
changeset
|
130 os_haiku.txt: |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
131 touch $@ |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
19181
diff
changeset
|
132 |
7 | 133 os_mac.txt: |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
134 touch $@ |
7 | 135 |
136 os_mint.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
137 touch $@ |
7 | 138 |
139 os_msdos.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
140 touch $@ |
7 | 141 |
142 os_os2.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
143 touch $@ |
7 | 144 |
145 os_qnx.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
146 touch $@ |
7 | 147 |
148 os_risc.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
149 touch $@ |
7 | 150 |
151 os_win32.txt: | |
34181
94a9edb82750
runtime(doc): improve doc makefiles, add clean rule (#13855)
Christian Brabandt <cb@256bit.org>
parents:
33757
diff
changeset
|
152 touch $@ |
216 | 153 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
154 # In *BSD, the variable '$<' is used in suffix-transformation rules (in GNU this |
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
155 # is called "implicit rules", and in MS Windows it is called "inference rules"). |
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
156 # For code portability, it is better to use the '$?' variable for explicit rules. |
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
157 # Especially since there is only one dependency and it should presumably always |
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
158 # be newer than the target file. |
33757
b882a17c8e2b
runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents:
33712
diff
changeset
|
159 vim-da.UTF-8.1: vim-da.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
160 iconv -f latin1 -t UTF-8 $? >$@ |
33712
e09acb1daea7
runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
161 |
33757
b882a17c8e2b
runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents:
33712
diff
changeset
|
162 vimdiff-da.UTF-8.1: vimdiff-da.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
163 iconv -f latin1 -t UTF-8 $? >$@ |
33712
e09acb1daea7
runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
164 |
33757
b882a17c8e2b
runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents:
33712
diff
changeset
|
165 vimtutor-da.UTF-8.1: vimtutor-da.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
166 iconv -f latin1 -t UTF-8 $? >$@ |
33712
e09acb1daea7
runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
167 |
33757
b882a17c8e2b
runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents:
33712
diff
changeset
|
168 vim-de.UTF-8.1: vim-de.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
169 iconv -f latin1 -t UTF-8 $? >$@ |
33712
e09acb1daea7
runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
170 |
236 | 171 vim-fr.UTF-8.1: vim-fr.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
172 iconv -f latin1 -t UTF-8 $? >$@ |
236 | 173 |
174 evim-fr.UTF-8.1: evim-fr.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
175 iconv -f latin1 -t UTF-8 $? >$@ |
236 | 176 |
177 vimdiff-fr.UTF-8.1: vimdiff-fr.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
178 iconv -f latin1 -t UTF-8 $? >$@ |
236 | 179 |
180 vimtutor-fr.UTF-8.1: vimtutor-fr.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
181 iconv -f latin1 -t UTF-8 $? >$@ |
236 | 182 |
183 xxd-fr.UTF-8.1: xxd-fr.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
184 iconv -f latin1 -t UTF-8 $? >$@ |
236 | 185 |
216 | 186 vim-it.UTF-8.1: vim-it.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
187 iconv -f latin1 -t UTF-8 $? >$@ |
216 | 188 |
189 evim-it.UTF-8.1: evim-it.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
190 iconv -f latin1 -t UTF-8 $? >$@ |
216 | 191 |
192 vimdiff-it.UTF-8.1: vimdiff-it.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
193 iconv -f latin1 -t UTF-8 $? >$@ |
216 | 194 |
195 vimtutor-it.UTF-8.1: vimtutor-it.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
196 iconv -f latin1 -t UTF-8 $? >$@ |
216 | 197 |
198 xxd-it.UTF-8.1: xxd-it.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
199 iconv -f latin1 -t UTF-8 $? >$@ |
216 | 200 |
1698 | 201 vim-pl.UTF-8.1: vim-pl.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
202 iconv -f latin2 -t UTF-8 $? >$@ |
1698 | 203 |
204 evim-pl.UTF-8.1: evim-pl.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
205 iconv -f latin2 -t UTF-8 $? >$@ |
1698 | 206 |
207 vimdiff-pl.UTF-8.1: vimdiff-pl.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
208 iconv -f latin2 -t UTF-8 $? >$@ |
1698 | 209 |
210 vimtutor-pl.UTF-8.1: vimtutor-pl.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
211 iconv -f latin2 -t UTF-8 $? >$@ |
1698 | 212 |
213 xxd-pl.UTF-8.1: xxd-pl.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
214 iconv -f latin2 -t UTF-8 $? >$@ |
1698 | 215 |
216 | 216 vim-ru.UTF-8.1: vim-ru.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
217 iconv -f KOI8-R -t UTF-8 $? >$@ |
216 | 218 |
219 evim-ru.UTF-8.1: evim-ru.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
220 iconv -f KOI8-R -t UTF-8 $? >$@ |
216 | 221 |
222 vimdiff-ru.UTF-8.1: vimdiff-ru.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
223 iconv -f KOI8-R -t UTF-8 $? >$@ |
216 | 224 |
225 vimtutor-ru.UTF-8.1: vimtutor-ru.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
226 iconv -f KOI8-R -t UTF-8 $? >$@ |
216 | 227 |
228 xxd-ru.UTF-8.1: xxd-ru.1 | |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
229 iconv -f KOI8-R -t UTF-8 $? >$@ |
20611
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
230 |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
231 vim-tr.UTF-8.1: vim-tr.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
232 iconv -f latin5 -t UTF-8 $? >$@ |
20611
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
233 |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
234 evim-tr.UTF-8.1: evim-tr.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
235 iconv -f latin5 -t UTF-8 $? >$@ |
20611
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
236 |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
237 vimdiff-tr.UTF-8.1: vimdiff-tr.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
238 iconv -f latin5 -t UTF-8 $? >$@ |
20611
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
239 |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
240 vimtutor-tr.UTF-8.1: vimtutor-tr.1 |
35984
3ea2963b90d9
runtime(doc): update Makefile and make it portable between GNU and BSD
Christian Brabandt <cb@256bit.org>
parents:
35769
diff
changeset
|
241 iconv -f latin5 -t UTF-8 $? >$@ |