annotate runtime/doc/Make_mvc.mak @ 34092:ff27442e7851 v9.1.0013

patch 9.1.0013: Modula2 filetype support lacking Commit: https://github.com/vim/vim/commit/68a89470693c7687d4e736ca056c05de632e3ac7 Author: Doug Kearns <dougkearns@gmail.com> Date: Fri Jan 5 17:59:04 2024 +0100 patch 9.1.0013: Modula2 filetype support lacking Problem: Modula2 filetype support lacking Solution: Improve the Modula-2 runtime support, add additional modula2 dialects, add compiler plugin, update syntax highlighting, include syntax tests, update Makefiles (Doug Kearns) closes: #6796 closes: #8115 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Benjamin Kowarsch <trijezdci@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Fri, 05 Jan 2024 18:15:04 +0100
parents 53bab9f88162
children 94a9edb82750
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 #
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2 # Makefile for the Vim documentation on Windows
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 #
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4 # 17.11.23, Restorer, <restorer@mail2k.ru>
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6 # Common components
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
7 !INCLUDE Make_all.mak
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10 # TODO: to think about what to use instead of awk. PowerShell?
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
11 #AWK =
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
12
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
13 # Correct the following line for the where executeable file vim is installed.
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
14 # Please do not put the path in quotes.
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15 VIMEXE = D:\Programs\Vim\vim90\vim.exe
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
16
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
17 # Correct the following line for the directory where iconv installed.
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
18 # Please do not put the path in quotes.
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
19 ICONV_PATH = D:\Programs\GetText\bin
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
20
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
21 # In case some package like GnuWin32, UnixUtils
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
22 # or something similar is installed on the system.
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
23 # If the "touch" program is installed on the system, but it is not registered
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
24 # in the %PATH% environment variable, then specify the full path to this file.
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
25 !IF EXIST ("touch.exe")
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
26 TOUCH = "touch.exe" %1
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
27 !ELSE
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
28 TOUCH = if exist %1 ( copy /b %1+,, ) else ( type nul >%1 )
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
29 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
30
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
31 # In case some package like GnuWin32, UnixUtils, gettext
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
32 # or something similar is installed on the system.
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
33 # If the "iconv" program is installed on the system, but it is not registered
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
34 # in the %PATH% environment variable, then specify the full path to this file.
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
35 !IF EXIST ("iconv.exe")
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
36 ICONV = "iconv.exe"
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
37 !ELSEIF EXIST ("$(ICONV_PATH)\iconv.exe")
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
38 ICONV = "$(ICONV_PATH)\iconv.exe"
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
39 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
40
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
41 RM = del /q
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
42
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
43 .SUFFIXES :
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
44 .SUFFIXES : .c .o .txt .html
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
45
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
46
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
47 all : tags perlhtml $(CONVERTED)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
48
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
49 # Use "doctags" to generate the tags file. Only works for English!
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
50 tags : doctags $(DOCS)
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
51 doctags.exe $(DOCS) | sort /L C /O tags
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
52 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
53 "(Get-Content -Raw tags | Get-Unique | % {$$_ -replace \"`r\", \"\"}) \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
54 | New-Item -Force -Path . -ItemType file -Name tags"
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
55
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
56 doctags : doctags.c
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
57 $(CC) doctags.c
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
58
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
59
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
60 # Use Vim to generate the tags file. Can only be used when Vim has been
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
61 # compiled and installed. Supports multiple languages.
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
62 vimtags : $(DOCS)
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
63 @"$(VIMEXE)" --clean -esX -V1 -u doctags.vim
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
64
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
65
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
66 uganda.nsis.txt : uganda.???
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
67 !@powershell -nologo -noprofile -Command \
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
68 $$ext=(Get-Item $?).Extension; (Get-Content $? ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
69 % {$$_ -replace '\s*\*[-a-zA-Z0-9.]*\*', '' -replace 'vim:tw=78:.*', ''}) \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
70 ^| Set-Content $*$$ext
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
71 !@powershell -nologo -noprofile -Command \
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
72 $$ext=(Get-Item $?).Extension; \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
73 (Get-Content -Raw $(@B)$$ext).Trim() -replace '(\r\n){3,}', '$$1$$1' \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
74 ^| Set-Content $(@B)$$ext
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
75
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
76
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
77 # TODO:
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
78 #html: noerrors tags $(HTMLS)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
79 # if exist errors.log (more errors.log)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
80
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
81 # TODO:
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
82 #noerrors:
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
83 # $(RM) errors.log
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
84
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
85 # TODO:
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
86 #.txt.html:
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
87
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
88
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
89 # TODO:
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
90 #index.html: help.txt
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
91
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
92
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
93 # TODO:
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
94 #vimindex.html: index.txt
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
95
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
96
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
97 # TODO:
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
98 #tags.ref tags.html: tags
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
99
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
100 # Perl version of .txt to .html conversion.
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
101 # There can't be two rules to produce a .html from a .txt file.
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
102 # Just run over all .txt files each time one changes. It's fast anyway.
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
103 perlhtml : tags $(DOCS)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
104 vim2html.pl tags $(DOCS)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
105
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
106 # Check URLs in the help with "curl" or "powershell".
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
107 test_urls :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
108 "$(VIMEXE)" -S test_urls.vim
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
109
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
110 clean :
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
111 $(RM) doctags.exe doctags.obj
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
112 $(RM) *.html vim-stylesheet.css
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
113
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
114
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
115 arabic.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
116 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
117 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
118 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
119
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
120 farsi.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
121 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
122 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
123 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
124
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
125 hebrew.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
126 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
127 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
128 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
129
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
130 russian.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
131 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
132 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
133 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
134
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
135 gui_w32.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
136 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
137 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
138 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
139
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
140 if_ole.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
141 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
142 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
143 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
144
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
145 os_390.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
146 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
147 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
148 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
149
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
150 os_amiga.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
151 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
152 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
153 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
154
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
155 os_beos.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
156 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
157 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
158 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
159
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
160 os_dos.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
161 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
162 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
163 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
164
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
165 os_haiku.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
166 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
167 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
168 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
169
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
170 os_mac.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
171 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
172 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
173 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
174
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
175 os_mint.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
176 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
177 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
178 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
179
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
180 os_msdos.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
181 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
182 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
183 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
184
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
185 os_os2.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
186 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
187 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
188 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
189
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
190 os_qnx.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
191 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
192 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
193 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
194
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
195 os_risc.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
196 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
197 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
198 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
199
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
200 os_win32.txt :
33828
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
201 <<touch.bat $@
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
202 @$(TOUCH)
53bab9f88162 runtime(doc): Update doc Makefiles with comments from #13567 (#13577)
Christian Brabandt <cb@256bit.org>
parents: 33757
diff changeset
203 <<
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
204
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
205 convert-all : $(CONVERTED)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
206 !IF [powershell -nologo -noprofile "exit $$psversiontable.psversion.major"] == 2
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
207 !ERROR The program "PowerShell" version 3.0 or higher is required to work
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
208 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
209
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
210 vim-da.UTF-8.1 : vim-da.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
211 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
212 $(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
213 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
214 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
215 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
216 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
217 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
218 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
219
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
220 vimdiff-da.UTF-8.1 : vimdiff-da.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
221 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
222 $(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
223 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
224 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
225 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
226 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
227 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
228 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
229
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
230 vimtutor-da.UTF-8.1 : vimtutor-da.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
231 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
232 $(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
233 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
234 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
235 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
236 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
237 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
238 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
239
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
240 vim-de.UTF-8.1 : vim-de.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
241 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
242 $(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
243 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
244 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
245 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
246 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
247 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
248 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
249
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
250 evim-fr.UTF-8.1 : evim-fr.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
251 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
252 $(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
253 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
254 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
255 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
256 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
257 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
258 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
259
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
260 vim-fr.UTF-8.1 : vim-fr.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
261 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
262 $(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
263 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
264 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
265 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
266 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
267 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
268 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
269
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
270 vimdiff-fr.UTF-8.1 : vimdiff-fr.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
271 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
272 $(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
273 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
274 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
275 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
276 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
277 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
278 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
279
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
280 vimtutor-fr.UTF-8.1 : vimtutor-fr.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
281 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
282 $(ICONV) -f ISO-8859-1 -t utf-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
283 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
284 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
285 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
286 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
287 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
288 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
289
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
290 xxd-fr.UTF-8.1 : xxd-fr.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
291 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
292 $(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
293 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
294 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
295 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
296 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
297 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
298 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
299
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
300 evim-it.UTF-8.1 : evim-it.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
301 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
302 $(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
303 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
304 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
305 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
306 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
307 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
308 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
309
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
310 vim-it.UTF-8.1 : vim-it.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
311 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
312 $(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
313 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
314 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
315 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
316 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
317 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
318 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
319
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
320 vimdiff-it.UTF-8.1 : vimdiff-it.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
321 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
322 $(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
323 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
324 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
325 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
326 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
327 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
328 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
329
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
330 vimtutor-it.UTF-8.1 : vimtutor-it.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
331 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
332 $(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
333 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
334 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
335 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
336 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
337 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
338 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
339
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
340 xxd-it.UTF-8.1 : xxd-it.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
341 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
342 $(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
343 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
344 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
345 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
346 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
347 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
348 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
349
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
350 evim-pl.UTF-8.1 : evim-pl.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
351 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
352 $(ICONV) -f ISO-8859-2 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
353 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
354 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
355 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
356 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28592)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
357 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
358 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
359
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
360 vim-pl.UTF-8.1 : vim-pl.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
361 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
362 $(ICONV) -f ISO-8859-2 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
363 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
364 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
365 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
366 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28592)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
367 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
368 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
369
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
370 vimdiff-pl.UTF-8.1 : vimdiff-pl.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
371 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
372 $(ICONV) -f ISO-8859-2 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
373 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
374 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
375 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
376 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28592)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
377 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
378 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
379
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
380 vimtutor-pl.UTF-8.1 : vimtutor-pl.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
381 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
382 $(ICONV) -f ISO-8859-2 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
383 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
384 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
385 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
386 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28592)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
387 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
388 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
389
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
390 xxd-pl.UTF-8.1 : xxd-pl.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
391 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
392 $(ICONV) -f ISO-8859-2 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
393 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
394 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
395 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
396 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28592)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
397 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
398 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
399
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
400 evim-ru.UTF-8.1 : evim-ru.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
401 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
402 $(ICONV) -f KOI8-R -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
403 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
404 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
405 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
406 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(20866)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
407 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
408 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
409
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
410 vim-ru.UTF-8.1 : vim-ru.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
411 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
412 $(ICONV) -f KOI8-R -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
413 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
414 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
415 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
416 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(20866)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
417 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
418 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
419
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
420 vimdiff-ru.UTF-8.1 : vimdiff-ru.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
421 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
422 $(ICONV) -f KOI8-R -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
423 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
424 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
425 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
426 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(20866)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
427 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
428 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
429
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
430 vimtutor-ru.UTF-8.1 : vimtutor-ru.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
431 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
432 $(ICONV) -f KOI8-R -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
433 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
434 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
435 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
436 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(20866)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
437 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
438 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
439
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
440 xxd-ru.UTF-8.1 : xxd-ru.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
441 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
442 $(ICONV) -f KOI8-R -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
443 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
444 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
445 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
446 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(20866)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
447 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
448 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
449
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
450 evim-tr.UTF-8.1 : evim-tr.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
451 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
452 $(ICONV) -f ISO-8859-9 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
453 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
454 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
455 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
456 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28599)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
457 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
458 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
459
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
460 vim-tr.UTF-8.1 : vim-tr.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
461 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
462 $(ICONV) -f ISO-8859-9 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
463 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
464 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
465 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
466 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28599)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
467 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
468 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
469
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
470 vimdiff-tr.UTF-8.1 : vimdiff-tr.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
471 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
472 $(ICONV) -f ISO-8859-9 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
473 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
474 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
475 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
476 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28599)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
477 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
478 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
479
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
480 vimtutor-tr.UTF-8.1 : vimtutor-tr.1
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
481 !IF DEFINED (ICONV)
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
482 $(ICONV) -f ISO-8859-9 -t UTF-8 $? >$@
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
483 !ELSE
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
484 # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
33757
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
485 powershell -nologo -noprofile -Command \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
486 [IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28599)) ^| \
b882a17c8e2b runtime(doc): Renamed "makefile_*.mak" for Vim documentation (#13517)
Christian Brabandt <cb@256bit.org>
parents: 33712
diff changeset
487 1>nul New-Item -Force -Path . -ItemType file -Name $@
33712
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
488 !ENDIF
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
489
e09acb1daea7 runtime(doc): Add Makefile for the Vim documentation on Windows (#13467)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
490 # vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0 ft=make: