blob: 16fc84ccdc92d5c8b3214366c9917fed10fe17a6 [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 Moolenaaracecb3b2018-12-15 16:19:50 +010035all install uninstall tools config configure reconfig proto depend lint tags types test scripttests test_libvterm 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) $@
Bram Moolenaar6403bcd2018-12-16 16:48:47 +010042 @# When the target is "test" also run the indent tests.
Bram Moolenaar72846cf2018-12-15 17:23:18 +010043 @if test "$@" = "test"; then \
44 $(MAKE) indenttest; \
45 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +000046
Bram Moolenaar72846cf2018-12-15 17:23:18 +010047# Executable used for running the indent tests.
48VIM_FOR_INDENTTEST = ../../src/vim
49
50indenttest:
51 cd runtime/indent && \
52 $(MAKE) clean VIM="$(VIM_FOR_INDENTTEST)" && \
53 $(MAKE) test VIM="$(VIM_FOR_INDENTTEST)"
Bram Moolenaaracecb3b2018-12-15 16:19:50 +010054
Bram Moolenaar071d4272004-06-13 20:20:40 +000055
Bram Moolenaar864665d2010-05-15 15:41:59 +020056#########################################################################
57# 2. Creating the various distribution files.
Bram Moolenaar071d4272004-06-13 20:20:40 +000058#
59# TARGET PRODUCES CONTAINS
Bram Moolenaar864665d2010-05-15 15:41:59 +020060# unixall vim-#.#.tar.bz2 All runtime files and sources, for Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +000061#
62# html vim##html.zip HTML docs
63#
Bram Moolenaar071d4272004-06-13 20:20:40 +000064# dossrc vim##src.zip sources for MS-DOS
65# dosrt vim##rt.zip runtime for MS-DOS
Bram Moolenaarfec246d2016-08-28 18:47:14 +020066# dosbin vim##w32.zip binary for Win32
Bram Moolenaar071d4272004-06-13 20:20:40 +000067# gvim##.zip binary for GUI Win32
68# gvim##ole.zip OLE exe for Win32 GUI
Bram Moolenaar864665d2010-05-15 15:41:59 +020069#
70# OBSOLETE
71# amisrc vim##src.tgz sources for Amiga
72# amirt vim##rt.tgz runtime for Amiga
73# amibin vim##bin.tgz binary for Amiga
Bram Moolenaar071d4272004-06-13 20:20:40 +000074#
Bram Moolenaar071d4272004-06-13 20:20:40 +000075# farsi farsi##.zip Farsi fonts
76#
77# All output files are created in the "dist" directory. Existing files are
78# overwritten!
Bram Moolenaar864665d2010-05-15 15:41:59 +020079# To do all this you need the Unix archive and compiled binaries.
Bram Moolenaar071d4272004-06-13 20:20:40 +000080# Before creating an archive first delete all backup files, *.orig, etc.
81
Bram Moolenaarbb76f242016-09-12 14:24:39 +020082MAJOR = 8
Bram Moolenaarb1c91982018-05-17 17:04:55 +020083MINOR = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +000084
Bram Moolenaar071d4272004-06-13 20:20:40 +000085# CHECKLIST for creating a new version:
86#
Bram Moolenaarbb76f242016-09-12 14:24:39 +020087# - Update Vim version number. For a test version in: src/version.h,
88# READMEdir/Contents, MAJOR/MINOR above, VIMMAJOR and VIMMINOR in
89# src/Makefile, README.txt, README.md, READMEdir/README*.txt,
90# runtime/doc/*.txt and make nsis/gvim_version.nsh.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +010091# For a minor/major version: src/GvimExt/GvimExt.reg, src/vim.def,
Bram Moolenaarbb76f242016-09-12 14:24:39 +020092# src/gvim.exe.mnf.
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020093# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, MZscheme, Lua (if
Bram Moolenaarbfc8b972010-08-13 22:05:54 +020094# you can make it all work), Cscope and "huge" features. Exclude workshop
95# and SNiFF.
Bram Moolenaar071d4272004-06-13 20:20:40 +000096# - With these features: "make proto" (requires cproto and Motif installed;
97# ignore warnings for missing include files, fix problems for syntax errors).
98# - With these features: "make depend" (works best with gcc).
Bram Moolenaar6df6f472010-07-18 18:04:50 +020099# - If you have a lint program: "make lint" and check the output (ignore GTK
100# warnings).
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200101# - If you have valgrind, enable it in src/testdir/Makefile and run "make
102# test". Enable EXITFREE, disable GUI, scheme and tcl to avoid false alarms.
103# Check the valgrind output.
104# - If you have the efence library, enable it in "src/Makefile" and run "make
105# test". Disable Python and Ruby to avoid trouble with threads (efence is
106# not threadsafe).
107# - Adjust the date and other info in src/version.h.
108# - Correct included_patches[] in src/version.c.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109# - Check for missing entries in runtime/makemenu.vim (with checkmenu script).
110# - Check for missing options in runtime/optwin.vim et al. (with check.vim).
111# - Do "make menu" to update the runtime/synmenu.vim file.
Bram Moolenaarbb76f242016-09-12 14:24:39 +0200112# - Add remarks for changes to runtime/doc/version8.txt.
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000113# - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL
114# ADDITIONS".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115# - In runtime/doc run "make" and "make html" to check for errors.
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200116# - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain
117# any personal preferences or the changes mentioned above.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118# - Check file protections to be "644" for text and "755" for executables (run
119# the "check" script).
120# - Check compiling on Amiga, MS-DOS and MS-Windows.
121# - Delete all *~, *.sw?, *.orig, *.rej files
Bram Moolenaar864665d2010-05-15 15:41:59 +0200122# - "make unixall", "make html"
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000123# - Make diff files against the previous release: "makediff7 7.1 7.2"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124#
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200125# Amiga: (OBSOLETE, Amiga files are no longer distributed)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126# - "make amisrc", move the archive to the Amiga and compile:
127# "make -f Make_manx.mak" (will use "big" features by default).
128# - Run the tests: "make -f Make_manx.mak test"
129# - Place the executables Vim and Xxd in this directory (set the executable
130# flag).
131# - "make amirt", "make amibin".
132#
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100133# MS-Windows:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200134# - Run make on Unix to update the ".mo" files.
Bram Moolenaar6199d432017-10-14 19:05:44 +0200135# - Get 32 bit libintl-8.dll, libiconv-2.dll and libgcc_s_sjlj-1.dll. E.g. from
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100136# https://mlocati.github.io/gettext-iconv-windows/ .
Bram Moolenaara54d2fc2017-03-04 20:09:34 +0100137# Use the "shared-32.zip file and extract the archive to get the files.
Bram Moolenaar6199d432017-10-14 19:05:44 +0200138# Put them in the gettext32 directory, "make dosrt" uses them.
139# - Get 64 bit libintl-8.dll and libiconv-2.dll. E.g. from
140# https://mlocati.github.io/gettext-iconv-windows/ .
141# Use the "shared-64.zip file and extract the archive to get the files.
142# Put them in the gettext64 directory, "make dosrt" uses them.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100143# - > make dossrc
144# > make dosrt
145# Unpack dist/vim##rt.zip and dist/vim##src.zip on an MS-Windows PC.
Bram Moolenaarb1c91982018-05-17 17:04:55 +0200146# This creates the directory vim/vim81 and puts all files in there.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100147# Win32 console version build:
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200148# - See src/INSTALLpc.txt for installing the compiler and SDK.
149# - Set environment for Visual C++ 2015:
150# > cd src
151# > msvc2015.bat
152# - Build the console binary:
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100153# > nmake -f Make_mvc.mak
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200154# - Run the tests and check the ouput:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200155# > nmake -f Make_mvc.mak testclean
Bram Moolenaare292d802015-12-29 19:03:21 +0100156# > nmake -f Make_mvc.mak test
Bram Moolenaar1b010052016-09-12 12:24:11 +0200157# - Rename (using ../tools/rename.bat):
Bram Moolenaarcb033972016-08-28 20:14:38 +0200158# vim.exe to vimw32.exe
159# tee/tee.exe to teew32.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200160# xxd/xxd.exe to xxdw32.exe
Bram Moolenaarcb033972016-08-28 20:14:38 +0200161# vim.pdb to vimw32.pdb
162# install.exe to installw32.exe
163# uninstal.exe to uninstalw32.exe
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100164# Win32 GUI version build:
165# - > cd src
166# > nmake -f Make_mvc.mak GUI=yes
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200167# - Run the tests and check the output:
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 Moolenaar071d4272004-06-13 20:20:40 +0000170# - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000171# - Move gvim.pdb to here.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172# - Copy "GvimExt/gvimext.dll" to here.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100173# - Delete vimrun.exe, install.exe and uninstal.exe.
Bram Moolenaar6384c5d2016-09-06 22:06:35 +0200174# Win32 GUI version with OLE, PERL, Ruby, TCL, PYTHON and dynamic IME:
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100175# - Install the interfaces you want, see src/INSTALLpc.txt
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200176# Adjust bigvim.bat to match the version of each interface you want.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100177# - Build:
178# > cd src
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100179# > bigvim.bat
Bram Moolenaare292d802015-12-29 19:03:21 +0100180# - Run the tests:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200181# > nmake -f Make_mvc.mak testclean
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100182# > nmake -f Make_mvc.mak testgvim
Bram Moolenaare292d802015-12-29 19:03:21 +0100183# - check the output.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184# - Rename "gvim.exe" to "gvim_ole.exe".
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000185# - Rename gvim.pdb to "gvim_ole.pdb".
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000186# - Delete install.exe and uninstal.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187# Create the archives:
188# - Copy all the "*.exe" files to where this Makefile is.
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000189# - Copy all the "*.pdb" files to where this Makefile is.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100190# - in this directory:
191# > make dosbin
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192# NSIS self installing exe:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200193# - To get NSIS see http://nsis.sourceforge.net
Bram Moolenaarba460752013-07-04 22:35:01 +0200194# - Make sure gvim_ole.exe, vimw32.exe, installw32.exe,
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200195# uninstalw32.exe, teew32.exe and xxdw32.exe have been build as mentioned
196# above.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200197# - copy these files (get them from a binary archive or build them):
198# gvimext.dll in src/GvimExt
199# gvimext64.dll in src/GvimExt
200# VisVim.dll in src/VisVim
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000201# Note: VisVim needs to be build with MSVC 5, newer versions don't work.
Bram Moolenaar81b07b52017-10-15 21:43:21 +0200202# gvimext64.dll can be obtained from:
203# https://github.com/vim/vim-win32-installer/releases
204# It is part of gvim_8.0.*_x64.zip as vim/vim80/GvimExt/gvimext64.dll.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100205# - Make sure there is a diff.exe two levels up (get it from a previous Vim
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200206# version). Also put winpty32.dll and winpty-agent.exe there.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100207# - go to ../nsis and do:
Bram Moolenaar24877cf2019-01-10 21:51:48 +0100208# > unzip icons.zip
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100209# > makensis gvim.nsi (takes a few minutes).
Bram Moolenaarbb76f242016-09-12 14:24:39 +0200210# ignore warning for libwinpthread-1.dll
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211# - Copy gvim##.exe to the dist directory.
212#
Bram Moolenaarba460752013-07-04 22:35:01 +0200213# 64 bit builds (these are not in the normal distribution, the 32 bit build
214# works just fine on 64 bit systems).
215# Like the console and GUI version, but first run vcvars64.bat or
216# "..\VC\vcvarsall.bat x86_amd64".
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100217# - Build the console version:
218# > nmake -f Make_mvc.mak
219# - Build the GUI version:
220# > nmake -f Make_mvc.mak GUI=yes
221# - Build the OLE version with interfaces:
222# > bigvim64.bat
223#
Bram Moolenaarba460752013-07-04 22:35:01 +0200224#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100225# OBSOLETE systems: You can build these if you have an appropriate system.
Bram Moolenaarba460752013-07-04 22:35:01 +0200226#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100227# 16 bit DOS version: You need to get a very old version of Vim, for several
228# years even the tiny build is too big to fit in DOS memory.
Bram Moolenaarba460752013-07-04 22:35:01 +0200229#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100230# 32 bit DOS version: Support was removed in 7.4.1399. When syncing to before
231# that it probably won't build.
Bram Moolenaarba460752013-07-04 22:35:01 +0200232#
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200233# Win32s GUI version: Support was removed in patch 7.4.1364.
Bram Moolenaarba460752013-07-04 22:35:01 +0200234#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100235# OS/2 support was removed in patch 7.4.1008. If you want to give it a try
236# sync to before that and check the old version of this Makefile for
237# instructions.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238
239VIMVER = vim-$(MAJOR).$(MINOR)
240VERSION = $(MAJOR)$(MINOR)
241VDOT = $(MAJOR).$(MINOR)
242VIMRTDIR = vim$(VERSION)
243
244# Vim used for conversion from "unix" to "dos"
245VIM = vim
246
247# How to include Filelist depends on the version of "make" you have.
248# If the current choice doesn't work, try the other one.
249
250include Filelist
251#.include "Filelist"
252
253
254# All output is put in the "dist" directory.
255dist:
256 mkdir dist
257
258# Clean up some files to avoid they are included.
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100259# Copy README files to the top directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260prepare:
261 if test -f runtime/doc/uganda.nsis.txt; then \
262 rm runtime/doc/uganda.nsis.txt; fi
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100263 for name in $(IN_README_DIR); do \
264 cp READMEdir/"$$name" .; \
265 done
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266
267# For the zip files we need to create a file with the comment line
268dist/comment:
269 mkdir dist/comment
270
271COMMENT_RT = comment/$(VERSION)-rt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272COMMENT_W32 = comment/$(VERSION)-bin-w32
273COMMENT_GVIM = comment/$(VERSION)-bin-gvim
274COMMENT_OLE = comment/$(VERSION)-bin-ole
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275COMMENT_SRC = comment/$(VERSION)-src
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276COMMENT_HTML = comment/$(VERSION)-html
277COMMENT_FARSI = comment/$(VERSION)-farsi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278
279dist/$(COMMENT_RT): dist/comment
280 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT)
281
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282dist/$(COMMENT_W32): dist/comment
283 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32)
284
285dist/$(COMMENT_GVIM): dist/comment
286 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM)
287
288dist/$(COMMENT_OLE): dist/comment
289 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE)
290
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291dist/$(COMMENT_SRC): dist/comment
292 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC)
293
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294dist/$(COMMENT_HTML): dist/comment
295 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML)
296
297dist/$(COMMENT_FARSI): dist/comment
298 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI)
299
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000300unixall: dist prepare
301 -rm -f dist/$(VIMVER).tar.bz2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302 -rm -rf dist/$(VIMRTDIR)
303 mkdir dist/$(VIMRTDIR)
304 tar cf - \
305 $(RT_ALL) \
306 $(RT_ALL_BIN) \
307 $(RT_UNIX) \
308 $(RT_UNIX_DOS_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 $(RT_SCRIPTS) \
310 $(LANG_GEN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000311 $(LANG_GEN_BIN) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000312 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 $(SRC_UNIX) \
314 $(SRC_DOS_UNIX) \
Bram Moolenaar864665d2010-05-15 15:41:59 +0200315 $(EXTRA) \
316 $(LANG_SRC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317 | (cd dist/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100318 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319# Need to use a "distclean" config.mk file
Bram Moolenaarba460752013-07-04 22:35:01 +0200320# Note: this file is not included in the repository to avoid problems, but it's
321# OK to put it in the archive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk
323# Create an empty config.h file, make dependencies require it
324 touch dist/$(VIMRTDIR)/src/auto/config.h
325# Make sure configure is newer than config.mk to force it to be generated
326 touch dist/$(VIMRTDIR)/src/configure
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327# Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated.
328# Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po.
329 touch dist/$(VIMRTDIR)/src/po/ja.sjis.po
330 touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po
331 touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po
332 touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po
333 touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po
334 touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000335 touch dist/$(VIMRTDIR)/src/po/uk.cp1251.po
Bram Moolenaar864665d2010-05-15 15:41:59 +0200336# Create the archive.
337 cd dist && tar cf $(VIMVER).tar $(VIMRTDIR)
338 bzip2 dist/$(VIMVER).tar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339
Bram Moolenaar864665d2010-05-15 15:41:59 +0200340# Amiga runtime - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341amirt: dist prepare
342 -rm -f dist/vim$(VERSION)rt.tar.gz
343 -rm -rf dist/Vim
344 mkdir dist/Vim
345 mkdir dist/Vim/$(VIMRTDIR)
346 tar cf - \
347 $(ROOT_AMI) \
348 $(RT_ALL) \
349 $(RT_ALL_BIN) \
350 $(RT_SCRIPTS) \
351 $(RT_AMI) \
352 $(RT_NO_UNIX) \
353 $(RT_AMI_DOS) \
354 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100355 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
357 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
358 mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR)
359 rmdir dist/Vim/$(VIMRTDIR)/runtime
360 cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info
361 gzip -9 dist/vim$(VERSION)rt.tar
362 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz
363
Bram Moolenaar864665d2010-05-15 15:41:59 +0200364# Amiga binaries - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365amibin: dist prepare
366 -rm -f dist/vim$(VERSION)bin.tar.gz
367 -rm -rf dist/Vim
368 mkdir dist/Vim
369 mkdir dist/Vim/$(VIMRTDIR)
370 tar cf - \
371 $(ROOT_AMI) \
372 $(BIN_AMI) \
373 Vim \
374 Xxd \
375 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100376 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
378 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
379 cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info
380 gzip -9 dist/vim$(VERSION)bin.tar
381 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz
382
Bram Moolenaar864665d2010-05-15 15:41:59 +0200383# Amiga sources - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384amisrc: dist prepare
385 -rm -f dist/vim$(VERSION)src.tar.gz
386 -rm -rf dist/Vim
387 mkdir dist/Vim
388 mkdir dist/Vim/$(VIMRTDIR)
389 tar cf - \
390 $(ROOT_AMI) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000391 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392 $(SRC_AMI) \
393 $(SRC_AMI_DOS) \
394 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100395 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
397 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
398 cd dist && tar cf vim$(VERSION)src.tar Vim Vim.info
399 gzip -9 dist/vim$(VERSION)src.tar
400 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
401
402no_title.vim: Makefile
403 echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim
404
Bram Moolenaar442b4222010-05-24 21:34:22 +0200405# MS-DOS sources
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100406dossrc: dist no_title.vim dist/$(COMMENT_SRC) \
407 runtime/doc/uganda.nsis.txt \
408 nsis/gvim_version.nsh
Bram Moolenaar442b4222010-05-24 21:34:22 +0200409 -rm -rf dist/vim$(VERSION)src.zip
410 -rm -rf dist/vim
411 mkdir dist/vim
412 mkdir dist/vim/$(VIMRTDIR)
413 tar cf - \
414 $(SRC_ALL) \
415 $(SRC_DOS) \
416 $(SRC_AMI_DOS) \
417 $(SRC_DOS_UNIX) \
418 runtime/doc/uganda.nsis.txt \
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100419 nsis/gvim_version.nsh \
Bram Moolenaar442b4222010-05-24 21:34:22 +0200420 | (cd dist/vim/$(VIMRTDIR); tar xf -)
421 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
422 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100423 # This file needs to be in dos fileformat for NSIS.
424 $(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 +0200425 tar cf - \
426 $(SRC_DOS_BIN) \
427 | (cd dist/vim/$(VIMRTDIR); tar xf -)
428 cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC)
429
430runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt
431 cd runtime/doc && $(MAKE) uganda.nsis.txt
432
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100433nsis/gvim_version.nsh: Makefile
434 echo "# Generated from Makefile: define the version numbers" > $@
435 echo "!ifndef __GVIM_VER__NSH__" >> $@
436 echo "!define __GVIM_VER__NSH__" >> $@
437 echo "!define VER_MAJOR $(MAJOR)" >> $@
438 echo "!define VER_MINOR $(MINOR)" >> $@
439 echo "!endif" >> $@
440
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100441dosrt: dist dist/$(COMMENT_RT) dosrt_files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442 -rm -rf dist/vim$(VERSION)rt.zip
443 cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT)
444
Bram Moolenaar442b4222010-05-24 21:34:22 +0200445# Split in two parts to avoid an "argument list too long" error.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100446# We no longer convert the files from unix to dos fileformat.
447dosrt_files: dist prepare no_title.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448 -rm -rf dist/vim
449 mkdir dist/vim
450 mkdir dist/vim/$(VIMRTDIR)
Bram Moolenaar864665d2010-05-15 15:41:59 +0200451 mkdir dist/vim/$(VIMRTDIR)/lang
452 cd src && MAKEMO=yes $(MAKE) languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 tar cf - \
454 $(RT_ALL) \
Bram Moolenaara5792f52005-11-23 21:25:05 +0000455 | (cd dist/vim/$(VIMRTDIR); tar xf -)
456 tar cf - \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457 $(RT_SCRIPTS) \
458 $(RT_DOS) \
459 $(RT_NO_UNIX) \
460 $(RT_AMI_DOS) \
461 $(LANG_GEN) \
462 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463 tar cf - \
464 $(RT_UNIX_DOS_BIN) \
465 $(RT_ALL_BIN) \
466 $(RT_DOS_BIN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000467 $(LANG_GEN_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100469 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
471 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar24877cf2019-01-10 21:51:48 +0100472# Add the message translations. Trick: skip ja.mo/ja.euc-jp.mo and use
473# ja.sjis.mo instead. Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo,
474# sk.mo / sk.cp1250.mo, zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and
475# ru.mo / ru.cp1251.mo.
Bram Moolenaar864665d2010-05-15 15:41:59 +0200476 for i in $(LANG_DOS); do \
Bram Moolenaar24877cf2019-01-10 21:51:48 +0100477 if test "$$i" != "src/po/ja.mo" -a "$$i" != "src/po/ja.euc-jp.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 \
Bram Moolenaar864665d2010-05-15 15:41:59 +0200478 n=`echo $$i | sed -e "s+src/po/\([-a-zA-Z0-9_]*\(.UTF-8\)*\)\(.sjis\)*\(.cp1250\)*\(.cp1251\)*\(.cp936\)*.mo+\1+"`; \
479 mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \
480 mkdir dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES; \
481 cp $$i dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES/vim.mo; \
482 fi \
483 done
Bram Moolenaar6199d432017-10-14 19:05:44 +0200484 mkdir dist/vim/$(VIMRTDIR)/gettext32
485 cp gettext32/libintl-8.dll dist/vim/$(VIMRTDIR)/gettext32/
486 cp gettext32/libiconv-2.dll dist/vim/$(VIMRTDIR)/gettext32/
487 cp gettext32/libgcc_s_sjlj-1.dll dist/vim/$(VIMRTDIR)/gettext32/
488 mkdir dist/vim/$(VIMRTDIR)/gettext64
489 cp gettext64/libintl-8.dll dist/vim/$(VIMRTDIR)/gettext64/
490 cp gettext64/libiconv-2.dll dist/vim/$(VIMRTDIR)/gettext64/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491
492
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493# Used before uploading. Don't delete the AAPDIR/sign files!
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100494runtime_unix2dos: dosrt_files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495 -rm -rf `find runtime/dos -type f -print | sed -e /AAPDIR/d`
496 cd dist/vim/$(VIMRTDIR); tar cf - * \
497 | (cd ../../../runtime/dos; tar xf -)
498
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200499dosbin: prepare dosbin_gvim dosbin_w32 dosbin_ole $(DOSBIN_S)
Bram Moolenaarcb033972016-08-28 20:14:38 +0200500 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501
502# make Win32 gvim
503dosbin_gvim: dist no_title.vim dist/$(COMMENT_GVIM)
504 -rm -rf dist/gvim$(VERSION).zip
505 -rm -rf dist/vim
506 mkdir dist/vim
507 mkdir dist/vim/$(VIMRTDIR)
508 tar cf - \
509 $(BIN_DOS) \
510 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200512 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
514 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
515 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
516 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
Bram Moolenaar6199d432017-10-14 19:05:44 +0200517 mkdir dist/vim/$(VIMRTDIR)/GvimExt32
518 cp gvimext.dll dist/vim/$(VIMRTDIR)/GvimExt32/gvimext.dll
519 mkdir dist/vim/$(VIMRTDIR)/GvimExt64
520 cp gvimext64.dll dist/vim/$(VIMRTDIR)/GvimExt64/gvimext.dll
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000522 cp gvim.pdb dist/gvim$(VERSION).pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523
524# make Win32 console
525dosbin_w32: dist no_title.vim dist/$(COMMENT_W32)
526 -rm -rf dist/vim$(VERSION)w32.zip
527 -rm -rf dist/vim
528 mkdir dist/vim
529 mkdir dist/vim/$(VIMRTDIR)
530 tar cf - \
531 $(BIN_DOS) \
532 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533 cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200534 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 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
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541# make Win32 gvim with OLE
542dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE)
543 -rm -rf dist/gvim$(VERSION)ole.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 gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200551 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
553 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
554 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
555 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
556 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
557 cp README_ole.txt dist/vim/$(VIMRTDIR)
558 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll
559 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR)
560 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000561 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563html: dist dist/$(COMMENT_HTML)
564 -rm -rf dist/vim$(VERSION)html.zip
565 cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML)
566
567farsi: dist dist/$(COMMENT_FARSI)
568 -rm -f dist/farsi$(VERSION).zip
569 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI)