xref: /vim-8.2.3635/Makefile (revision a54d2fc0)
1# This Makefile has two purposes:
2# 1. Starting the compilation of Vim for Unix.
3# 2. Creating the various distribution files.
4
5
6#########################################################################
7# 1. Starting the compilation of Vim for Unix.
8#
9# Using this Makefile without an argument will compile Vim for Unix.
10# "make install" is also possible.
11#
12# NOTE: If this doesn't work properly, first change directory to "src" and use
13# the Makefile there:
14#	cd src
15#	make [arguments]
16# Noticed on AIX systems when using this Makefile: Trying to run "cproto" or
17# something else after Vim has been compiled.  Don't know why...
18# Noticed on OS/390 Unix: Restarts configure.
19#
20# The first (default) target is "first".  This will result in running
21# "make first", so that the target from "src/auto/config.mk" is picked
22# up properly when config didn't run yet.  Doing "make all" before configure
23# has run can result in compiling with $(CC) empty.
24
25first:
26	@if test ! -f src/auto/config.mk; then \
27		cp src/config.mk.dist src/auto/config.mk; \
28	fi
29	@echo "Starting make in the src directory."
30	@echo "If there are problems, cd to the src directory and run make there"
31	cd src && $(MAKE) $@
32
33# Some make programs use the last target for the $@ default; put the other
34# targets separately to always let $@ expand to "first" by default.
35all install uninstall tools config configure reconfig proto depend lint tags types test scripttests unittests testclean clean distclean:
36	@if test ! -f src/auto/config.mk; then \
37		cp src/config.mk.dist src/auto/config.mk; \
38	fi
39	@echo "Starting make in the src directory."
40	@echo "If there are problems, cd to the src directory and run make there"
41	cd src && $(MAKE) $@
42
43
44#########################################################################
45# 2. Creating the various distribution files.
46#
47# TARGET	PRODUCES		CONTAINS
48# unixall	vim-#.#.tar.bz2		All runtime files and sources, for Unix
49#
50# html		vim##html.zip		HTML docs
51#
52# dossrc	vim##src.zip		sources for MS-DOS
53# dosrt		vim##rt.zip		runtime for MS-DOS
54# dosbin	vim##w32.zip		binary for Win32
55#		gvim##.zip		binary for GUI Win32
56#		gvim##ole.zip		OLE exe for Win32 GUI
57#
58# OBSOLETE
59# amisrc	vim##src.tgz		sources for Amiga
60# amirt		vim##rt.tgz		runtime for Amiga
61# amibin	vim##bin.tgz		binary for Amiga
62#
63# farsi		farsi##.zip		Farsi fonts
64#
65#    All output files are created in the "dist" directory.  Existing files are
66#    overwritten!
67#    To do all this you need the Unix archive and compiled binaries.
68#    Before creating an archive first delete all backup files, *.orig, etc.
69
70MAJOR = 8
71MINOR = 0
72
73# CHECKLIST for creating a new version:
74#
75# - Update Vim version number.  For a test version in: src/version.h,
76#   READMEdir/Contents, MAJOR/MINOR above, VIMMAJOR and VIMMINOR in
77#   src/Makefile, README.txt, README.md, READMEdir/README*.txt,
78#   runtime/doc/*.txt and make nsis/gvim_version.nsh.
79#   For a minor/major version: src/GvimExt/GvimExt.reg, src/vim.def,
80#   src/gvim.exe.mnf.
81# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, MZscheme, Lua (if
82#   you can make it all work), Cscope and "huge" features.  Exclude workshop
83#   and SNiFF.
84# - With these features: "make proto" (requires cproto and Motif installed;
85#   ignore warnings for missing include files, fix problems for syntax errors).
86# - With these features: "make depend" (works best with gcc).
87# - If you have a lint program: "make lint" and check the output (ignore GTK
88#   warnings).
89# - If you have valgrind, enable it in src/testdir/Makefile and run "make
90#   test".  Enable EXITFREE, disable GUI, scheme and tcl to avoid false alarms.
91#   Check the valgrind output.
92# - If you have the efence library, enable it in "src/Makefile" and run "make
93#   test".  Disable Python and Ruby to avoid trouble with threads (efence is
94#   not threadsafe).
95# - Adjust the date and other info in src/version.h.
96# - Correct included_patches[] in src/version.c.
97# - Check for missing entries in runtime/makemenu.vim (with checkmenu script).
98# - Check for missing options in runtime/optwin.vim et al. (with check.vim).
99# - Do "make menu" to update the runtime/synmenu.vim file.
100# - Add remarks for changes to runtime/doc/version8.txt.
101# - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL
102#   ADDITIONS".
103# - In runtime/doc run "make" and "make html" to check for errors.
104# - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain
105#   any personal preferences or the changes mentioned above.
106# - Check file protections to be "644" for text and "755" for executables (run
107#   the "check" script).
108# - Check compiling on Amiga, MS-DOS and MS-Windows.
109# - Delete all *~, *.sw?, *.orig, *.rej files
110# - "make unixall", "make html"
111# - Make diff files against the previous release: "makediff7 7.1 7.2"
112#
113# Amiga: (OBSOLETE, Amiga files are no longer distributed)
114# - "make amisrc", move the archive to the Amiga and compile:
115#   "make -f Make_manx.mak" (will use "big" features by default).
116# - Run the tests: "make -f Make_manx.mak test"
117# - Place the executables Vim and Xxd in this directory (set the executable
118#   flag).
119# - "make amirt", "make amibin".
120#
121# MS-Windows:
122# - Run make on Unix to update the ".mo" files.
123# - Get libintl-8.dll, libiconv-2.dll and libgcc_s_sjlj-1.dll. E.g. from
124#   https://mlocati.github.io/gettext-iconv-windows/ .
125#   Use the "shared-32.zip file and extract the archive to get the files.
126#   Put them in the top directory, "make dosrt" uses them.
127# - > make dossrc
128#   > make dosrt
129#   Unpack dist/vim##rt.zip and dist/vim##src.zip on an MS-Windows PC.
130# Win32 console version build:
131# - Set environment for Visual C++ 2008, e.g.:
132#   > src/msvc2008.bat
133#   Or:
134#   > C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat
135#   Or, when using the Visual C++ Toolkit 2003: "msvcsetup.bat" (adjust the
136#   paths when necessary).
137#   For Windows 98/ME the 2003 version is required, but then the executable
138#   won't work on Windows 7 and 64 bit systems.
139# - > cd src
140#   > nmake -f Make_mvc.mak
141# - Run the tests:
142#   > nmake -f Make_mvc.mak testclean
143#   > nmake -f Make_mvc.mak test
144#   - check the output.
145# - Rename (using ../tools/rename.bat):
146#           vim.exe to vimw32.exe
147#           tee/tee.exe to teew32.exe
148#           xxd/xxd.exe to xxdw32.exe
149#           vim.pdb to vimw32.pdb
150#           install.exe to installw32.exe
151#           uninstal.exe to uninstalw32.exe
152# Win32 GUI version build:
153# - > cd src
154#   > nmake -f Make_mvc.mak GUI=yes
155# - Run the tests:
156#   > nmake -f Make_mvc.mak testclean
157#   > nmake -f Make_mvc.mak testgvim
158#   - check the output.
159# - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
160# - Move gvim.pdb to here.
161# - Copy "GvimExt/gvimext.dll" to here.
162# - Delete vimrun.exe, install.exe and uninstal.exe.
163# Win32 GUI version with OLE, PERL, Ruby, TCL, PYTHON and dynamic IME:
164# - Install the interfaces you want, see src/INSTALLpc.txt
165# - Build:
166#   > cd src
167#   Adjust bigvim.bat to match the version of each interface you want.
168#   > bigvim.bat
169# - Run the tests:
170#   > nmake -f Make_mvc.mak testclean
171#   > nmake -f Make_mvc.mak testgvim
172#   - check the output.
173# - Rename "gvim.exe" to "gvim_ole.exe".
174# - Rename gvim.pdb to "gvim_ole.pdb".
175# - Delete install.exe and uninstal.exe.
176# Create the archives:
177# - Copy all the "*.exe" files to where this Makefile is.
178# - Copy all the "*.pdb" files to where this Makefile is.
179# - in this directory:
180#   > make dosbin
181# NSIS self installing exe:
182# - To get NSIS see http://nsis.sourceforge.net
183# - Make sure gvim_ole.exe, vimw32.exe, installw32.exe,
184#   uninstalw32.exe, teew32.exe and xxdw32.exe have been build as mentioned
185#   above.
186# - copy these files (get them from a binary archive or build them):
187#	gvimext.dll in src/GvimExt
188#	gvimext64.dll in src/GvimExt
189#	VisVim.dll in src/VisVim
190#   Note: VisVim needs to be build with MSVC 5, newer versions don't work.
191#   gvimext64.dll can be obtained from http://code.google.com/p/vim-win3264/
192#	It is part of vim72.zip as vim72/gvimext.dll.
193# - Make sure there is a diff.exe two levels up (get it from a previous Vim
194#   version).
195# - go to ../nsis and do:
196#   > makensis gvim.nsi  (takes a few minutes).
197#      ignore warning for libwinpthread-1.dll
198# - Copy gvim##.exe to the dist directory.
199#
200# 64 bit builds (these are not in the normal distribution, the 32 bit build
201# works just fine on 64 bit systems).
202# Like the console and GUI version, but first run vcvars64.bat or
203#   "..\VC\vcvarsall.bat x86_amd64".
204# - Build the console version:
205#   > nmake -f Make_mvc.mak
206# - Build the GUI version:
207#   > nmake -f Make_mvc.mak GUI=yes
208# - Build the OLE version with interfaces:
209#   > bigvim64.bat
210#
211#
212# OBSOLETE systems: You can build these if you have an appropriate system.
213#
214# 16 bit DOS version: You need to get a very old version of Vim, for several
215# years even the tiny build is too big to fit in DOS memory.
216#
217# 32 bit DOS version: Support was removed in 7.4.1399.  When syncing to before
218# that it probably won't build.
219#
220# Win32s GUI version: Support was removed in patch 7.4.1364.
221#
222# OS/2 support was removed in patch 7.4.1008.  If you want to give it a try
223# sync to before that and check the old version of this Makefile for
224# instructions.
225
226VIMVER	= vim-$(MAJOR).$(MINOR)
227VERSION = $(MAJOR)$(MINOR)
228VDOT	= $(MAJOR).$(MINOR)
229VIMRTDIR = vim$(VERSION)
230
231# Vim used for conversion from "unix" to "dos"
232VIM	= vim
233
234# How to include Filelist depends on the version of "make" you have.
235# If the current choice doesn't work, try the other one.
236
237include Filelist
238#.include "Filelist"
239
240
241# All output is put in the "dist" directory.
242dist:
243	mkdir dist
244
245# Clean up some files to avoid they are included.
246# Copy README files to the top directory.
247prepare:
248	if test -f runtime/doc/uganda.nsis.txt; then \
249		rm runtime/doc/uganda.nsis.txt; fi
250	for name in $(IN_README_DIR); do \
251	  cp READMEdir/"$$name" .; \
252	  done
253
254# For the zip files we need to create a file with the comment line
255dist/comment:
256	mkdir dist/comment
257
258COMMENT_RT = comment/$(VERSION)-rt
259COMMENT_W32 = comment/$(VERSION)-bin-w32
260COMMENT_GVIM = comment/$(VERSION)-bin-gvim
261COMMENT_OLE = comment/$(VERSION)-bin-ole
262COMMENT_SRC = comment/$(VERSION)-src
263COMMENT_HTML = comment/$(VERSION)-html
264COMMENT_FARSI = comment/$(VERSION)-farsi
265
266dist/$(COMMENT_RT): dist/comment
267	echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT)
268
269dist/$(COMMENT_W32): dist/comment
270	echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32)
271
272dist/$(COMMENT_GVIM): dist/comment
273	echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM)
274
275dist/$(COMMENT_OLE): dist/comment
276	echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE)
277
278dist/$(COMMENT_SRC): dist/comment
279	echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC)
280
281dist/$(COMMENT_HTML): dist/comment
282	echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML)
283
284dist/$(COMMENT_FARSI): dist/comment
285	echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI)
286
287unixall: dist prepare
288	-rm -f dist/$(VIMVER).tar.bz2
289	-rm -rf dist/$(VIMRTDIR)
290	mkdir dist/$(VIMRTDIR)
291	tar cf - \
292		$(RT_ALL) \
293		$(RT_ALL_BIN) \
294		$(RT_UNIX) \
295		$(RT_UNIX_DOS_BIN) \
296		$(RT_SCRIPTS) \
297		$(LANG_GEN) \
298		$(LANG_GEN_BIN) \
299		$(SRC_ALL) \
300		$(SRC_UNIX) \
301		$(SRC_DOS_UNIX) \
302		$(EXTRA) \
303		$(LANG_SRC) \
304		| (cd dist/$(VIMRTDIR); tar xf -)
305	-rm $(IN_README_DIR)
306# Need to use a "distclean" config.mk file
307# Note: this file is not included in the repository to avoid problems, but it's
308# OK to put it in the archive.
309	cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk
310# Create an empty config.h file, make dependencies require it
311	touch dist/$(VIMRTDIR)/src/auto/config.h
312# Make sure configure is newer than config.mk to force it to be generated
313	touch dist/$(VIMRTDIR)/src/configure
314# Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated.
315# Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po.
316	touch dist/$(VIMRTDIR)/src/po/ja.sjis.po
317	touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po
318	touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po
319	touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po
320	touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po
321	touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po
322	touch dist/$(VIMRTDIR)/src/po/uk.cp1251.po
323# Create the archive.
324	cd dist && tar cf $(VIMVER).tar $(VIMRTDIR)
325	bzip2 dist/$(VIMVER).tar
326
327# Amiga runtime - OBSOLETE
328amirt: dist prepare
329	-rm -f dist/vim$(VERSION)rt.tar.gz
330	-rm -rf dist/Vim
331	mkdir dist/Vim
332	mkdir dist/Vim/$(VIMRTDIR)
333	tar cf - \
334		$(ROOT_AMI) \
335		$(RT_ALL) \
336		$(RT_ALL_BIN) \
337		$(RT_SCRIPTS) \
338		$(RT_AMI) \
339		$(RT_NO_UNIX) \
340		$(RT_AMI_DOS) \
341		| (cd dist/Vim/$(VIMRTDIR); tar xf -)
342	-rm $(IN_README_DIR)
343	mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
344	mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
345	mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR)
346	rmdir dist/Vim/$(VIMRTDIR)/runtime
347	cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info
348	gzip -9 dist/vim$(VERSION)rt.tar
349	mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz
350
351# Amiga binaries - OBSOLETE
352amibin: dist prepare
353	-rm -f dist/vim$(VERSION)bin.tar.gz
354	-rm -rf dist/Vim
355	mkdir dist/Vim
356	mkdir dist/Vim/$(VIMRTDIR)
357	tar cf - \
358		$(ROOT_AMI) \
359		$(BIN_AMI) \
360		Vim \
361		Xxd \
362		| (cd dist/Vim/$(VIMRTDIR); tar xf -)
363	-rm $(IN_README_DIR)
364	mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
365	mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
366	cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info
367	gzip -9 dist/vim$(VERSION)bin.tar
368	mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz
369
370# Amiga sources - OBSOLETE
371amisrc: dist prepare
372	-rm -f dist/vim$(VERSION)src.tar.gz
373	-rm -rf dist/Vim
374	mkdir dist/Vim
375	mkdir dist/Vim/$(VIMRTDIR)
376	tar cf - \
377		$(ROOT_AMI) \
378		$(SRC_ALL) \
379		$(SRC_AMI) \
380		$(SRC_AMI_DOS) \
381		| (cd dist/Vim/$(VIMRTDIR); tar xf -)
382	-rm $(IN_README_DIR)
383	mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
384	mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
385	cd dist && tar cf vim$(VERSION)src.tar Vim Vim.info
386	gzip -9 dist/vim$(VERSION)src.tar
387	mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
388
389no_title.vim: Makefile
390	echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim
391
392# MS-DOS sources
393dossrc: dist no_title.vim dist/$(COMMENT_SRC) \
394	runtime/doc/uganda.nsis.txt \
395	nsis/gvim_version.nsh
396	-rm -rf dist/vim$(VERSION)src.zip
397	-rm -rf dist/vim
398	mkdir dist/vim
399	mkdir dist/vim/$(VIMRTDIR)
400	tar cf - \
401		$(SRC_ALL) \
402		$(SRC_DOS) \
403		$(SRC_AMI_DOS) \
404		$(SRC_DOS_UNIX) \
405		runtime/doc/uganda.nsis.txt \
406		nsis/gvim_version.nsh \
407		| (cd dist/vim/$(VIMRTDIR); tar xf -)
408	mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
409	rmdir dist/vim/$(VIMRTDIR)/runtime
410	# This file needs to be in dos fileformat for NSIS.
411	$(VIM) -e -X -u no_title.vim -c ":set tx|wq" dist/vim/$(VIMRTDIR)/doc/uganda.nsis.txt
412	tar cf - \
413		$(SRC_DOS_BIN) \
414		| (cd dist/vim/$(VIMRTDIR); tar xf -)
415	cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC)
416
417runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt
418	cd runtime/doc && $(MAKE) uganda.nsis.txt
419
420nsis/gvim_version.nsh: Makefile
421	echo "# Generated from Makefile: define the version numbers" > $@
422	echo "!ifndef __GVIM_VER__NSH__"  >> $@
423	echo "!define __GVIM_VER__NSH__"  >> $@
424	echo "!define VER_MAJOR $(MAJOR)" >> $@
425	echo "!define VER_MINOR $(MINOR)" >> $@
426	echo "!endif" >> $@
427
428dosrt: dist dist/$(COMMENT_RT) dosrt_files
429	-rm -rf dist/vim$(VERSION)rt.zip
430	cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT)
431
432# Split in two parts to avoid an "argument list too long" error.
433# We no longer convert the files from unix to dos fileformat.
434dosrt_files: dist prepare no_title.vim
435	-rm -rf dist/vim
436	mkdir dist/vim
437	mkdir dist/vim/$(VIMRTDIR)
438	mkdir dist/vim/$(VIMRTDIR)/lang
439	cd src && MAKEMO=yes $(MAKE) languages
440	tar cf - \
441		$(RT_ALL) \
442		| (cd dist/vim/$(VIMRTDIR); tar xf -)
443	tar cf - \
444		$(RT_SCRIPTS) \
445		$(RT_DOS) \
446		$(RT_NO_UNIX) \
447		$(RT_AMI_DOS) \
448		$(LANG_GEN) \
449		| (cd dist/vim/$(VIMRTDIR); tar xf -)
450	tar cf - \
451		$(RT_UNIX_DOS_BIN) \
452		$(RT_ALL_BIN) \
453		$(RT_DOS_BIN) \
454		$(LANG_GEN_BIN) \
455		| (cd dist/vim/$(VIMRTDIR); tar xf -)
456	-rm $(IN_README_DIR)
457	mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
458	rmdir dist/vim/$(VIMRTDIR)/runtime
459# Add the message translations.  Trick: skip ja.mo and use ja.sjis.mo instead.
460# Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo, sk.mo / sk.cp1250.mo,
461# zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and ru.mo / ru.cp1251.mo.
462	for i in $(LANG_DOS); do \
463	      if test "$$i" != "src/po/ja.mo" -a "$$i" != "src/po/pl.mo" -a "$$i" != "src/po/cs.mo" -a "$$i" != "src/po/sk.mo" -a "$$i" != "src/po/zh_CN.mo" -a "$$i" != "src/po/ru.mo" -a "$$i" != "src/po/uk.mo"; then \
464		n=`echo $$i | sed -e "s+src/po/\([-a-zA-Z0-9_]*\(.UTF-8\)*\)\(.sjis\)*\(.cp1250\)*\(.cp1251\)*\(.cp936\)*.mo+\1+"`; \
465		mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \
466		mkdir dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES; \
467		cp $$i dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES/vim.mo; \
468	      fi \
469	    done
470	cp libintl-8.dll dist/vim/$(VIMRTDIR)/
471	cp libiconv-2.dll dist/vim/$(VIMRTDIR)/
472	cp libgcc_s_sjlj-1.dll dist/vim/$(VIMRTDIR)/
473
474
475# Used before uploading.  Don't delete the AAPDIR/sign files!
476runtime_unix2dos: dosrt_files
477	-rm -rf `find runtime/dos -type f -print | sed -e /AAPDIR/d`
478	cd dist/vim/$(VIMRTDIR); tar cf - * \
479		| (cd ../../../runtime/dos; tar xf -)
480
481dosbin: prepare dosbin_gvim dosbin_w32 dosbin_ole $(DOSBIN_S)
482	-rm $(IN_README_DIR)
483
484# make Win32 gvim
485dosbin_gvim: dist no_title.vim dist/$(COMMENT_GVIM)
486	-rm -rf dist/gvim$(VERSION).zip
487	-rm -rf dist/vim
488	mkdir dist/vim
489	mkdir dist/vim/$(VIMRTDIR)
490	tar cf - \
491		$(BIN_DOS) \
492		| (cd dist/vim/$(VIMRTDIR); tar xf -)
493	cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe
494	cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
495	cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
496	cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
497	cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
498	cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
499	cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
500	cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM)
501	cp gvim.pdb dist/gvim$(VERSION).pdb
502
503# make Win32 console
504dosbin_w32: dist no_title.vim dist/$(COMMENT_W32)
505	-rm -rf dist/vim$(VERSION)w32.zip
506	-rm -rf dist/vim
507	mkdir dist/vim
508	mkdir dist/vim/$(VIMRTDIR)
509	tar cf - \
510		$(BIN_DOS) \
511		| (cd dist/vim/$(VIMRTDIR); tar xf -)
512	cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe
513	cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
514	cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
515	cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
516	cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
517	cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32)
518	cp vimw32.pdb dist/vim$(VERSION)w32.pdb
519
520# make Win32 gvim with OLE
521dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE)
522	-rm -rf dist/gvim$(VERSION)ole.zip
523	-rm -rf dist/vim
524	mkdir dist/vim
525	mkdir dist/vim/$(VIMRTDIR)
526	tar cf - \
527		$(BIN_DOS) \
528		| (cd dist/vim/$(VIMRTDIR); tar xf -)
529	cp gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe
530	cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
531	cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
532	cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
533	cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
534	cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
535	cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
536	cp README_ole.txt dist/vim/$(VIMRTDIR)
537	cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll
538	cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR)
539	cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE)
540	cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb
541
542html: dist dist/$(COMMENT_HTML)
543	-rm -rf dist/vim$(VERSION)html.zip
544	cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML)
545
546farsi: dist dist/$(COMMENT_FARSI)
547	-rm -f dist/farsi$(VERSION).zip
548	zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI)
549