blob: df9bb88875b34da02050aa91b4a9ba40fe668129 [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
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#
Bram Moolenaar071d4272004-06-13 20:20:40 +000066# farsi farsi##.zip Farsi fonts
67#
68# All output files are created in the "dist" directory. Existing files are
69# overwritten!
Bram Moolenaar864665d2010-05-15 15:41:59 +020070# To do all this you need the Unix archive and compiled binaries.
Bram Moolenaar071d4272004-06-13 20:20:40 +000071# Before creating an archive first delete all backup files, *.orig, etc.
72
Bram Moolenaara5792f52005-11-23 21:25:05 +000073MAJOR = 7
Bram Moolenaar3b1db362013-08-10 15:00:24 +020074MINOR = 4
Bram Moolenaar071d4272004-06-13 20:20:40 +000075
76# Uncomment this line if the Win32s version is to be included.
Bram Moolenaar913df812013-07-06 15:44:11 +020077# DOSBIN_S = dosbin_s
Bram Moolenaar071d4272004-06-13 20:20:40 +000078
Bram Moolenaard28478b2010-07-18 23:29:58 +020079# Uncomment this line if the 16 bit DOS version is to be included.
80# DOSBIN_D16 = dosbin_d16
81
Bram Moolenaar913df812013-07-06 15:44:11 +020082# Uncomment this line if the 32 bit DOS version is to be included.
83# DOSBIN_D32 = dosbin_d32
84
Bram Moolenaar071d4272004-06-13 20:20:40 +000085# CHECKLIST for creating a new version:
86#
87# - Update Vim version number. For a test version in: src/version.h, Contents,
Bram Moolenaarc01140a2006-03-24 22:21:52 +000088# MAJOR/MINOR above, VIMMAJOR and VIMMINOR in src/Makefile, README*.txt,
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +010089# runtime/doc/*.txt and nsis/gvim.nsi.
90# For a minor/major version: src/GvimExt/GvimExt.reg, src/vim.def,
91# src/vim16.def, src/gvim.exe.mnf.
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020092# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, MZscheme, Lua (if
Bram Moolenaarbfc8b972010-08-13 22:05:54 +020093# you can make it all work), Cscope and "huge" features. Exclude workshop
94# and SNiFF.
Bram Moolenaar071d4272004-06-13 20:20:40 +000095# - With these features: "make proto" (requires cproto and Motif installed;
96# ignore warnings for missing include files, fix problems for syntax errors).
97# - With these features: "make depend" (works best with gcc).
Bram Moolenaar6df6f472010-07-18 18:04:50 +020098# - If you have a lint program: "make lint" and check the output (ignore GTK
99# warnings).
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200100# - If you have valgrind, enable it in src/testdir/Makefile and run "make
101# test". Enable EXITFREE, disable GUI, scheme and tcl to avoid false alarms.
102# Check the valgrind output.
103# - If you have the efence library, enable it in "src/Makefile" and run "make
104# test". Disable Python and Ruby to avoid trouble with threads (efence is
105# not threadsafe).
106# - Adjust the date and other info in src/version.h.
107# - Correct included_patches[] in src/version.c.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108# - Check for missing entries in runtime/makemenu.vim (with checkmenu script).
109# - Check for missing options in runtime/optwin.vim et al. (with check.vim).
110# - Do "make menu" to update the runtime/synmenu.vim file.
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000111# - Add remarks for changes to runtime/doc/version7.txt.
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000112# - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL
113# ADDITIONS".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114# - In runtime/doc run "make" and "make html" to check for errors.
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200115# - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain
116# any personal preferences or the changes mentioned above.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117# - Check file protections to be "644" for text and "755" for executables (run
118# the "check" script).
119# - Check compiling on Amiga, MS-DOS and MS-Windows.
120# - Delete all *~, *.sw?, *.orig, *.rej files
Bram Moolenaar864665d2010-05-15 15:41:59 +0200121# - "make unixall", "make html"
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000122# - Make diff files against the previous release: "makediff7 7.1 7.2"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123#
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200124# Amiga: (OBSOLETE, Amiga files are no longer distributed)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125# - "make amisrc", move the archive to the Amiga and compile:
126# "make -f Make_manx.mak" (will use "big" features by default).
127# - Run the tests: "make -f Make_manx.mak test"
128# - Place the executables Vim and Xxd in this directory (set the executable
129# flag).
130# - "make amirt", "make amibin".
131#
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100132# MS-Windows:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200133# - Run make on Unix to update the ".mo" files.
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100134# - Get libintl-8.dll and libiconv-2.dll. E.g. from
135# https://mlocati.github.io/gettext-iconv-windows/ .
136# Put them in the top directory, "make dosrt" uses them.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100137# - > make dossrc
138# > make dosrt
139# Unpack dist/vim##rt.zip and dist/vim##src.zip on an MS-Windows PC.
140# Win32 console version build:
141# - Set environment for Visual C++ 2008, e.g.:
142# > src/msvc2008.bat
143# Or:
144# > C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat
Bram Moolenaarba460752013-07-04 22:35:01 +0200145# Or, when using the Visual C++ Toolkit 2003: "msvcsetup.bat" (adjust the
146# paths when necessary).
147# For Windows 98/ME the 2003 version is required, but then the executable
Bram Moolenaar1a42b4b2013-07-28 18:29:08 +0200148# won't work on Windows 7 and 64 bit systems.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100149# - > cd src
150# > nmake -f Make_mvc.mak
Bram Moolenaare292d802015-12-29 19:03:21 +0100151# - Run the tests:
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100152# > rm testdir/*.out testdir/*.res
Bram Moolenaare292d802015-12-29 19:03:21 +0100153# > nmake -f Make_mvc.mak test
154# - check the output.
Bram Moolenaarba460752013-07-04 22:35:01 +0200155# - Rename vim.exe to vimw32.exe, xxd/xxd.exe to xxdw32.exe.
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000156# - Rename vim.pdb to vimw32.pdb.
Bram Moolenaarba460752013-07-04 22:35:01 +0200157# - Rename install.exe to installw32.exe and uninstal.exe to uninstalw32.exe.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100158# Win32 GUI version build:
159# - > cd src
160# > nmake -f Make_mvc.mak GUI=yes
Bram Moolenaare292d802015-12-29 19:03:21 +0100161# - Run the tests:
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100162# > rm testdir/*.out testdir/*.res
163# > nmake -f Make_mvc.mak testgvim
Bram Moolenaare292d802015-12-29 19:03:21 +0100164# - check the output.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165# - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000166# - Move gvim.pdb to here.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167# - Copy "GvimExt/gvimext.dll" to here.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100168# - Delete vimrun.exe, install.exe and uninstal.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169# Win32 GUI version with OLE, PERL, TCL, PYTHON and dynamic IME:
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100170# - Install the interfaces you want, see src/INSTALLpc.txt
171# - Build:
172# > cd src
173# Adjust bigvim.bat to match the version of each interface you want.
174# > bigvim.bat
Bram Moolenaare292d802015-12-29 19:03:21 +0100175# - Run the tests:
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100176# > rm testdir/*.out testdir/*.res
177# > nmake -f Make_mvc.mak testgvim
Bram Moolenaare292d802015-12-29 19:03:21 +0100178# - check the output.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179# - Rename "gvim.exe" to "gvim_ole.exe".
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000180# - Rename gvim.pdb to "gvim_ole.pdb".
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000181# - Delete install.exe and uninstal.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182# Create the archives:
183# - Copy all the "*.exe" files to where this Makefile is.
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000184# - Copy all the "*.pdb" files to where this Makefile is.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100185# - in this directory:
186# > make dosbin
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187# NSIS self installing exe:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200188# - To get NSIS see http://nsis.sourceforge.net
Bram Moolenaarba460752013-07-04 22:35:01 +0200189# - Make sure gvim_ole.exe, vimw32.exe, installw32.exe,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190# uninstalw32.exe and xxdw32.exe have been build as mentioned above.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200191# - copy these files (get them from a binary archive or build them):
192# gvimext.dll in src/GvimExt
193# gvimext64.dll in src/GvimExt
194# VisVim.dll in src/VisVim
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000195# Note: VisVim needs to be build with MSVC 5, newer versions don't work.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200196# gvimext64.dll can be obtained from http://code.google.com/p/vim-win3264/
Bram Moolenaarab8205e2010-07-07 15:14:03 +0200197# It is part of vim72.zip as vim72/gvimext.dll.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100198# - Make sure there is a diff.exe two levels up (get it from a previous Vim
199# version).
200# - go to ../nsis and do:
201# > makensis gvim.nsi (takes a few minutes).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202# - Copy gvim##.exe to the dist directory.
203#
Bram Moolenaarba460752013-07-04 22:35:01 +0200204# 64 bit builds (these are not in the normal distribution, the 32 bit build
205# works just fine on 64 bit systems).
206# Like the console and GUI version, but first run vcvars64.bat or
207# "..\VC\vcvarsall.bat x86_amd64".
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100208# - Build the console version:
209# > nmake -f Make_mvc.mak
210# - Build the GUI version:
211# > nmake -f Make_mvc.mak GUI=yes
212# - Build the OLE version with interfaces:
213# > bigvim64.bat
214#
Bram Moolenaarba460752013-07-04 22:35:01 +0200215#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100216# OBSOLETE systems: You can build these if you have an appropriate system.
Bram Moolenaarba460752013-07-04 22:35:01 +0200217#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100218# 16 bit DOS version: You need to get a very old version of Vim, for several
219# years even the tiny build is too big to fit in DOS memory.
Bram Moolenaarba460752013-07-04 22:35:01 +0200220#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100221# 32 bit DOS version: Support was removed in 7.4.1399. When syncing to before
222# that it probably won't build.
Bram Moolenaarba460752013-07-04 22:35:01 +0200223#
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100224# Win32s GUI version: (requires a very old compiler)
Bram Moolenaarba460752013-07-04 22:35:01 +0200225# - Set environment for Visual C++ 4.1 (requires a new console window):
226# "vcvars32.bat" (use the path for VC 4.1 e:\msdev\bin)
227# - "nmake -f Make_mvc.mak GUI=yes INTL=no clean" (use the path for VC 4.1)
228# - "nmake -f Make_mvc.mak GUI=yes INTL=no" (use the path for VC 4.1)
229# - Rename "gvim.exe" to "gvim_w32s.exe".
230# - Rename "install.exe" to "installw32.exe"
231# - Rename "uninstal.exe" to "uninstalw32.exe"
232# - The produced uninstalw32.exe and vimrun.exe are used.
233#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100234# OS/2 support was removed in patch 7.4.1008. If you want to give it a try
235# sync to before that and check the old version of this Makefile for
236# instructions.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237
238VIMVER = vim-$(MAJOR).$(MINOR)
239VERSION = $(MAJOR)$(MINOR)
240VDOT = $(MAJOR).$(MINOR)
241VIMRTDIR = vim$(VERSION)
242
243# Vim used for conversion from "unix" to "dos"
244VIM = vim
245
246# How to include Filelist depends on the version of "make" you have.
247# If the current choice doesn't work, try the other one.
248
249include Filelist
250#.include "Filelist"
251
252
253# All output is put in the "dist" directory.
254dist:
255 mkdir dist
256
257# Clean up some files to avoid they are included.
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100258# Copy README files to the top directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259prepare:
260 if test -f runtime/doc/uganda.nsis.txt; then \
261 rm runtime/doc/uganda.nsis.txt; fi
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100262 for name in $(IN_README_DIR); do \
263 cp READMEdir/"$$name" .; \
264 done
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265
266# For the zip files we need to create a file with the comment line
267dist/comment:
268 mkdir dist/comment
269
270COMMENT_RT = comment/$(VERSION)-rt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271COMMENT_D16 = comment/$(VERSION)-bin-d16
272COMMENT_D32 = comment/$(VERSION)-bin-d32
273COMMENT_W32 = comment/$(VERSION)-bin-w32
274COMMENT_GVIM = comment/$(VERSION)-bin-gvim
275COMMENT_OLE = comment/$(VERSION)-bin-ole
276COMMENT_W32S = comment/$(VERSION)-bin-w32s
277COMMENT_SRC = comment/$(VERSION)-src
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278COMMENT_HTML = comment/$(VERSION)-html
279COMMENT_FARSI = comment/$(VERSION)-farsi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280
281dist/$(COMMENT_RT): dist/comment
282 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT)
283
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284dist/$(COMMENT_D16): dist/comment
285 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-DOS 16 bit real mode" > dist/$(COMMENT_D16)
286
287dist/$(COMMENT_D32): dist/comment
288 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-DOS 32 bit protected mode" > dist/$(COMMENT_D32)
289
290dist/$(COMMENT_W32): dist/comment
291 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32)
292
293dist/$(COMMENT_GVIM): dist/comment
294 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM)
295
296dist/$(COMMENT_OLE): dist/comment
297 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE)
298
299dist/$(COMMENT_W32S): dist/comment
300 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows 3.1/3.11" > dist/$(COMMENT_W32S)
301
302dist/$(COMMENT_SRC): dist/comment
303 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC)
304
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305dist/$(COMMENT_HTML): dist/comment
306 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML)
307
308dist/$(COMMENT_FARSI): dist/comment
309 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI)
310
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000311unixall: dist prepare
312 -rm -f dist/$(VIMVER).tar.bz2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 -rm -rf dist/$(VIMRTDIR)
314 mkdir dist/$(VIMRTDIR)
315 tar cf - \
316 $(RT_ALL) \
317 $(RT_ALL_BIN) \
318 $(RT_UNIX) \
319 $(RT_UNIX_DOS_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320 $(RT_SCRIPTS) \
321 $(LANG_GEN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000322 $(LANG_GEN_BIN) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000323 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324 $(SRC_UNIX) \
325 $(SRC_DOS_UNIX) \
Bram Moolenaar864665d2010-05-15 15:41:59 +0200326 $(EXTRA) \
327 $(LANG_SRC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328 | (cd dist/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100329 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330# Need to use a "distclean" config.mk file
Bram Moolenaarba460752013-07-04 22:35:01 +0200331# Note: this file is not included in the repository to avoid problems, but it's
332# OK to put it in the archive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333 cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk
334# Create an empty config.h file, make dependencies require it
335 touch dist/$(VIMRTDIR)/src/auto/config.h
336# Make sure configure is newer than config.mk to force it to be generated
337 touch dist/$(VIMRTDIR)/src/configure
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338# Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated.
339# Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po.
340 touch dist/$(VIMRTDIR)/src/po/ja.sjis.po
341 touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po
342 touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po
343 touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po
344 touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po
345 touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000346 touch dist/$(VIMRTDIR)/src/po/uk.cp1251.po
Bram Moolenaar864665d2010-05-15 15:41:59 +0200347# Create the archive.
348 cd dist && tar cf $(VIMVER).tar $(VIMRTDIR)
349 bzip2 dist/$(VIMVER).tar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350
Bram Moolenaar864665d2010-05-15 15:41:59 +0200351# Amiga runtime - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352amirt: dist prepare
353 -rm -f dist/vim$(VERSION)rt.tar.gz
354 -rm -rf dist/Vim
355 mkdir dist/Vim
356 mkdir dist/Vim/$(VIMRTDIR)
357 tar cf - \
358 $(ROOT_AMI) \
359 $(RT_ALL) \
360 $(RT_ALL_BIN) \
361 $(RT_SCRIPTS) \
362 $(RT_AMI) \
363 $(RT_NO_UNIX) \
364 $(RT_AMI_DOS) \
365 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100366 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
368 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
369 mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR)
370 rmdir dist/Vim/$(VIMRTDIR)/runtime
371 cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info
372 gzip -9 dist/vim$(VERSION)rt.tar
373 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz
374
Bram Moolenaar864665d2010-05-15 15:41:59 +0200375# Amiga binaries - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376amibin: dist prepare
377 -rm -f dist/vim$(VERSION)bin.tar.gz
378 -rm -rf dist/Vim
379 mkdir dist/Vim
380 mkdir dist/Vim/$(VIMRTDIR)
381 tar cf - \
382 $(ROOT_AMI) \
383 $(BIN_AMI) \
384 Vim \
385 Xxd \
386 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100387 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
389 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
390 cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info
391 gzip -9 dist/vim$(VERSION)bin.tar
392 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz
393
Bram Moolenaar864665d2010-05-15 15:41:59 +0200394# Amiga sources - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395amisrc: dist prepare
396 -rm -f dist/vim$(VERSION)src.tar.gz
397 -rm -rf dist/Vim
398 mkdir dist/Vim
399 mkdir dist/Vim/$(VIMRTDIR)
400 tar cf - \
401 $(ROOT_AMI) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000402 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403 $(SRC_AMI) \
404 $(SRC_AMI_DOS) \
405 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100406 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
408 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
409 cd dist && tar cf vim$(VERSION)src.tar Vim Vim.info
410 gzip -9 dist/vim$(VERSION)src.tar
411 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
412
413no_title.vim: Makefile
414 echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim
415
Bram Moolenaar442b4222010-05-24 21:34:22 +0200416# MS-DOS sources
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100417dossrc: dist no_title.vim dist/$(COMMENT_SRC) \
418 runtime/doc/uganda.nsis.txt \
419 nsis/gvim_version.nsh
Bram Moolenaar442b4222010-05-24 21:34:22 +0200420 -rm -rf dist/vim$(VERSION)src.zip
421 -rm -rf dist/vim
422 mkdir dist/vim
423 mkdir dist/vim/$(VIMRTDIR)
424 tar cf - \
425 $(SRC_ALL) \
426 $(SRC_DOS) \
427 $(SRC_AMI_DOS) \
428 $(SRC_DOS_UNIX) \
429 runtime/doc/uganda.nsis.txt \
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100430 nsis/gvim_version.nsh \
Bram Moolenaar442b4222010-05-24 21:34:22 +0200431 | (cd dist/vim/$(VIMRTDIR); tar xf -)
432 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
433 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100434 # This file needs to be in dos fileformat for NSIS.
435 $(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 +0200436 tar cf - \
437 $(SRC_DOS_BIN) \
438 | (cd dist/vim/$(VIMRTDIR); tar xf -)
439 cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC)
440
441runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt
442 cd runtime/doc && $(MAKE) uganda.nsis.txt
443
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100444nsis/gvim_version.nsh: Makefile
445 echo "# Generated from Makefile: define the version numbers" > $@
446 echo "!ifndef __GVIM_VER__NSH__" >> $@
447 echo "!define __GVIM_VER__NSH__" >> $@
448 echo "!define VER_MAJOR $(MAJOR)" >> $@
449 echo "!define VER_MINOR $(MINOR)" >> $@
450 echo "!endif" >> $@
451
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100452dosrt: dist dist/$(COMMENT_RT) dosrt_files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 -rm -rf dist/vim$(VERSION)rt.zip
454 cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT)
455
Bram Moolenaar442b4222010-05-24 21:34:22 +0200456# Split in two parts to avoid an "argument list too long" error.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100457# We no longer convert the files from unix to dos fileformat.
458dosrt_files: dist prepare no_title.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459 -rm -rf dist/vim
460 mkdir dist/vim
461 mkdir dist/vim/$(VIMRTDIR)
Bram Moolenaar864665d2010-05-15 15:41:59 +0200462 mkdir dist/vim/$(VIMRTDIR)/lang
463 cd src && MAKEMO=yes $(MAKE) languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 tar cf - \
465 $(RT_ALL) \
Bram Moolenaara5792f52005-11-23 21:25:05 +0000466 | (cd dist/vim/$(VIMRTDIR); tar xf -)
467 tar cf - \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468 $(RT_SCRIPTS) \
469 $(RT_DOS) \
470 $(RT_NO_UNIX) \
471 $(RT_AMI_DOS) \
472 $(LANG_GEN) \
473 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474 tar cf - \
475 $(RT_UNIX_DOS_BIN) \
476 $(RT_ALL_BIN) \
477 $(RT_DOS_BIN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000478 $(LANG_GEN_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100480 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
482 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar864665d2010-05-15 15:41:59 +0200483# Add the message translations. Trick: skip ja.mo and use ja.sjis.mo instead.
484# Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo, sk.mo / sk.cp1250.mo,
485# zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and ru.mo / ru.cp1251.mo.
486 for i in $(LANG_DOS); do \
487 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 \
488 n=`echo $$i | sed -e "s+src/po/\([-a-zA-Z0-9_]*\(.UTF-8\)*\)\(.sjis\)*\(.cp1250\)*\(.cp1251\)*\(.cp936\)*.mo+\1+"`; \
489 mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \
490 mkdir dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES; \
491 cp $$i dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES/vim.mo; \
492 fi \
493 done
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100494 cp libintl-8.dll dist/vim/$(VIMRTDIR)/
495 cp libiconv-2.dll dist/vim/$(VIMRTDIR)/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496
497
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498# Used before uploading. Don't delete the AAPDIR/sign files!
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100499runtime_unix2dos: dosrt_files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 -rm -rf `find runtime/dos -type f -print | sed -e /AAPDIR/d`
501 cd dist/vim/$(VIMRTDIR); tar cf - * \
502 | (cd ../../../runtime/dos; tar xf -)
503
Bram Moolenaar913df812013-07-06 15:44:11 +0200504dosbin: prepare dosbin_gvim dosbin_w32 $(DOSBIN_D32) dosbin_ole $(DOSBIN_S) $(DOSBIN_D16)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505
506# make Win32 gvim
507dosbin_gvim: dist no_title.vim dist/$(COMMENT_GVIM)
508 -rm -rf dist/gvim$(VERSION).zip
509 -rm -rf dist/vim
510 mkdir dist/vim
511 mkdir dist/vim/$(VIMRTDIR)
512 tar cf - \
513 $(BIN_DOS) \
514 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100515 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe
517 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
518 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
519 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
520 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
521 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
522 cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000523 cp gvim.pdb dist/gvim$(VERSION).pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524
525# make Win32 console
526dosbin_w32: dist no_title.vim dist/$(COMMENT_W32)
527 -rm -rf dist/vim$(VERSION)w32.zip
528 -rm -rf dist/vim
529 mkdir dist/vim
530 mkdir dist/vim/$(VIMRTDIR)
531 tar cf - \
532 $(BIN_DOS) \
533 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe
535 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
536 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
537 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
538 cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000539 cp vimw32.pdb dist/vim$(VERSION)w32.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540
541# make 32bit DOS
542dosbin_d32: dist no_title.vim dist/$(COMMENT_D32)
543 -rm -rf dist/vim$(VERSION)d32.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 Moolenaar071d4272004-06-13 20:20:40 +0000550 cp vimd32.exe dist/vim/$(VIMRTDIR)/vim.exe
551 cp xxdd32.exe dist/vim/$(VIMRTDIR)/xxd.exe
552 cp installd32.exe dist/vim/$(VIMRTDIR)/install.exe
553 cp uninstald32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
554 cp csdpmi4b.zip dist/vim/$(VIMRTDIR)
555 cd dist && zip -9 -rD -z vim$(VERSION)d32.zip vim <$(COMMENT_D32)
556
557# make 16bit DOS
558dosbin_d16: dist no_title.vim dist/$(COMMENT_D16)
559 -rm -rf dist/vim$(VERSION)d16.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 Moolenaar071d4272004-06-13 20:20:40 +0000566 cp vimd16.exe dist/vim/$(VIMRTDIR)/vim.exe
567 cp xxdd16.exe dist/vim/$(VIMRTDIR)/xxd.exe
568 cp installd16.exe dist/vim/$(VIMRTDIR)/install.exe
569 cp uninstald16.exe dist/vim/$(VIMRTDIR)/uninstal.exe
570 cd dist && zip -9 -rD -z vim$(VERSION)d16.zip vim <$(COMMENT_D16)
571
572# make Win32 gvim with OLE
573dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE)
574 -rm -rf dist/gvim$(VERSION)ole.zip
575 -rm -rf dist/vim
576 mkdir dist/vim
577 mkdir dist/vim/$(VIMRTDIR)
578 tar cf - \
579 $(BIN_DOS) \
580 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 cp gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe
582 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
583 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
584 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
585 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
586 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
587 cp README_ole.txt dist/vim/$(VIMRTDIR)
588 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll
589 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR)
590 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000591 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592
593# make Win32s gvim
594dosbin_s: dist no_title.vim dist/$(COMMENT_W32S)
595 -rm -rf dist/gvim$(VERSION)_s.zip
596 -rm -rf dist/vim
597 mkdir dist/vim
598 mkdir dist/vim/$(VIMRTDIR)
599 tar cf - \
600 $(BIN_DOS) \
601 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602 cp gvim_w32s.exe dist/vim/$(VIMRTDIR)/gvim.exe
603 cp xxdd32.exe dist/vim/$(VIMRTDIR)/xxd.exe
604 cp README_w32s.txt dist/vim/$(VIMRTDIR)
605 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
606 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
607 cd dist && zip -9 -rD -z gvim$(VERSION)_s.zip vim <$(COMMENT_W32S)
608
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609html: dist dist/$(COMMENT_HTML)
610 -rm -rf dist/vim$(VERSION)html.zip
611 cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML)
612
613farsi: dist dist/$(COMMENT_FARSI)
614 -rm -f dist/farsi$(VERSION).zip
615 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI)