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