blob: d9241283d3aab12704f20770c66cf8da7e8a3f49 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001# This Makefile has two purposes:
2# 1. Starting the compilation of Vim for Unix.
3# 2. Creating the various distribution files.
4
5
Bram Moolenaar864665d2010-05-15 15:41:59 +02006#########################################################################
7# 1. Starting the compilation of Vim for Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008#
Bram Moolenaar864665d2010-05-15 15:41:59 +02009# Using this Makefile without an argument will compile Vim for Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +000010# "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:
Bram Moolenaar542512a2011-02-15 15:28:09 +010026 @if test ! -f src/auto/config.mk; then \
27 cp src/config.mk.dist src/auto/config.mk; \
28 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +000029 @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.
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +000035all install uninstall tools config configure reconfig proto depend lint tags types test testclean clean distclean:
Bram Moolenaar542512a2011-02-15 15:28:09 +010036 @if test ! -f src/auto/config.mk; then \
37 cp src/config.mk.dist src/auto/config.mk; \
38 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +000039 @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
Bram Moolenaar864665d2010-05-15 15:41:59 +020044#########################################################################
45# 2. Creating the various distribution files.
Bram Moolenaar071d4272004-06-13 20:20:40 +000046#
47# TARGET PRODUCES CONTAINS
Bram Moolenaar864665d2010-05-15 15:41:59 +020048# unixall vim-#.#.tar.bz2 All runtime files and sources, for Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +000049#
50# html vim##html.zip HTML docs
51#
Bram Moolenaar071d4272004-06-13 20:20:40 +000052# dossrc vim##src.zip sources for MS-DOS
53# dosrt vim##rt.zip runtime for MS-DOS
54# dosbin vim##d16.zip binary for MS-DOS 16 bits
55# vim##d32.zip binary for MS-DOS 32 bits
56# vim##w32.zip binary for Win32
57# gvim##.zip binary for GUI Win32
58# gvim##ole.zip OLE exe for Win32 GUI
59# gvim##_s.zip exe for Win32s GUI
Bram Moolenaar864665d2010-05-15 15:41:59 +020060#
61# OBSOLETE
62# amisrc vim##src.tgz sources for Amiga
63# amirt vim##rt.tgz runtime for Amiga
64# amibin vim##bin.tgz binary for Amiga
Bram Moolenaar071d4272004-06-13 20:20:40 +000065#
66# os2bin vim##os2.zip binary for OS/2
67# (use RT from dosrt)
68#
69# farsi farsi##.zip Farsi fonts
70#
71# All output files are created in the "dist" directory. Existing files are
72# overwritten!
Bram Moolenaar864665d2010-05-15 15:41:59 +020073# To do all this you need the Unix archive and compiled binaries.
Bram Moolenaar071d4272004-06-13 20:20:40 +000074# Before creating an archive first delete all backup files, *.orig, etc.
75
Bram Moolenaara5792f52005-11-23 21:25:05 +000076MAJOR = 7
Bram Moolenaar3b1db362013-08-10 15:00:24 +020077MINOR = 4
Bram Moolenaar071d4272004-06-13 20:20:40 +000078
79# Uncomment this line if the Win32s version is to be included.
Bram Moolenaar913df812013-07-06 15:44:11 +020080# DOSBIN_S = dosbin_s
Bram Moolenaar071d4272004-06-13 20:20:40 +000081
Bram Moolenaard28478b2010-07-18 23:29:58 +020082# Uncomment this line if the 16 bit DOS version is to be included.
83# DOSBIN_D16 = dosbin_d16
84
Bram Moolenaar913df812013-07-06 15:44:11 +020085# Uncomment this line if the 32 bit DOS version is to be included.
86# DOSBIN_D32 = dosbin_d32
87
Bram Moolenaar071d4272004-06-13 20:20:40 +000088# CHECKLIST for creating a new version:
89#
90# - Update Vim version number. For a test version in: src/version.h, Contents,
Bram Moolenaarc01140a2006-03-24 22:21:52 +000091# MAJOR/MINOR above, VIMMAJOR and VIMMINOR in src/Makefile, README*.txt,
Bram Moolenaarc6039d82005-12-02 00:44:04 +000092# runtime/doc/*.txt and nsis/gvim.nsi. Other things in README_os2.txt. For a
Bram Moolenaar3737f892010-08-06 20:53:49 +020093# minor/major version: src/GvimExt/GvimExt.reg, src/vim.def, src/vim16.def,
94# src/gvim.exe.mnf.
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020095# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, MZscheme, Lua (if
Bram Moolenaarbfc8b972010-08-13 22:05:54 +020096# you can make it all work), Cscope and "huge" features. Exclude workshop
97# and SNiFF.
Bram Moolenaar071d4272004-06-13 20:20:40 +000098# - With these features: "make proto" (requires cproto and Motif installed;
99# ignore warnings for missing include files, fix problems for syntax errors).
100# - With these features: "make depend" (works best with gcc).
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200101# - If you have a lint program: "make lint" and check the output (ignore GTK
102# warnings).
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200103# - If you have valgrind, enable it in src/testdir/Makefile and run "make
104# test". Enable EXITFREE, disable GUI, scheme and tcl to avoid false alarms.
105# Check the valgrind output.
106# - If you have the efence library, enable it in "src/Makefile" and run "make
107# test". Disable Python and Ruby to avoid trouble with threads (efence is
108# not threadsafe).
109# - Adjust the date and other info in src/version.h.
110# - Correct included_patches[] in src/version.c.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111# - Check for missing entries in runtime/makemenu.vim (with checkmenu script).
112# - Check for missing options in runtime/optwin.vim et al. (with check.vim).
113# - Do "make menu" to update the runtime/synmenu.vim file.
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000114# - Add remarks for changes to runtime/doc/version7.txt.
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000115# - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL
116# ADDITIONS".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117# - In runtime/doc run "make" and "make html" to check for errors.
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200118# - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain
119# any personal preferences or the changes mentioned above.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120# - Check file protections to be "644" for text and "755" for executables (run
121# the "check" script).
122# - Check compiling on Amiga, MS-DOS and MS-Windows.
123# - Delete all *~, *.sw?, *.orig, *.rej files
Bram Moolenaar864665d2010-05-15 15:41:59 +0200124# - "make unixall", "make html"
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000125# - Make diff files against the previous release: "makediff7 7.1 7.2"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126#
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200127# Amiga: (OBSOLETE, Amiga files are no longer distributed)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128# - "make amisrc", move the archive to the Amiga and compile:
129# "make -f Make_manx.mak" (will use "big" features by default).
130# - Run the tests: "make -f Make_manx.mak test"
131# - Place the executables Vim and Xxd in this directory (set the executable
132# flag).
133# - "make amirt", "make amibin".
134#
135# PC:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200136# - Run make on Unix to update the ".mo" files.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137# - "make dossrc" and "make dosrt". Unpack the archives on a PC.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138# Win32 console version:
Bram Moolenaarba460752013-07-04 22:35:01 +0200139# - Set environment for Visual C++ 2008, e.g.: "msvc2008.bat" Or:
140# "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat".
141# Or, when using the Visual C++ Toolkit 2003: "msvcsetup.bat" (adjust the
142# paths when necessary).
143# For Windows 98/ME the 2003 version is required, but then the executable
Bram Moolenaar1a42b4b2013-07-28 18:29:08 +0200144# won't work on Windows 7 and 64 bit systems.
Bram Moolenaarba460752013-07-04 22:35:01 +0200145# - "nmake -f Make_mvc.mak" (use the same path as for vcvars32.bat)
Bram Moolenaare292d802015-12-29 19:03:21 +0100146# - Run the tests:
147# > rm testdir/*.out
148# > nmake -f Make_mvc.mak test
149# - check the output.
Bram Moolenaarba460752013-07-04 22:35:01 +0200150# - Rename vim.exe to vimw32.exe, xxd/xxd.exe to xxdw32.exe.
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000151# - Rename vim.pdb to vimw32.pdb.
Bram Moolenaarba460752013-07-04 22:35:01 +0200152# - Rename install.exe to installw32.exe and uninstal.exe to uninstalw32.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153# Win32 GUI version:
Bram Moolenaarba460752013-07-04 22:35:01 +0200154# - "nmake -f Make_mvc.mak GUI=yes"
Bram Moolenaare292d802015-12-29 19:03:21 +0100155# - Run the tests:
156# > cd testdir
157# > rm *.out
158# > nmake -f Make_dos.mak VIMPROG=..\gvim
159# - check the output.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160# - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000161# - Move gvim.pdb to here.
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000162# - Delete vimrun.exe, install.exe and uninstal.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163# - Copy "GvimExt/gvimext.dll" to here.
164# Win32 GUI version with OLE, PERL, TCL, PYTHON and dynamic IME:
165# - Run src/bigvim.bat ("nmake -f Make_mvc.mak GUI=yes OLE=yes IME=yes ...)
Bram Moolenaare292d802015-12-29 19:03:21 +0100166# - Run the tests:
167# > cd testdir
168# > rm *.out
169# > nmake -f Make_dos.mak VIMPROG=..\gvim
170# - check the output.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171# - Rename "gvim.exe" to "gvim_ole.exe".
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000172# - Rename gvim.pdb to "gvim_ole.pdb".
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000173# - Delete install.exe and uninstal.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174# Create the archives:
175# - Copy all the "*.exe" files to where this Makefile is.
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000176# - Copy all the "*.pdb" files to where this Makefile is.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177# - "make dosbin".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178# NSIS self installing exe:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200179# - To get NSIS see http://nsis.sourceforge.net
Bram Moolenaarba460752013-07-04 22:35:01 +0200180# - Make sure gvim_ole.exe, vimw32.exe, installw32.exe,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181# uninstalw32.exe and xxdw32.exe have been build as mentioned above.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200182# - copy these files (get them from a binary archive or build them):
183# gvimext.dll in src/GvimExt
184# gvimext64.dll in src/GvimExt
185# VisVim.dll in src/VisVim
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000186# Note: VisVim needs to be build with MSVC 5, newer versions don't work.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200187# gvimext64.dll can be obtained from http://code.google.com/p/vim-win3264/
Bram Moolenaarab8205e2010-07-07 15:14:03 +0200188# It is part of vim72.zip as vim72/gvimext.dll.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189# - make sure there is a diff.exe two levels up
Bram Moolenaar442b4222010-05-24 21:34:22 +0200190# - go to ../nsis and do "makensis gvim.nsi" (takes a few minutes).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191# - Copy gvim##.exe to the dist directory.
192#
Bram Moolenaarba460752013-07-04 22:35:01 +0200193# 64 bit builds (these are not in the normal distribution, the 32 bit build
194# works just fine on 64 bit systems).
195# Like the console and GUI version, but first run vcvars64.bat or
196# "..\VC\vcvarsall.bat x86_amd64".
197# - "nmake -f Make_mvc.mak"
198# - "nmake -f Make_mvc.mak GUI=yes"
199# Or run src/bigvim64.bat for an OLE version.
200#
201# OBSOLETE systems: You can build this if you have an appropriate system.
202#
203# 16 bit DOS version: (doesn't build anywhere)
204# - Set environment for compiling with Borland C++ 3.1.
205# - "bmake -f Make_bc3.mak BOR=E:\borlandc" (compiling xxd might fail, in that
206# case set environment for compiling with Borland C++ 4.0 and do
207# "make -f make_bc3.mak BOR=E:\BC4 xxd/xxd.exe").
208# NOTE: this currently fails because Vim is too big.
209# - "make test" and check the output.
210# - Rename the executables to "vimd16.exe", "xxdd16.exe", "installd16.exe" and
211# "uninstald16.exe".
212#
213# 32 bit DOS version: (requires Windows XP or earlier)
214# - Set environment for compiling with DJGPP; "gmake -f Make_djg.mak".
215# - "rm testdir/*.out", "gmake -f Make_djg.mak test" and check the output for
216# "ALL DONE".
217# - Rename the executables to "vimd32.exe", "xxdd32.exe", "installd32.exe" and
218# "uninstald32.exe".
219#
220# Win32s GUI version: (requires very old compiler)
221# - Set environment for Visual C++ 4.1 (requires a new console window):
222# "vcvars32.bat" (use the path for VC 4.1 e:\msdev\bin)
223# - "nmake -f Make_mvc.mak GUI=yes INTL=no clean" (use the path for VC 4.1)
224# - "nmake -f Make_mvc.mak GUI=yes INTL=no" (use the path for VC 4.1)
225# - Rename "gvim.exe" to "gvim_w32s.exe".
226# - Rename "install.exe" to "installw32.exe"
227# - Rename "uninstal.exe" to "uninstalw32.exe"
228# - The produced uninstalw32.exe and vimrun.exe are used.
229#
230# OS/2: (requires an OS/2 system)
Bram Moolenaar864665d2010-05-15 15:41:59 +0200231# - Unpack the Unix archive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232# - "make -f Make_os2.mak".
233# - Rename the executables to vimos2.exe, xxdos2.exe and teeos2.exe and copy
234# them to here.
235# - "make os2bin".
236
237VIMVER = vim-$(MAJOR).$(MINOR)
238VERSION = $(MAJOR)$(MINOR)
239VDOT = $(MAJOR).$(MINOR)
240VIMRTDIR = vim$(VERSION)
241
242# Vim used for conversion from "unix" to "dos"
243VIM = vim
244
245# How to include Filelist depends on the version of "make" you have.
246# If the current choice doesn't work, try the other one.
247
248include Filelist
249#.include "Filelist"
250
251
252# All output is put in the "dist" directory.
253dist:
254 mkdir dist
255
256# Clean up some files to avoid they are included.
257prepare:
258 if test -f runtime/doc/uganda.nsis.txt; then \
259 rm runtime/doc/uganda.nsis.txt; fi
260
261# For the zip files we need to create a file with the comment line
262dist/comment:
263 mkdir dist/comment
264
265COMMENT_RT = comment/$(VERSION)-rt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266COMMENT_D16 = comment/$(VERSION)-bin-d16
267COMMENT_D32 = comment/$(VERSION)-bin-d32
268COMMENT_W32 = comment/$(VERSION)-bin-w32
269COMMENT_GVIM = comment/$(VERSION)-bin-gvim
270COMMENT_OLE = comment/$(VERSION)-bin-ole
271COMMENT_W32S = comment/$(VERSION)-bin-w32s
272COMMENT_SRC = comment/$(VERSION)-src
273COMMENT_OS2 = comment/$(VERSION)-bin-os2
274COMMENT_HTML = comment/$(VERSION)-html
275COMMENT_FARSI = comment/$(VERSION)-farsi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276
277dist/$(COMMENT_RT): dist/comment
278 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT)
279
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280dist/$(COMMENT_D16): dist/comment
281 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-DOS 16 bit real mode" > dist/$(COMMENT_D16)
282
283dist/$(COMMENT_D32): dist/comment
284 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-DOS 32 bit protected mode" > dist/$(COMMENT_D32)
285
286dist/$(COMMENT_W32): dist/comment
287 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32)
288
289dist/$(COMMENT_GVIM): dist/comment
290 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM)
291
292dist/$(COMMENT_OLE): dist/comment
293 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE)
294
295dist/$(COMMENT_W32S): dist/comment
296 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows 3.1/3.11" > dist/$(COMMENT_W32S)
297
298dist/$(COMMENT_SRC): dist/comment
299 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC)
300
301dist/$(COMMENT_OS2): dist/comment
302 echo "Vim - Vi IMproved - v$(VDOT) binaries + runtime files for OS/2" > dist/$(COMMENT_OS2)
303
304dist/$(COMMENT_HTML): dist/comment
305 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML)
306
307dist/$(COMMENT_FARSI): dist/comment
308 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI)
309
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000310unixall: dist prepare
311 -rm -f dist/$(VIMVER).tar.bz2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 -rm -rf dist/$(VIMRTDIR)
313 mkdir dist/$(VIMRTDIR)
314 tar cf - \
315 $(RT_ALL) \
316 $(RT_ALL_BIN) \
317 $(RT_UNIX) \
318 $(RT_UNIX_DOS_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319 $(RT_SCRIPTS) \
320 $(LANG_GEN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000321 $(LANG_GEN_BIN) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000322 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 $(SRC_UNIX) \
324 $(SRC_DOS_UNIX) \
Bram Moolenaar864665d2010-05-15 15:41:59 +0200325 $(EXTRA) \
326 $(LANG_SRC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 | (cd dist/$(VIMRTDIR); tar xf -)
328# Need to use a "distclean" config.mk file
Bram Moolenaarba460752013-07-04 22:35:01 +0200329# Note: this file is not included in the repository to avoid problems, but it's
330# OK to put it in the archive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk
332# Create an empty config.h file, make dependencies require it
333 touch dist/$(VIMRTDIR)/src/auto/config.h
334# Make sure configure is newer than config.mk to force it to be generated
335 touch dist/$(VIMRTDIR)/src/configure
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336# Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated.
337# Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po.
338 touch dist/$(VIMRTDIR)/src/po/ja.sjis.po
339 touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po
340 touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po
341 touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po
342 touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po
343 touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000344 touch dist/$(VIMRTDIR)/src/po/uk.cp1251.po
Bram Moolenaar864665d2010-05-15 15:41:59 +0200345# Create the archive.
346 cd dist && tar cf $(VIMVER).tar $(VIMRTDIR)
347 bzip2 dist/$(VIMVER).tar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348
Bram Moolenaar864665d2010-05-15 15:41:59 +0200349# Amiga runtime - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350amirt: dist prepare
351 -rm -f dist/vim$(VERSION)rt.tar.gz
352 -rm -rf dist/Vim
353 mkdir dist/Vim
354 mkdir dist/Vim/$(VIMRTDIR)
355 tar cf - \
356 $(ROOT_AMI) \
357 $(RT_ALL) \
358 $(RT_ALL_BIN) \
359 $(RT_SCRIPTS) \
360 $(RT_AMI) \
361 $(RT_NO_UNIX) \
362 $(RT_AMI_DOS) \
363 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
364 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
365 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
366 mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR)
367 rmdir dist/Vim/$(VIMRTDIR)/runtime
368 cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info
369 gzip -9 dist/vim$(VERSION)rt.tar
370 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz
371
Bram Moolenaar864665d2010-05-15 15:41:59 +0200372# Amiga binaries - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373amibin: dist prepare
374 -rm -f dist/vim$(VERSION)bin.tar.gz
375 -rm -rf dist/Vim
376 mkdir dist/Vim
377 mkdir dist/Vim/$(VIMRTDIR)
378 tar cf - \
379 $(ROOT_AMI) \
380 $(BIN_AMI) \
381 Vim \
382 Xxd \
383 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
384 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
385 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
386 cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info
387 gzip -9 dist/vim$(VERSION)bin.tar
388 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz
389
Bram Moolenaar864665d2010-05-15 15:41:59 +0200390# Amiga sources - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391amisrc: dist prepare
392 -rm -f dist/vim$(VERSION)src.tar.gz
393 -rm -rf dist/Vim
394 mkdir dist/Vim
395 mkdir dist/Vim/$(VIMRTDIR)
396 tar cf - \
397 $(ROOT_AMI) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000398 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 $(SRC_AMI) \
400 $(SRC_AMI_DOS) \
401 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
402 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
403 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
404 cd dist && tar cf vim$(VERSION)src.tar Vim Vim.info
405 gzip -9 dist/vim$(VERSION)src.tar
406 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
407
408no_title.vim: Makefile
409 echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim
410
Bram Moolenaar442b4222010-05-24 21:34:22 +0200411# MS-DOS sources
412dossrc: dist no_title.vim dist/$(COMMENT_SRC) runtime/doc/uganda.nsis.txt
413 -rm -rf dist/vim$(VERSION)src.zip
414 -rm -rf dist/vim
415 mkdir dist/vim
416 mkdir dist/vim/$(VIMRTDIR)
417 tar cf - \
418 $(SRC_ALL) \
419 $(SRC_DOS) \
420 $(SRC_AMI_DOS) \
421 $(SRC_DOS_UNIX) \
422 runtime/doc/uganda.nsis.txt \
423 | (cd dist/vim/$(VIMRTDIR); tar xf -)
424 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
425 rmdir dist/vim/$(VIMRTDIR)/runtime
426 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
427 tar cf - \
428 $(SRC_DOS_BIN) \
429 | (cd dist/vim/$(VIMRTDIR); tar xf -)
430 cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC)
431
432runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt
433 cd runtime/doc && $(MAKE) uganda.nsis.txt
434
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435dosrt: dist dist/$(COMMENT_RT) dosrt_unix2dos
436 -rm -rf dist/vim$(VERSION)rt.zip
437 cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT)
438
Bram Moolenaar442b4222010-05-24 21:34:22 +0200439# Split in two parts to avoid an "argument list too long" error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440dosrt_unix2dos: dist prepare no_title.vim
441 -rm -rf dist/vim
442 mkdir dist/vim
443 mkdir dist/vim/$(VIMRTDIR)
Bram Moolenaar864665d2010-05-15 15:41:59 +0200444 mkdir dist/vim/$(VIMRTDIR)/lang
445 cd src && MAKEMO=yes $(MAKE) languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446 tar cf - \
447 $(RT_ALL) \
Bram Moolenaara5792f52005-11-23 21:25:05 +0000448 | (cd dist/vim/$(VIMRTDIR); tar xf -)
449 tar cf - \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 $(RT_SCRIPTS) \
451 $(RT_DOS) \
452 $(RT_NO_UNIX) \
453 $(RT_AMI_DOS) \
454 $(LANG_GEN) \
455 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100456 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457 tar cf - \
458 $(RT_UNIX_DOS_BIN) \
459 $(RT_ALL_BIN) \
460 $(RT_DOS_BIN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000461 $(LANG_GEN_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 | (cd dist/vim/$(VIMRTDIR); tar xf -)
463 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
464 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar864665d2010-05-15 15:41:59 +0200465# Add the message translations. Trick: skip ja.mo and use ja.sjis.mo instead.
466# Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo, sk.mo / sk.cp1250.mo,
467# zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and ru.mo / ru.cp1251.mo.
468 for i in $(LANG_DOS); do \
469 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 \
470 n=`echo $$i | sed -e "s+src/po/\([-a-zA-Z0-9_]*\(.UTF-8\)*\)\(.sjis\)*\(.cp1250\)*\(.cp1251\)*\(.cp936\)*.mo+\1+"`; \
471 mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \
472 mkdir dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES; \
473 cp $$i dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES/vim.mo; \
474 fi \
475 done
476 cp libintl.dll dist/vim/$(VIMRTDIR)/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477
478
479# Convert runtime files from Unix fileformat to dos fileformat.
480# Used before uploading. Don't delete the AAPDIR/sign files!
481runtime_unix2dos: dosrt_unix2dos
482 -rm -rf `find runtime/dos -type f -print | sed -e /AAPDIR/d`
483 cd dist/vim/$(VIMRTDIR); tar cf - * \
484 | (cd ../../../runtime/dos; tar xf -)
485
Bram Moolenaar913df812013-07-06 15:44:11 +0200486dosbin: prepare dosbin_gvim dosbin_w32 $(DOSBIN_D32) dosbin_ole $(DOSBIN_S) $(DOSBIN_D16)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487
488# make Win32 gvim
489dosbin_gvim: dist no_title.vim dist/$(COMMENT_GVIM)
490 -rm -rf dist/gvim$(VERSION).zip
491 -rm -rf dist/vim
492 mkdir dist/vim
493 mkdir dist/vim/$(VIMRTDIR)
494 tar cf - \
495 $(BIN_DOS) \
496 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100497 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe
499 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
500 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
501 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
502 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
503 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
504 cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000505 cp gvim.pdb dist/gvim$(VERSION).pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506
507# make Win32 console
508dosbin_w32: dist no_title.vim dist/$(COMMENT_W32)
509 -rm -rf dist/vim$(VERSION)w32.zip
510 -rm -rf dist/vim
511 mkdir dist/vim
512 mkdir dist/vim/$(VIMRTDIR)
513 tar cf - \
514 $(BIN_DOS) \
515 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100516 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe
518 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
519 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
520 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
521 cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000522 cp vimw32.pdb dist/vim$(VERSION)w32.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523
524# make 32bit DOS
525dosbin_d32: dist no_title.vim dist/$(COMMENT_D32)
526 -rm -rf dist/vim$(VERSION)d32.zip
527 -rm -rf dist/vim
528 mkdir dist/vim
529 mkdir dist/vim/$(VIMRTDIR)
530 tar cf - \
531 $(BIN_DOS) \
532 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100533 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 cp vimd32.exe dist/vim/$(VIMRTDIR)/vim.exe
535 cp xxdd32.exe dist/vim/$(VIMRTDIR)/xxd.exe
536 cp installd32.exe dist/vim/$(VIMRTDIR)/install.exe
537 cp uninstald32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
538 cp csdpmi4b.zip dist/vim/$(VIMRTDIR)
539 cd dist && zip -9 -rD -z vim$(VERSION)d32.zip vim <$(COMMENT_D32)
540
541# make 16bit DOS
542dosbin_d16: dist no_title.vim dist/$(COMMENT_D16)
543 -rm -rf dist/vim$(VERSION)d16.zip
544 -rm -rf dist/vim
545 mkdir dist/vim
546 mkdir dist/vim/$(VIMRTDIR)
547 tar cf - \
548 $(BIN_DOS) \
549 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100550 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 cp vimd16.exe dist/vim/$(VIMRTDIR)/vim.exe
552 cp xxdd16.exe dist/vim/$(VIMRTDIR)/xxd.exe
553 cp installd16.exe dist/vim/$(VIMRTDIR)/install.exe
554 cp uninstald16.exe dist/vim/$(VIMRTDIR)/uninstal.exe
555 cd dist && zip -9 -rD -z vim$(VERSION)d16.zip vim <$(COMMENT_D16)
556
557# make Win32 gvim with OLE
558dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE)
559 -rm -rf dist/gvim$(VERSION)ole.zip
560 -rm -rf dist/vim
561 mkdir dist/vim
562 mkdir dist/vim/$(VIMRTDIR)
563 tar cf - \
564 $(BIN_DOS) \
565 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100566 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 cp gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe
568 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
569 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
570 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
571 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
572 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
573 cp README_ole.txt dist/vim/$(VIMRTDIR)
574 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll
575 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR)
576 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000577 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578
579# make Win32s gvim
580dosbin_s: dist no_title.vim dist/$(COMMENT_W32S)
581 -rm -rf dist/gvim$(VERSION)_s.zip
582 -rm -rf dist/vim
583 mkdir dist/vim
584 mkdir dist/vim/$(VIMRTDIR)
585 tar cf - \
586 $(BIN_DOS) \
587 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100588 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 cp gvim_w32s.exe dist/vim/$(VIMRTDIR)/gvim.exe
590 cp xxdd32.exe dist/vim/$(VIMRTDIR)/xxd.exe
591 cp README_w32s.txt dist/vim/$(VIMRTDIR)
592 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
593 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
594 cd dist && zip -9 -rD -z gvim$(VERSION)_s.zip vim <$(COMMENT_W32S)
595
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596os2bin: dist no_title.vim dist/$(COMMENT_OS2)
597 -rm -rf dist/vim$(VERSION)os2.zip
598 -rm -rf dist/vim
599 mkdir dist/vim
600 mkdir dist/vim/$(VIMRTDIR)
601 tar cf - \
602 $(BIN_OS2) \
603 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100604 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 cp vimos2.exe dist/vim/$(VIMRTDIR)/vim.exe
606 cp xxdos2.exe dist/vim/$(VIMRTDIR)/xxd.exe
607 cp teeos2.exe dist/vim/$(VIMRTDIR)/tee.exe
608 cp emx.dll emxlibcs.dll dist/vim/$(VIMRTDIR)
609 cd dist && zip -9 -rD -z vim$(VERSION)os2.zip vim <$(COMMENT_OS2)
610
611html: dist dist/$(COMMENT_HTML)
612 -rm -rf dist/vim$(VERSION)html.zip
613 cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML)
614
615farsi: dist dist/$(COMMENT_FARSI)
616 -rm -f dist/farsi$(VERSION).zip
617 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI)