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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 # Makefile for the Vim documentation on Unix
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 # If you get "don't know how to make scratch", first run make in the source
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 # directory. Or remove the include below.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 AWK = awk
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 # include the config.mk from the source directory. It's only needed to set
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 # AWK, used for "make html". Comment this out if the include gives problems.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 include ../../src/auto/config.mk
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
17
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 .SUFFIXES:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1619
diff changeset
22 all: tags vim.man evim.man vimdiff.man vimtutor.man xxd.man $(CONVERTED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 # Use "doctags" to generate the tags file. Only works for English!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32 uniq -d -2 tags
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 doctags: doctags.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 $(CC) doctags.c -o doctags
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1619
diff changeset
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
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1619
diff changeset
42
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
45
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 @if test -f errors.log; then more errors.log; fi
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 noerrors:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 -rm -f errors.log
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71 .txt.html:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 $(AWK) -f makehtml.awk $< >$@
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73
788
b5aed52a4881 updated for version 7.0230
vimboss
parents: 718
diff changeset
74 # index.html is the starting point for HTML, but for the help files it is
b5aed52a4881 updated for version 7.0230
vimboss
parents: 718
diff changeset
75 # help.txt. Therefore use vimindex.html for index.txt.
b5aed52a4881 updated for version 7.0230
vimboss
parents: 718
diff changeset
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
b5aed52a4881 updated for version 7.0230
vimboss
parents: 718
diff changeset
78
b5aed52a4881 updated for version 7.0230
vimboss
parents: 718
diff changeset
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
b5aed52a4881 updated for version 7.0230
vimboss
parents: 718
diff changeset
81
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 tags.ref tags.html: tags
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 $(AWK) -f maketags.awk tags >tags.html
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85 # Perl version of .txt to .html conversion.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 # There can't be two rules to produce a .html from a .txt file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87 # Just run over all .txt files each time one changes. It's fast anyway.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88 perlhtml: tags $(DOCS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 ./vim2html.pl tags $(DOCS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90
12968
45987b1b77dc Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 12849
diff changeset
91 # Check URLs in the help with "curl".
45987b1b77dc Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 12849
diff changeset
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
45987b1b77dc Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 12849
diff changeset
94
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98 # These files are in the extra archive, skip if not present
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
114
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
135
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
138
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
141
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
144
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
147
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
150
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
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
4707450c2b33 updated for version 7.0066
vimboss
parents: 226
diff changeset
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
4707450c2b33 updated for version 7.0066
vimboss
parents: 226
diff changeset
173
4707450c2b33 updated for version 7.0066
vimboss
parents: 226
diff changeset
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
4707450c2b33 updated for version 7.0066
vimboss
parents: 226
diff changeset
176
4707450c2b33 updated for version 7.0066
vimboss
parents: 226
diff changeset
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
4707450c2b33 updated for version 7.0066
vimboss
parents: 226
diff changeset
179
4707450c2b33 updated for version 7.0066
vimboss
parents: 226
diff changeset
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
4707450c2b33 updated for version 7.0066
vimboss
parents: 226
diff changeset
182
4707450c2b33 updated for version 7.0066
vimboss
parents: 226
diff changeset
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
4707450c2b33 updated for version 7.0066
vimboss
parents: 226
diff changeset
185
216
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
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
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
188
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
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
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
191
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
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
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
194
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
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
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
197
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
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
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
200
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1619
diff changeset
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
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1619
diff changeset
203
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1619
diff changeset
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
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1619
diff changeset
206
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1619
diff changeset
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
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1619
diff changeset
209
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1619
diff changeset
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
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1619
diff changeset
212
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1619
diff changeset
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
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1619
diff changeset
215
216
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
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
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
218
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
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
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
221
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
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
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
224
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
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
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
227
da182deebec7 updated for version 7.0061
vimboss
parents: 138
diff changeset
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 $? >$@