blob: a83e7337b71044c8ff4e6c78520258de3bc70701 [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 Moolenaare21d6242016-07-16 20:43:14 +020035all install uninstall tools config configure reconfig proto depend lint tags types test scripttests unittests 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
Bram Moolenaarfec246d2016-08-28 18:47:14 +020054# dosbin vim##w32.zip binary for Win32
Bram Moolenaar071d4272004-06-13 20:20:40 +000055# gvim##.zip binary for GUI Win32
56# gvim##ole.zip OLE exe for Win32 GUI
Bram Moolenaar864665d2010-05-15 15:41:59 +020057#
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
Bram Moolenaar071d4272004-06-13 20:20:40 +000062#
Bram Moolenaar071d4272004-06-13 20:20:40 +000063# farsi farsi##.zip Farsi fonts
64#
65# All output files are created in the "dist" directory. Existing files are
66# overwritten!
Bram Moolenaar864665d2010-05-15 15:41:59 +020067# To do all this you need the Unix archive and compiled binaries.
Bram Moolenaar071d4272004-06-13 20:20:40 +000068# Before creating an archive first delete all backup files, *.orig, etc.
69
Bram Moolenaara5792f52005-11-23 21:25:05 +000070MAJOR = 7
Bram Moolenaar3b1db362013-08-10 15:00:24 +020071MINOR = 4
Bram Moolenaar071d4272004-06-13 20:20:40 +000072
Bram Moolenaar071d4272004-06-13 20:20:40 +000073# CHECKLIST for creating a new version:
74#
75# - Update Vim version number. For a test version in: src/version.h, Contents,
Bram Moolenaarc01140a2006-03-24 22:21:52 +000076# MAJOR/MINOR above, VIMMAJOR and VIMMINOR in src/Makefile, README*.txt,
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +010077# runtime/doc/*.txt and nsis/gvim.nsi.
78# For a minor/major version: src/GvimExt/GvimExt.reg, src/vim.def,
79# src/vim16.def, src/gvim.exe.mnf.
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020080# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, MZscheme, Lua (if
Bram Moolenaarbfc8b972010-08-13 22:05:54 +020081# you can make it all work), Cscope and "huge" features. Exclude workshop
82# and SNiFF.
Bram Moolenaar071d4272004-06-13 20:20:40 +000083# - With these features: "make proto" (requires cproto and Motif installed;
84# ignore warnings for missing include files, fix problems for syntax errors).
85# - With these features: "make depend" (works best with gcc).
Bram Moolenaar6df6f472010-07-18 18:04:50 +020086# - If you have a lint program: "make lint" and check the output (ignore GTK
87# warnings).
Bram Moolenaar3b1db362013-08-10 15:00:24 +020088# - If you have valgrind, enable it in src/testdir/Makefile and run "make
89# test". Enable EXITFREE, disable GUI, scheme and tcl to avoid false alarms.
90# Check the valgrind output.
91# - If you have the efence library, enable it in "src/Makefile" and run "make
92# test". Disable Python and Ruby to avoid trouble with threads (efence is
93# not threadsafe).
94# - Adjust the date and other info in src/version.h.
95# - Correct included_patches[] in src/version.c.
Bram Moolenaar071d4272004-06-13 20:20:40 +000096# - Check for missing entries in runtime/makemenu.vim (with checkmenu script).
97# - Check for missing options in runtime/optwin.vim et al. (with check.vim).
98# - Do "make menu" to update the runtime/synmenu.vim file.
Bram Moolenaarc01140a2006-03-24 22:21:52 +000099# - Add remarks for changes to runtime/doc/version7.txt.
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000100# - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL
101# ADDITIONS".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102# - In runtime/doc run "make" and "make html" to check for errors.
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200103# - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain
104# any personal preferences or the changes mentioned above.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105# - Check file protections to be "644" for text and "755" for executables (run
106# the "check" script).
107# - Check compiling on Amiga, MS-DOS and MS-Windows.
108# - Delete all *~, *.sw?, *.orig, *.rej files
Bram Moolenaar864665d2010-05-15 15:41:59 +0200109# - "make unixall", "make html"
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000110# - Make diff files against the previous release: "makediff7 7.1 7.2"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111#
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200112# Amiga: (OBSOLETE, Amiga files are no longer distributed)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113# - "make amisrc", move the archive to the Amiga and compile:
114# "make -f Make_manx.mak" (will use "big" features by default).
115# - Run the tests: "make -f Make_manx.mak test"
116# - Place the executables Vim and Xxd in this directory (set the executable
117# flag).
118# - "make amirt", "make amibin".
119#
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100120# MS-Windows:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200121# - Run make on Unix to update the ".mo" files.
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100122# - Get libintl-8.dll and libiconv-2.dll. E.g. from
123# https://mlocati.github.io/gettext-iconv-windows/ .
124# Put them in the top directory, "make dosrt" uses them.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100125# - > make dossrc
126# > make dosrt
127# Unpack dist/vim##rt.zip and dist/vim##src.zip on an MS-Windows PC.
128# Win32 console version build:
129# - Set environment for Visual C++ 2008, e.g.:
130# > src/msvc2008.bat
131# Or:
132# > C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat
Bram Moolenaarba460752013-07-04 22:35:01 +0200133# Or, when using the Visual C++ Toolkit 2003: "msvcsetup.bat" (adjust the
134# paths when necessary).
135# For Windows 98/ME the 2003 version is required, but then the executable
Bram Moolenaar1a42b4b2013-07-28 18:29:08 +0200136# won't work on Windows 7 and 64 bit systems.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100137# - > cd src
138# > nmake -f Make_mvc.mak
Bram Moolenaare292d802015-12-29 19:03:21 +0100139# - Run the tests:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200140# > nmake -f Make_mvc.mak testclean
Bram Moolenaare292d802015-12-29 19:03:21 +0100141# > nmake -f Make_mvc.mak test
142# - check the output.
Bram Moolenaar1b010052016-09-12 12:24:11 +0200143# - Rename (using ../tools/rename.bat):
Bram Moolenaarcb033972016-08-28 20:14:38 +0200144# vim.exe to vimw32.exe
145# tee/tee.exe to teew32.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200146# xxd/xxd.exe to xxdw32.exe
Bram Moolenaarcb033972016-08-28 20:14:38 +0200147# vim.pdb to vimw32.pdb
148# install.exe to installw32.exe
149# uninstal.exe to uninstalw32.exe
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100150# Win32 GUI version build:
151# - > cd src
152# > nmake -f Make_mvc.mak GUI=yes
Bram Moolenaare292d802015-12-29 19:03:21 +0100153# - Run the tests:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200154# > nmake -f Make_mvc.mak testclean
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100155# > nmake -f Make_mvc.mak testgvim
Bram Moolenaare292d802015-12-29 19:03:21 +0100156# - check the output.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157# - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000158# - Move gvim.pdb to here.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159# - Copy "GvimExt/gvimext.dll" to here.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100160# - Delete vimrun.exe, install.exe and uninstal.exe.
Bram Moolenaar6384c5d2016-09-06 22:06:35 +0200161# Win32 GUI version with OLE, PERL, Ruby, TCL, PYTHON and dynamic IME:
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100162# - Install the interfaces you want, see src/INSTALLpc.txt
163# - Build:
164# > cd src
165# Adjust bigvim.bat to match the version of each interface you want.
166# > bigvim.bat
Bram Moolenaare292d802015-12-29 19:03:21 +0100167# - Run the tests:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200168# > nmake -f Make_mvc.mak testclean
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100169# > nmake -f Make_mvc.mak testgvim
Bram Moolenaare292d802015-12-29 19:03:21 +0100170# - 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 Moolenaar2c15f6a2016-01-02 15:00:30 +0100177# - in this directory:
178# > make dosbin
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179# NSIS self installing exe:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200180# - To get NSIS see http://nsis.sourceforge.net
Bram Moolenaarba460752013-07-04 22:35:01 +0200181# - Make sure gvim_ole.exe, vimw32.exe, installw32.exe,
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200182# uninstalw32.exe, teew32.exe and xxdw32.exe have been build as mentioned
183# above.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200184# - copy these files (get them from a binary archive or build them):
185# gvimext.dll in src/GvimExt
186# gvimext64.dll in src/GvimExt
187# VisVim.dll in src/VisVim
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000188# Note: VisVim needs to be build with MSVC 5, newer versions don't work.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200189# gvimext64.dll can be obtained from http://code.google.com/p/vim-win3264/
Bram Moolenaarab8205e2010-07-07 15:14:03 +0200190# It is part of vim72.zip as vim72/gvimext.dll.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100191# - Make sure there is a diff.exe two levels up (get it from a previous Vim
192# version).
193# - go to ../nsis and do:
194# > makensis gvim.nsi (takes a few minutes).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195# - Copy gvim##.exe to the dist directory.
196#
Bram Moolenaarba460752013-07-04 22:35:01 +0200197# 64 bit builds (these are not in the normal distribution, the 32 bit build
198# works just fine on 64 bit systems).
199# Like the console and GUI version, but first run vcvars64.bat or
200# "..\VC\vcvarsall.bat x86_amd64".
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100201# - Build the console version:
202# > nmake -f Make_mvc.mak
203# - Build the GUI version:
204# > nmake -f Make_mvc.mak GUI=yes
205# - Build the OLE version with interfaces:
206# > bigvim64.bat
207#
Bram Moolenaarba460752013-07-04 22:35:01 +0200208#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100209# OBSOLETE systems: You can build these if you have an appropriate system.
Bram Moolenaarba460752013-07-04 22:35:01 +0200210#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100211# 16 bit DOS version: You need to get a very old version of Vim, for several
212# years even the tiny build is too big to fit in DOS memory.
Bram Moolenaarba460752013-07-04 22:35:01 +0200213#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100214# 32 bit DOS version: Support was removed in 7.4.1399. When syncing to before
215# that it probably won't build.
Bram Moolenaarba460752013-07-04 22:35:01 +0200216#
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200217# Win32s GUI version: Support was removed in patch 7.4.1364.
Bram Moolenaarba460752013-07-04 22:35:01 +0200218#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100219# OS/2 support was removed in patch 7.4.1008. If you want to give it a try
220# sync to before that and check the old version of this Makefile for
221# instructions.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222
223VIMVER = vim-$(MAJOR).$(MINOR)
224VERSION = $(MAJOR)$(MINOR)
225VDOT = $(MAJOR).$(MINOR)
226VIMRTDIR = vim$(VERSION)
227
228# Vim used for conversion from "unix" to "dos"
229VIM = vim
230
231# How to include Filelist depends on the version of "make" you have.
232# If the current choice doesn't work, try the other one.
233
234include Filelist
235#.include "Filelist"
236
237
238# All output is put in the "dist" directory.
239dist:
240 mkdir dist
241
242# Clean up some files to avoid they are included.
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100243# Copy README files to the top directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244prepare:
245 if test -f runtime/doc/uganda.nsis.txt; then \
246 rm runtime/doc/uganda.nsis.txt; fi
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100247 for name in $(IN_README_DIR); do \
248 cp READMEdir/"$$name" .; \
249 done
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250
251# For the zip files we need to create a file with the comment line
252dist/comment:
253 mkdir dist/comment
254
255COMMENT_RT = comment/$(VERSION)-rt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256COMMENT_W32 = comment/$(VERSION)-bin-w32
257COMMENT_GVIM = comment/$(VERSION)-bin-gvim
258COMMENT_OLE = comment/$(VERSION)-bin-ole
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259COMMENT_SRC = comment/$(VERSION)-src
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260COMMENT_HTML = comment/$(VERSION)-html
261COMMENT_FARSI = comment/$(VERSION)-farsi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262
263dist/$(COMMENT_RT): dist/comment
264 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT)
265
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266dist/$(COMMENT_W32): dist/comment
267 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32)
268
269dist/$(COMMENT_GVIM): dist/comment
270 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM)
271
272dist/$(COMMENT_OLE): dist/comment
273 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE)
274
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275dist/$(COMMENT_SRC): dist/comment
276 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC)
277
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278dist/$(COMMENT_HTML): dist/comment
279 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML)
280
281dist/$(COMMENT_FARSI): dist/comment
282 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI)
283
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000284unixall: dist prepare
285 -rm -f dist/$(VIMVER).tar.bz2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286 -rm -rf dist/$(VIMRTDIR)
287 mkdir dist/$(VIMRTDIR)
288 tar cf - \
289 $(RT_ALL) \
290 $(RT_ALL_BIN) \
291 $(RT_UNIX) \
292 $(RT_UNIX_DOS_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293 $(RT_SCRIPTS) \
294 $(LANG_GEN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000295 $(LANG_GEN_BIN) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000296 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297 $(SRC_UNIX) \
298 $(SRC_DOS_UNIX) \
Bram Moolenaar864665d2010-05-15 15:41:59 +0200299 $(EXTRA) \
300 $(LANG_SRC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301 | (cd dist/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100302 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303# Need to use a "distclean" config.mk file
Bram Moolenaarba460752013-07-04 22:35:01 +0200304# Note: this file is not included in the repository to avoid problems, but it's
305# OK to put it in the archive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306 cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk
307# Create an empty config.h file, make dependencies require it
308 touch dist/$(VIMRTDIR)/src/auto/config.h
309# Make sure configure is newer than config.mk to force it to be generated
310 touch dist/$(VIMRTDIR)/src/configure
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311# Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated.
312# Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po.
313 touch dist/$(VIMRTDIR)/src/po/ja.sjis.po
314 touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po
315 touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po
316 touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po
317 touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po
318 touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000319 touch dist/$(VIMRTDIR)/src/po/uk.cp1251.po
Bram Moolenaar864665d2010-05-15 15:41:59 +0200320# Create the archive.
321 cd dist && tar cf $(VIMVER).tar $(VIMRTDIR)
322 bzip2 dist/$(VIMVER).tar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323
Bram Moolenaar864665d2010-05-15 15:41:59 +0200324# Amiga runtime - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325amirt: dist prepare
326 -rm -f dist/vim$(VERSION)rt.tar.gz
327 -rm -rf dist/Vim
328 mkdir dist/Vim
329 mkdir dist/Vim/$(VIMRTDIR)
330 tar cf - \
331 $(ROOT_AMI) \
332 $(RT_ALL) \
333 $(RT_ALL_BIN) \
334 $(RT_SCRIPTS) \
335 $(RT_AMI) \
336 $(RT_NO_UNIX) \
337 $(RT_AMI_DOS) \
338 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100339 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
341 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
342 mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR)
343 rmdir dist/Vim/$(VIMRTDIR)/runtime
344 cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info
345 gzip -9 dist/vim$(VERSION)rt.tar
346 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz
347
Bram Moolenaar864665d2010-05-15 15:41:59 +0200348# Amiga binaries - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349amibin: dist prepare
350 -rm -f dist/vim$(VERSION)bin.tar.gz
351 -rm -rf dist/Vim
352 mkdir dist/Vim
353 mkdir dist/Vim/$(VIMRTDIR)
354 tar cf - \
355 $(ROOT_AMI) \
356 $(BIN_AMI) \
357 Vim \
358 Xxd \
359 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100360 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
362 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
363 cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info
364 gzip -9 dist/vim$(VERSION)bin.tar
365 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz
366
Bram Moolenaar864665d2010-05-15 15:41:59 +0200367# Amiga sources - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368amisrc: dist prepare
369 -rm -f dist/vim$(VERSION)src.tar.gz
370 -rm -rf dist/Vim
371 mkdir dist/Vim
372 mkdir dist/Vim/$(VIMRTDIR)
373 tar cf - \
374 $(ROOT_AMI) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000375 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 $(SRC_AMI) \
377 $(SRC_AMI_DOS) \
378 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100379 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
381 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
382 cd dist && tar cf vim$(VERSION)src.tar Vim Vim.info
383 gzip -9 dist/vim$(VERSION)src.tar
384 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
385
386no_title.vim: Makefile
387 echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim
388
Bram Moolenaar442b4222010-05-24 21:34:22 +0200389# MS-DOS sources
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100390dossrc: dist no_title.vim dist/$(COMMENT_SRC) \
391 runtime/doc/uganda.nsis.txt \
392 nsis/gvim_version.nsh
Bram Moolenaar442b4222010-05-24 21:34:22 +0200393 -rm -rf dist/vim$(VERSION)src.zip
394 -rm -rf dist/vim
395 mkdir dist/vim
396 mkdir dist/vim/$(VIMRTDIR)
397 tar cf - \
398 $(SRC_ALL) \
399 $(SRC_DOS) \
400 $(SRC_AMI_DOS) \
401 $(SRC_DOS_UNIX) \
402 runtime/doc/uganda.nsis.txt \
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100403 nsis/gvim_version.nsh \
Bram Moolenaar442b4222010-05-24 21:34:22 +0200404 | (cd dist/vim/$(VIMRTDIR); tar xf -)
405 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
406 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100407 # This file needs to be in dos fileformat for NSIS.
408 $(VIM) -e -X -u no_title.vim -c ":set tx|wq" dist/vim/$(VIMRTDIR)/doc/uganda.nsis.txt
Bram Moolenaar442b4222010-05-24 21:34:22 +0200409 tar cf - \
410 $(SRC_DOS_BIN) \
411 | (cd dist/vim/$(VIMRTDIR); tar xf -)
412 cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC)
413
414runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt
415 cd runtime/doc && $(MAKE) uganda.nsis.txt
416
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100417nsis/gvim_version.nsh: Makefile
418 echo "# Generated from Makefile: define the version numbers" > $@
419 echo "!ifndef __GVIM_VER__NSH__" >> $@
420 echo "!define __GVIM_VER__NSH__" >> $@
421 echo "!define VER_MAJOR $(MAJOR)" >> $@
422 echo "!define VER_MINOR $(MINOR)" >> $@
423 echo "!endif" >> $@
424
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100425dosrt: dist dist/$(COMMENT_RT) dosrt_files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426 -rm -rf dist/vim$(VERSION)rt.zip
427 cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT)
428
Bram Moolenaar442b4222010-05-24 21:34:22 +0200429# Split in two parts to avoid an "argument list too long" error.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100430# We no longer convert the files from unix to dos fileformat.
431dosrt_files: dist prepare no_title.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432 -rm -rf dist/vim
433 mkdir dist/vim
434 mkdir dist/vim/$(VIMRTDIR)
Bram Moolenaar864665d2010-05-15 15:41:59 +0200435 mkdir dist/vim/$(VIMRTDIR)/lang
436 cd src && MAKEMO=yes $(MAKE) languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437 tar cf - \
438 $(RT_ALL) \
Bram Moolenaara5792f52005-11-23 21:25:05 +0000439 | (cd dist/vim/$(VIMRTDIR); tar xf -)
440 tar cf - \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 $(RT_SCRIPTS) \
442 $(RT_DOS) \
443 $(RT_NO_UNIX) \
444 $(RT_AMI_DOS) \
445 $(LANG_GEN) \
446 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 tar cf - \
448 $(RT_UNIX_DOS_BIN) \
449 $(RT_ALL_BIN) \
450 $(RT_DOS_BIN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000451 $(LANG_GEN_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100453 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
455 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar864665d2010-05-15 15:41:59 +0200456# Add the message translations. Trick: skip ja.mo and use ja.sjis.mo instead.
457# Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo, sk.mo / sk.cp1250.mo,
458# zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and ru.mo / ru.cp1251.mo.
459 for i in $(LANG_DOS); do \
460 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 \
461 n=`echo $$i | sed -e "s+src/po/\([-a-zA-Z0-9_]*\(.UTF-8\)*\)\(.sjis\)*\(.cp1250\)*\(.cp1251\)*\(.cp936\)*.mo+\1+"`; \
462 mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \
463 mkdir dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES; \
464 cp $$i dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES/vim.mo; \
465 fi \
466 done
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100467 cp libintl-8.dll dist/vim/$(VIMRTDIR)/
468 cp libiconv-2.dll dist/vim/$(VIMRTDIR)/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469
470
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471# Used before uploading. Don't delete the AAPDIR/sign files!
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100472runtime_unix2dos: dosrt_files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 -rm -rf `find runtime/dos -type f -print | sed -e /AAPDIR/d`
474 cd dist/vim/$(VIMRTDIR); tar cf - * \
475 | (cd ../../../runtime/dos; tar xf -)
476
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200477dosbin: prepare dosbin_gvim dosbin_w32 dosbin_ole $(DOSBIN_S)
Bram Moolenaarcb033972016-08-28 20:14:38 +0200478 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479
480# make Win32 gvim
481dosbin_gvim: dist no_title.vim dist/$(COMMENT_GVIM)
482 -rm -rf dist/gvim$(VERSION).zip
483 -rm -rf dist/vim
484 mkdir dist/vim
485 mkdir dist/vim/$(VIMRTDIR)
486 tar cf - \
487 $(BIN_DOS) \
488 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200490 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
492 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
493 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
494 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
495 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
496 cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000497 cp gvim.pdb dist/gvim$(VERSION).pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498
499# make Win32 console
500dosbin_w32: dist no_title.vim dist/$(COMMENT_W32)
501 -rm -rf dist/vim$(VERSION)w32.zip
502 -rm -rf dist/vim
503 mkdir dist/vim
504 mkdir dist/vim/$(VIMRTDIR)
505 tar cf - \
506 $(BIN_DOS) \
507 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508 cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200509 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
511 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
512 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
513 cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000514 cp vimw32.pdb dist/vim$(VERSION)w32.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516# make Win32 gvim with OLE
517dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE)
518 -rm -rf dist/gvim$(VERSION)ole.zip
519 -rm -rf dist/vim
520 mkdir dist/vim
521 mkdir dist/vim/$(VIMRTDIR)
522 tar cf - \
523 $(BIN_DOS) \
524 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 cp gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200526 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
528 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
529 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
530 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
531 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
532 cp README_ole.txt dist/vim/$(VIMRTDIR)
533 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll
534 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR)
535 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000536 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538html: dist dist/$(COMMENT_HTML)
539 -rm -rf dist/vim$(VERSION)html.zip
540 cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML)
541
542farsi: dist dist/$(COMMENT_FARSI)
543 -rm -f dist/farsi$(VERSION).zip
544 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI)