| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | #
 | 
					
						
							|  |  |  | # Makefile for the Vim documentation on Windows
 | 
					
						
							|  |  |  | #
 | 
					
						
							| 
									
										
										
										
											2024-03-28 09:19:44 +00:00
										 |  |  | # 20.03.24, Restorer, <restorer@mail2k.ru>
 | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Common components
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | !INCLUDE Make_all.mak | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # TODO: to think about what to use instead of awk. PowerShell?
 | 
					
						
							|  |  |  | #AWK =
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-10 20:26:12 +01:00
										 |  |  | # Correct the following line for the where executable file vim is installed.
 | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | # Please do not put the path in quotes.
 | 
					
						
							| 
									
										
										
										
											2025-01-17 14:04:44 +01:00
										 |  |  | VIMPROG = ..\..\src\vim.exe | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | # Correct the following line for the directory where iconv installed.
 | 
					
						
							|  |  |  | # Please do not put the path in quotes.
 | 
					
						
							|  |  |  | ICONV_PATH = D:\Programs\GetText\bin | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # In case some package like GnuWin32, UnixUtils
 | 
					
						
							|  |  |  | # or something similar is installed on the system.
 | 
					
						
							|  |  |  | # If the "touch" program is installed on the system, but it is not registered
 | 
					
						
							|  |  |  | # in the %PATH% environment variable, then specify the full path to this file.
 | 
					
						
							|  |  |  | !IF EXIST ("touch.exe") | 
					
						
							| 
									
										
										
										
											2024-03-28 09:19:44 +00:00
										 |  |  | TOUCH = touch.exe %1 | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ELSE | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | TOUCH = if exist %1 ( copy /b %1+,, ) else ( type nul >%1 ) | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # In case some package like GnuWin32, UnixUtils, gettext
 | 
					
						
							|  |  |  | # or something similar is installed on the system.
 | 
					
						
							|  |  |  | # If the "iconv" program is installed on the system, but it is not registered
 | 
					
						
							|  |  |  | # in the %PATH% environment variable, then specify the full path to this file.
 | 
					
						
							|  |  |  | !IF EXIST ("iconv.exe") | 
					
						
							| 
									
										
										
										
											2024-03-28 09:19:44 +00:00
										 |  |  | ICONV = iconv.exe | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | !ELSEIF EXIST ("$(ICONV_PATH)\iconv.exe") | 
					
						
							|  |  |  | ICONV = "$(ICONV_PATH)\iconv.exe" | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | RM = del /q | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | PS = PowerShell.exe | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PSFLAGS = -NoLogo -NoProfile -Command | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | .SUFFIXES : | 
					
						
							|  |  |  | .SUFFIXES : .c .o .txt .html | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | all : tags perlhtml $(CONVERTED) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Use "doctags" to generate the tags file.  Only works for English!
 | 
					
						
							|  |  |  | tags : doctags $(DOCS) | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	doctags.exe $(DOCS) | sort /L C /O tags | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2024-03-28 09:19:44 +00:00
										 |  |  | 		(Get-Content -Raw tags ^| Get-Unique ^| %%{$$_ -replace \"`r\", \"\"}) \
 | 
					
						
							| 
									
										
										
										
											2025-01-17 14:04:44 +01:00
										 |  |  | 		^| New-Item -Path . -Name tags -ItemType file -Force | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | doctags : doctags.c | 
					
						
							|  |  |  | 	$(CC) doctags.c | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Use Vim to generate the tags file.  Can only be used when Vim has been
 | 
					
						
							|  |  |  | # compiled and installed.  Supports multiple languages.
 | 
					
						
							|  |  |  | vimtags : $(DOCS) | 
					
						
							| 
									
										
										
										
											2024-07-04 17:47:16 +02:00
										 |  |  | 	@"$(VIMPROG)" --clean -esX -V1 -u doctags.vim | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # TODO:
 | 
					
						
							|  |  |  | #html: noerrors tags $(HTMLS)
 | 
					
						
							|  |  |  | #	if exist errors.log (more errors.log)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # TODO:
 | 
					
						
							|  |  |  | #noerrors:
 | 
					
						
							|  |  |  | #	$(RM) errors.log
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # TODO:
 | 
					
						
							|  |  |  | #.txt.html:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # TODO:
 | 
					
						
							|  |  |  | #index.html: help.txt
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # TODO:
 | 
					
						
							|  |  |  | #vimindex.html: index.txt
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # TODO:
 | 
					
						
							|  |  |  | #tags.ref tags.html: tags
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Perl version of .txt to .html conversion.
 | 
					
						
							|  |  |  | # There can't be two rules to produce a .html from a .txt file.
 | 
					
						
							|  |  |  | # Just run over all .txt files each time one changes.  It's fast anyway.
 | 
					
						
							|  |  |  | perlhtml : tags $(DOCS) | 
					
						
							|  |  |  | 	vim2html.pl tags $(DOCS) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Check URLs in the help with "curl" or "powershell".
 | 
					
						
							|  |  |  | test_urls : | 
					
						
							| 
									
										
										
										
											2024-07-04 17:47:16 +02:00
										 |  |  | 	"$(VIMPROG)" --clean -S test_urls.vim | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | clean : | 
					
						
							| 
									
										
										
										
											2025-01-17 14:04:44 +01:00
										 |  |  | 	- $(RM) doctags.exe doctags.obj | 
					
						
							|  |  |  | 	- $(RM) *.html vim-stylesheet.css | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | arabic.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | farsi.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | hebrew.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | russian.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | gui_w32.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if_ole.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | os_390.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | os_amiga.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | os_beos.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | os_dos.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | os_haiku.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | os_mac.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | os_mint.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | os_msdos.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | os_os2.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | os_qnx.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | os_risc.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | os_win32.txt : | 
					
						
							| 
									
										
										
										
											2023-11-25 14:39:51 +00:00
										 |  |  | 	<<touch.bat $@ | 
					
						
							|  |  |  | @$(TOUCH) | 
					
						
							|  |  |  | << | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | convert-all : $(CONVERTED) | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | !IF [$(PS) $(PSFLAGS) "exit $$psversiontable.psversion.major"] == 2 | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ERROR The program "PowerShell" version 3.0 or higher is required to work | 
					
						
							|  |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vim-da.UTF-8.1 : vim-da.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vimdiff-da.UTF-8.1 : vimdiff-da.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vimtutor-da.UTF-8.1 : vimtutor-da.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vim-de.UTF-8.1 : vim-de.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | evim-fr.UTF-8.1 : evim-fr.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vim-fr.UTF-8.1 : vim-fr.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vimdiff-fr.UTF-8.1 : vimdiff-fr.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vimtutor-fr.UTF-8.1 : vimtutor-fr.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t utf-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | xxd-fr.UTF-8.1 : xxd-fr.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | evim-it.UTF-8.1 : evim-it.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vim-it.UTF-8.1 : vim-it.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vimdiff-it.UTF-8.1 : vimdiff-it.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vimtutor-it.UTF-8.1 : vimtutor-it.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | xxd-it.UTF-8.1 : xxd-it.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-1 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28591)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | evim-pl.UTF-8.1 : evim-pl.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-2 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28592)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vim-pl.UTF-8.1 : vim-pl.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-2 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28592)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vimdiff-pl.UTF-8.1 : vimdiff-pl.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-2 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28592)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vimtutor-pl.UTF-8.1 : vimtutor-pl.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-2 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28592)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | xxd-pl.UTF-8.1 : xxd-pl.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-2 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28592)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | evim-ru.UTF-8.1 : evim-ru.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f KOI8-R -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(20866)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vim-ru.UTF-8.1 : vim-ru.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f KOI8-R -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(20866)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vimdiff-ru.UTF-8.1 : vimdiff-ru.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f KOI8-R -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(20866)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vimtutor-ru.UTF-8.1 : vimtutor-ru.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f KOI8-R -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(20866)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | xxd-ru.UTF-8.1 : xxd-ru.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f KOI8-R -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(20866)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | evim-tr.UTF-8.1 : evim-tr.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-9 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28599)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vim-tr.UTF-8.1 : vim-tr.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-9 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28599)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vimdiff-tr.UTF-8.1 : vimdiff-tr.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-9 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28599)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | vimtutor-tr.UTF-8.1 : vimtutor-tr.1 | 
					
						
							|  |  |  | !IF DEFINED (ICONV) | 
					
						
							|  |  |  | 	$(ICONV) -f ISO-8859-9 -t UTF-8 $? >$@ | 
					
						
							|  |  |  | !ELSE | 
					
						
							|  |  |  | # Conversion to UTF-8 encoding without BOM and with UNIX-like line ending
 | 
					
						
							| 
									
										
										
										
											2024-01-22 22:42:44 +03:00
										 |  |  | 	$(PS) $(PSFLAGS) \
 | 
					
						
							| 
									
										
										
										
											2023-11-11 18:26:00 +00:00
										 |  |  | 		[IO.File]::ReadAllText(\"$?\", [Text.Encoding]::GetEncoding(28599)) ^| \
 | 
					
						
							|  |  |  | 		1>nul New-Item -Force -Path . -ItemType file -Name $@ | 
					
						
							| 
									
										
										
										
											2023-11-04 08:57:09 +00:00
										 |  |  | !ENDIF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0 ft=make:
 |