blob: 3565357d8a9a30d3bf22500f885187ccd4d18cea [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 Moolenaar071d4272004-06-13 20:20:40 +0000146# - "rm testdir/*.out", "nmake -f Make_mvc.mak test" and check the output.
Bram Moolenaarba460752013-07-04 22:35:01 +0200147# - Rename vim.exe to vimw32.exe, xxd/xxd.exe to xxdw32.exe.
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000148# - Rename vim.pdb to vimw32.pdb.
Bram Moolenaarba460752013-07-04 22:35:01 +0200149# - Rename install.exe to installw32.exe and uninstal.exe to uninstalw32.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150# Win32 GUI version:
Bram Moolenaarba460752013-07-04 22:35:01 +0200151# - "nmake -f Make_mvc.mak GUI=yes"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152# - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000153# - Move gvim.pdb to here.
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000154# - Delete vimrun.exe, install.exe and uninstal.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155# - Copy "GvimExt/gvimext.dll" to here.
156# Win32 GUI version with OLE, PERL, TCL, PYTHON and dynamic IME:
157# - Run src/bigvim.bat ("nmake -f Make_mvc.mak GUI=yes OLE=yes IME=yes ...)
158# - Rename "gvim.exe" to "gvim_ole.exe".
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000159# - Rename gvim.pdb to "gvim_ole.pdb".
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000160# - Delete install.exe and uninstal.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161# Create the archives:
162# - Copy all the "*.exe" files to where this Makefile is.
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000163# - Copy all the "*.pdb" files to where this Makefile is.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164# - "make dosbin".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165# NSIS self installing exe:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200166# - To get NSIS see http://nsis.sourceforge.net
Bram Moolenaarba460752013-07-04 22:35:01 +0200167# - Make sure gvim_ole.exe, vimw32.exe, installw32.exe,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168# uninstalw32.exe and xxdw32.exe have been build as mentioned above.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200169# - copy these files (get them from a binary archive or build them):
170# gvimext.dll in src/GvimExt
171# gvimext64.dll in src/GvimExt
172# VisVim.dll in src/VisVim
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000173# Note: VisVim needs to be build with MSVC 5, newer versions don't work.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200174# gvimext64.dll can be obtained from http://code.google.com/p/vim-win3264/
Bram Moolenaarab8205e2010-07-07 15:14:03 +0200175# It is part of vim72.zip as vim72/gvimext.dll.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176# - make sure there is a diff.exe two levels up
Bram Moolenaar442b4222010-05-24 21:34:22 +0200177# - go to ../nsis and do "makensis gvim.nsi" (takes a few minutes).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178# - Copy gvim##.exe to the dist directory.
179#
Bram Moolenaarba460752013-07-04 22:35:01 +0200180# 64 bit builds (these are not in the normal distribution, the 32 bit build
181# works just fine on 64 bit systems).
182# Like the console and GUI version, but first run vcvars64.bat or
183# "..\VC\vcvarsall.bat x86_amd64".
184# - "nmake -f Make_mvc.mak"
185# - "nmake -f Make_mvc.mak GUI=yes"
186# Or run src/bigvim64.bat for an OLE version.
187#
188# OBSOLETE systems: You can build this if you have an appropriate system.
189#
190# 16 bit DOS version: (doesn't build anywhere)
191# - Set environment for compiling with Borland C++ 3.1.
192# - "bmake -f Make_bc3.mak BOR=E:\borlandc" (compiling xxd might fail, in that
193# case set environment for compiling with Borland C++ 4.0 and do
194# "make -f make_bc3.mak BOR=E:\BC4 xxd/xxd.exe").
195# NOTE: this currently fails because Vim is too big.
196# - "make test" and check the output.
197# - Rename the executables to "vimd16.exe", "xxdd16.exe", "installd16.exe" and
198# "uninstald16.exe".
199#
200# 32 bit DOS version: (requires Windows XP or earlier)
201# - Set environment for compiling with DJGPP; "gmake -f Make_djg.mak".
202# - "rm testdir/*.out", "gmake -f Make_djg.mak test" and check the output for
203# "ALL DONE".
204# - Rename the executables to "vimd32.exe", "xxdd32.exe", "installd32.exe" and
205# "uninstald32.exe".
206#
207# Win32s GUI version: (requires very old compiler)
208# - Set environment for Visual C++ 4.1 (requires a new console window):
209# "vcvars32.bat" (use the path for VC 4.1 e:\msdev\bin)
210# - "nmake -f Make_mvc.mak GUI=yes INTL=no clean" (use the path for VC 4.1)
211# - "nmake -f Make_mvc.mak GUI=yes INTL=no" (use the path for VC 4.1)
212# - Rename "gvim.exe" to "gvim_w32s.exe".
213# - Rename "install.exe" to "installw32.exe"
214# - Rename "uninstal.exe" to "uninstalw32.exe"
215# - The produced uninstalw32.exe and vimrun.exe are used.
216#
217# OS/2: (requires an OS/2 system)
Bram Moolenaar864665d2010-05-15 15:41:59 +0200218# - Unpack the Unix archive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219# - "make -f Make_os2.mak".
220# - Rename the executables to vimos2.exe, xxdos2.exe and teeos2.exe and copy
221# them to here.
222# - "make os2bin".
223
224VIMVER = vim-$(MAJOR).$(MINOR)
225VERSION = $(MAJOR)$(MINOR)
226VDOT = $(MAJOR).$(MINOR)
227VIMRTDIR = vim$(VERSION)
228
229# Vim used for conversion from "unix" to "dos"
230VIM = vim
231
232# How to include Filelist depends on the version of "make" you have.
233# If the current choice doesn't work, try the other one.
234
235include Filelist
236#.include "Filelist"
237
238
239# All output is put in the "dist" directory.
240dist:
241 mkdir dist
242
243# Clean up some files to avoid they are included.
244prepare:
245 if test -f runtime/doc/uganda.nsis.txt; then \
246 rm runtime/doc/uganda.nsis.txt; fi
247
248# For the zip files we need to create a file with the comment line
249dist/comment:
250 mkdir dist/comment
251
252COMMENT_RT = comment/$(VERSION)-rt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253COMMENT_D16 = comment/$(VERSION)-bin-d16
254COMMENT_D32 = comment/$(VERSION)-bin-d32
255COMMENT_W32 = comment/$(VERSION)-bin-w32
256COMMENT_GVIM = comment/$(VERSION)-bin-gvim
257COMMENT_OLE = comment/$(VERSION)-bin-ole
258COMMENT_W32S = comment/$(VERSION)-bin-w32s
259COMMENT_SRC = comment/$(VERSION)-src
260COMMENT_OS2 = comment/$(VERSION)-bin-os2
261COMMENT_HTML = comment/$(VERSION)-html
262COMMENT_FARSI = comment/$(VERSION)-farsi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263
264dist/$(COMMENT_RT): dist/comment
265 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT)
266
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267dist/$(COMMENT_D16): dist/comment
268 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-DOS 16 bit real mode" > dist/$(COMMENT_D16)
269
270dist/$(COMMENT_D32): dist/comment
271 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-DOS 32 bit protected mode" > dist/$(COMMENT_D32)
272
273dist/$(COMMENT_W32): dist/comment
274 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32)
275
276dist/$(COMMENT_GVIM): dist/comment
277 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM)
278
279dist/$(COMMENT_OLE): dist/comment
280 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE)
281
282dist/$(COMMENT_W32S): dist/comment
283 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows 3.1/3.11" > dist/$(COMMENT_W32S)
284
285dist/$(COMMENT_SRC): dist/comment
286 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC)
287
288dist/$(COMMENT_OS2): dist/comment
289 echo "Vim - Vi IMproved - v$(VDOT) binaries + runtime files for OS/2" > dist/$(COMMENT_OS2)
290
291dist/$(COMMENT_HTML): dist/comment
292 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML)
293
294dist/$(COMMENT_FARSI): dist/comment
295 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI)
296
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000297unixall: dist prepare
298 -rm -f dist/$(VIMVER).tar.bz2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299 -rm -rf dist/$(VIMRTDIR)
300 mkdir dist/$(VIMRTDIR)
301 tar cf - \
302 $(RT_ALL) \
303 $(RT_ALL_BIN) \
304 $(RT_UNIX) \
305 $(RT_UNIX_DOS_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306 $(RT_SCRIPTS) \
307 $(LANG_GEN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000308 $(LANG_GEN_BIN) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000309 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 $(SRC_UNIX) \
311 $(SRC_DOS_UNIX) \
Bram Moolenaar864665d2010-05-15 15:41:59 +0200312 $(EXTRA) \
313 $(LANG_SRC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 | (cd dist/$(VIMRTDIR); tar xf -)
315# Need to use a "distclean" config.mk file
Bram Moolenaarba460752013-07-04 22:35:01 +0200316# Note: this file is not included in the repository to avoid problems, but it's
317# OK to put it in the archive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318 cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk
319# Create an empty config.h file, make dependencies require it
320 touch dist/$(VIMRTDIR)/src/auto/config.h
321# Make sure configure is newer than config.mk to force it to be generated
322 touch dist/$(VIMRTDIR)/src/configure
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323# Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated.
324# Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po.
325 touch dist/$(VIMRTDIR)/src/po/ja.sjis.po
326 touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po
327 touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po
328 touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po
329 touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po
330 touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000331 touch dist/$(VIMRTDIR)/src/po/uk.cp1251.po
Bram Moolenaar864665d2010-05-15 15:41:59 +0200332# Create the archive.
333 cd dist && tar cf $(VIMVER).tar $(VIMRTDIR)
334 bzip2 dist/$(VIMVER).tar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335
Bram Moolenaar864665d2010-05-15 15:41:59 +0200336# Amiga runtime - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337amirt: dist prepare
338 -rm -f dist/vim$(VERSION)rt.tar.gz
339 -rm -rf dist/Vim
340 mkdir dist/Vim
341 mkdir dist/Vim/$(VIMRTDIR)
342 tar cf - \
343 $(ROOT_AMI) \
344 $(RT_ALL) \
345 $(RT_ALL_BIN) \
346 $(RT_SCRIPTS) \
347 $(RT_AMI) \
348 $(RT_NO_UNIX) \
349 $(RT_AMI_DOS) \
350 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
351 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
352 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
353 mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR)
354 rmdir dist/Vim/$(VIMRTDIR)/runtime
355 cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info
356 gzip -9 dist/vim$(VERSION)rt.tar
357 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz
358
Bram Moolenaar864665d2010-05-15 15:41:59 +0200359# Amiga binaries - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360amibin: dist prepare
361 -rm -f dist/vim$(VERSION)bin.tar.gz
362 -rm -rf dist/Vim
363 mkdir dist/Vim
364 mkdir dist/Vim/$(VIMRTDIR)
365 tar cf - \
366 $(ROOT_AMI) \
367 $(BIN_AMI) \
368 Vim \
369 Xxd \
370 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
371 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
372 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
373 cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info
374 gzip -9 dist/vim$(VERSION)bin.tar
375 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz
376
Bram Moolenaar864665d2010-05-15 15:41:59 +0200377# Amiga sources - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378amisrc: dist prepare
379 -rm -f dist/vim$(VERSION)src.tar.gz
380 -rm -rf dist/Vim
381 mkdir dist/Vim
382 mkdir dist/Vim/$(VIMRTDIR)
383 tar cf - \
384 $(ROOT_AMI) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000385 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 $(SRC_AMI) \
387 $(SRC_AMI_DOS) \
388 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
389 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
390 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
391 cd dist && tar cf vim$(VERSION)src.tar Vim Vim.info
392 gzip -9 dist/vim$(VERSION)src.tar
393 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
394
395no_title.vim: Makefile
396 echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim
397
Bram Moolenaar442b4222010-05-24 21:34:22 +0200398# MS-DOS sources
399dossrc: dist no_title.vim dist/$(COMMENT_SRC) runtime/doc/uganda.nsis.txt
400 -rm -rf dist/vim$(VERSION)src.zip
401 -rm -rf dist/vim
402 mkdir dist/vim
403 mkdir dist/vim/$(VIMRTDIR)
404 tar cf - \
405 $(SRC_ALL) \
406 $(SRC_DOS) \
407 $(SRC_AMI_DOS) \
408 $(SRC_DOS_UNIX) \
409 runtime/doc/uganda.nsis.txt \
410 | (cd dist/vim/$(VIMRTDIR); tar xf -)
411 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
412 rmdir dist/vim/$(VIMRTDIR)/runtime
413 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
414 tar cf - \
415 $(SRC_DOS_BIN) \
416 | (cd dist/vim/$(VIMRTDIR); tar xf -)
417 cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC)
418
419runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt
420 cd runtime/doc && $(MAKE) uganda.nsis.txt
421
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422dosrt: dist dist/$(COMMENT_RT) dosrt_unix2dos
423 -rm -rf dist/vim$(VERSION)rt.zip
424 cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT)
425
Bram Moolenaar442b4222010-05-24 21:34:22 +0200426# Split in two parts to avoid an "argument list too long" error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427dosrt_unix2dos: dist prepare no_title.vim
428 -rm -rf dist/vim
429 mkdir dist/vim
430 mkdir dist/vim/$(VIMRTDIR)
Bram Moolenaar864665d2010-05-15 15:41:59 +0200431 mkdir dist/vim/$(VIMRTDIR)/lang
432 cd src && MAKEMO=yes $(MAKE) languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 tar cf - \
434 $(RT_ALL) \
Bram Moolenaara5792f52005-11-23 21:25:05 +0000435 | (cd dist/vim/$(VIMRTDIR); tar xf -)
436 tar cf - \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437 $(RT_SCRIPTS) \
438 $(RT_DOS) \
439 $(RT_NO_UNIX) \
440 $(RT_AMI_DOS) \
441 $(LANG_GEN) \
442 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100443 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 +0000444 tar cf - \
445 $(RT_UNIX_DOS_BIN) \
446 $(RT_ALL_BIN) \
447 $(RT_DOS_BIN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000448 $(LANG_GEN_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 | (cd dist/vim/$(VIMRTDIR); tar xf -)
450 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
451 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar864665d2010-05-15 15:41:59 +0200452# Add the message translations. Trick: skip ja.mo and use ja.sjis.mo instead.
453# Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo, sk.mo / sk.cp1250.mo,
454# zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and ru.mo / ru.cp1251.mo.
455 for i in $(LANG_DOS); do \
456 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 \
457 n=`echo $$i | sed -e "s+src/po/\([-a-zA-Z0-9_]*\(.UTF-8\)*\)\(.sjis\)*\(.cp1250\)*\(.cp1251\)*\(.cp936\)*.mo+\1+"`; \
458 mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \
459 mkdir dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES; \
460 cp $$i dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES/vim.mo; \
461 fi \
462 done
463 cp libintl.dll dist/vim/$(VIMRTDIR)/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464
465
466# Convert runtime files from Unix fileformat to dos fileformat.
467# Used before uploading. Don't delete the AAPDIR/sign files!
468runtime_unix2dos: dosrt_unix2dos
469 -rm -rf `find runtime/dos -type f -print | sed -e /AAPDIR/d`
470 cd dist/vim/$(VIMRTDIR); tar cf - * \
471 | (cd ../../../runtime/dos; tar xf -)
472
Bram Moolenaar913df812013-07-06 15:44:11 +0200473dosbin: prepare dosbin_gvim dosbin_w32 $(DOSBIN_D32) dosbin_ole $(DOSBIN_S) $(DOSBIN_D16)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474
475# make Win32 gvim
476dosbin_gvim: dist no_title.vim dist/$(COMMENT_GVIM)
477 -rm -rf dist/gvim$(VERSION).zip
478 -rm -rf dist/vim
479 mkdir dist/vim
480 mkdir dist/vim/$(VIMRTDIR)
481 tar cf - \
482 $(BIN_DOS) \
483 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100484 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 +0000485 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe
486 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
487 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
488 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
489 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
490 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
491 cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000492 cp gvim.pdb dist/gvim$(VERSION).pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493
494# make Win32 console
495dosbin_w32: dist no_title.vim dist/$(COMMENT_W32)
496 -rm -rf dist/vim$(VERSION)w32.zip
497 -rm -rf dist/vim
498 mkdir dist/vim
499 mkdir dist/vim/$(VIMRTDIR)
500 tar cf - \
501 $(BIN_DOS) \
502 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100503 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 +0000504 cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe
505 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
506 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
507 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
508 cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000509 cp vimw32.pdb dist/vim$(VERSION)w32.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510
511# make 32bit DOS
512dosbin_d32: dist no_title.vim dist/$(COMMENT_D32)
513 -rm -rf dist/vim$(VERSION)d32.zip
514 -rm -rf dist/vim
515 mkdir dist/vim
516 mkdir dist/vim/$(VIMRTDIR)
517 tar cf - \
518 $(BIN_DOS) \
519 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100520 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 +0000521 cp vimd32.exe dist/vim/$(VIMRTDIR)/vim.exe
522 cp xxdd32.exe dist/vim/$(VIMRTDIR)/xxd.exe
523 cp installd32.exe dist/vim/$(VIMRTDIR)/install.exe
524 cp uninstald32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
525 cp csdpmi4b.zip dist/vim/$(VIMRTDIR)
526 cd dist && zip -9 -rD -z vim$(VERSION)d32.zip vim <$(COMMENT_D32)
527
528# make 16bit DOS
529dosbin_d16: dist no_title.vim dist/$(COMMENT_D16)
530 -rm -rf dist/vim$(VERSION)d16.zip
531 -rm -rf dist/vim
532 mkdir dist/vim
533 mkdir dist/vim/$(VIMRTDIR)
534 tar cf - \
535 $(BIN_DOS) \
536 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100537 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 +0000538 cp vimd16.exe dist/vim/$(VIMRTDIR)/vim.exe
539 cp xxdd16.exe dist/vim/$(VIMRTDIR)/xxd.exe
540 cp installd16.exe dist/vim/$(VIMRTDIR)/install.exe
541 cp uninstald16.exe dist/vim/$(VIMRTDIR)/uninstal.exe
542 cd dist && zip -9 -rD -z vim$(VERSION)d16.zip vim <$(COMMENT_D16)
543
544# make Win32 gvim with OLE
545dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE)
546 -rm -rf dist/gvim$(VERSION)ole.zip
547 -rm -rf dist/vim
548 mkdir dist/vim
549 mkdir dist/vim/$(VIMRTDIR)
550 tar cf - \
551 $(BIN_DOS) \
552 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100553 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 +0000554 cp gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe
555 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
556 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
557 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
558 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
559 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
560 cp README_ole.txt dist/vim/$(VIMRTDIR)
561 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll
562 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR)
563 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000564 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565
566# make Win32s gvim
567dosbin_s: dist no_title.vim dist/$(COMMENT_W32S)
568 -rm -rf dist/gvim$(VERSION)_s.zip
569 -rm -rf dist/vim
570 mkdir dist/vim
571 mkdir dist/vim/$(VIMRTDIR)
572 tar cf - \
573 $(BIN_DOS) \
574 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100575 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 +0000576 cp gvim_w32s.exe dist/vim/$(VIMRTDIR)/gvim.exe
577 cp xxdd32.exe dist/vim/$(VIMRTDIR)/xxd.exe
578 cp README_w32s.txt dist/vim/$(VIMRTDIR)
579 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
580 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
581 cd dist && zip -9 -rD -z gvim$(VERSION)_s.zip vim <$(COMMENT_W32S)
582
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583os2bin: dist no_title.vim dist/$(COMMENT_OS2)
584 -rm -rf dist/vim$(VERSION)os2.zip
585 -rm -rf dist/vim
586 mkdir dist/vim
587 mkdir dist/vim/$(VIMRTDIR)
588 tar cf - \
589 $(BIN_OS2) \
590 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100591 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 +0000592 cp vimos2.exe dist/vim/$(VIMRTDIR)/vim.exe
593 cp xxdos2.exe dist/vim/$(VIMRTDIR)/xxd.exe
594 cp teeos2.exe dist/vim/$(VIMRTDIR)/tee.exe
595 cp emx.dll emxlibcs.dll dist/vim/$(VIMRTDIR)
596 cd dist && zip -9 -rD -z vim$(VERSION)os2.zip vim <$(COMMENT_OS2)
597
598html: dist dist/$(COMMENT_HTML)
599 -rm -rf dist/vim$(VERSION)html.zip
600 cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML)
601
602farsi: dist dist/$(COMMENT_FARSI)
603 -rm -f dist/farsi$(VERSION).zip
604 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI)