blob: 45cffff5730ab383950fa8a720dadaa294ffd4f4 [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 Moolenaarb96a32e2020-08-13 18:59:55 +020035all install uninstall tools config configure reconfig proto depend lint tags types test scripttests testtiny 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 Moolenaare13a3902019-04-27 17:57:31 +020046 @# When the target is "clean" also clean for the indent tests.
47 @if test "$@" = "clean" -o "$@" = "distclean" -o "$@" = "testclean"; then \
48 cd runtime/indent && \
49 $(MAKE) clean; \
50 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +000051
Bram Moolenaar72846cf2018-12-15 17:23:18 +010052# Executable used for running the indent tests.
53VIM_FOR_INDENTTEST = ../../src/vim
54
55indenttest:
56 cd runtime/indent && \
Bram Moolenaare13a3902019-04-27 17:57:31 +020057 $(MAKE) clean && \
Bram Moolenaar72846cf2018-12-15 17:23:18 +010058 $(MAKE) test VIM="$(VIM_FOR_INDENTTEST)"
K.Takata831d6d42022-06-14 13:58:29 +010059
Bram Moolenaar071d4272004-06-13 20:20:40 +000060
Bram Moolenaar864665d2010-05-15 15:41:59 +020061#########################################################################
62# 2. Creating the various distribution files.
Bram Moolenaar071d4272004-06-13 20:20:40 +000063#
64# TARGET PRODUCES CONTAINS
Bram Moolenaar864665d2010-05-15 15:41:59 +020065# unixall vim-#.#.tar.bz2 All runtime files and sources, for Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +000066#
67# html vim##html.zip HTML docs
68#
Bram Moolenaar071d4272004-06-13 20:20:40 +000069# dossrc vim##src.zip sources for MS-DOS
70# dosrt vim##rt.zip runtime for MS-DOS
Bram Moolenaarfec246d2016-08-28 18:47:14 +020071# dosbin vim##w32.zip binary for Win32
Bram Moolenaar071d4272004-06-13 20:20:40 +000072# gvim##.zip binary for GUI Win32
73# gvim##ole.zip OLE exe for Win32 GUI
Bram Moolenaar864665d2010-05-15 15:41:59 +020074#
75# OBSOLETE
76# amisrc vim##src.tgz sources for Amiga
77# amirt vim##rt.tgz runtime for Amiga
78# amibin vim##bin.tgz binary for Amiga
Bram Moolenaar071d4272004-06-13 20:20:40 +000079#
Bram Moolenaar071d4272004-06-13 20:20:40 +000080# farsi farsi##.zip Farsi fonts
81#
82# All output files are created in the "dist" directory. Existing files are
83# overwritten!
Bram Moolenaar864665d2010-05-15 15:41:59 +020084# To do all this you need the Unix archive and compiled binaries.
Bram Moolenaar071d4272004-06-13 20:20:40 +000085# Before creating an archive first delete all backup files, *.orig, etc.
86
Bram Moolenaarbb76f242016-09-12 14:24:39 +020087MAJOR = 8
Bram Moolenaar98056532019-12-12 14:18:35 +010088MINOR = 2
Bram Moolenaar071d4272004-06-13 20:20:40 +000089
Bram Moolenaar071d4272004-06-13 20:20:40 +000090# CHECKLIST for creating a new version:
91#
Bram Moolenaarbb76f242016-09-12 14:24:39 +020092# - Update Vim version number. For a test version in: src/version.h,
93# READMEdir/Contents, MAJOR/MINOR above, VIMMAJOR and VIMMINOR in
Bram Moolenaar98056532019-12-12 14:18:35 +010094# src/Makefile, README.txt, README.md, src/README.md, READMEdir/README*.txt,
Bram Moolenaarbb76f242016-09-12 14:24:39 +020095# runtime/doc/*.txt and make nsis/gvim_version.nsh.
K.Takata831d6d42022-06-14 13:58:29 +010096# For a minor/major version: src/GvimExt/GvimExt.reg, src/vim.manifest.
Bram Moolenaarbfd34332019-12-07 19:24:34 +010097# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, Lua, Cscope and
98# "huge" features. Add MZscheme if you can make it work.
99# Use "make reconfig" after selecting the configure arguments.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100# - With these features: "make proto" (requires cproto and Motif installed;
101# ignore warnings for missing include files, fix problems for syntax errors).
102# - With these features: "make depend" (works best with gcc).
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200103# - If you have a lint program: "make lint" and check the output (ignore GTK
104# warnings).
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200105# - If you have valgrind, enable it in src/testdir/Makefile and run "make
106# test". Enable EXITFREE, disable GUI, scheme and tcl to avoid false alarms.
107# Check the valgrind output.
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200108# - Adjust the date and other info in src/version.h.
109# - Correct included_patches[] in src/version.c.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110# - Check for missing entries in runtime/makemenu.vim (with checkmenu script).
111# - Check for missing options in runtime/optwin.vim et al. (with check.vim).
112# - Do "make menu" to update the runtime/synmenu.vim file.
Bram Moolenaarbb76f242016-09-12 14:24:39 +0200113# - Add remarks for changes to runtime/doc/version8.txt.
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000114# - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL
115# ADDITIONS".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116# - In runtime/doc run "make" and "make html" to check for errors.
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200117# - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain
118# any personal preferences or the changes mentioned above.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119# - Check file protections to be "644" for text and "755" for executables (run
120# the "check" script).
121# - Check compiling on Amiga, MS-DOS and MS-Windows.
122# - Delete all *~, *.sw?, *.orig, *.rej files
Bram Moolenaar864665d2010-05-15 15:41:59 +0200123# - "make unixall", "make html"
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000124# - Make diff files against the previous release: "makediff7 7.1 7.2"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125#
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200126# Amiga: (OBSOLETE, Amiga files are no longer distributed)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127# - "make amisrc", move the archive to the Amiga and compile:
128# "make -f Make_manx.mak" (will use "big" features by default).
129# - Run the tests: "make -f Make_manx.mak test"
130# - Place the executables Vim and Xxd in this directory (set the executable
131# flag).
132# - "make amirt", "make amibin".
133#
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100134# MS-Windows:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200135# - Run make on Unix to update the ".mo" files.
Bram Moolenaar6199d432017-10-14 19:05:44 +0200136# - 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 +0100137# https://mlocati.github.io/gettext-iconv-windows/ .
Bram Moolenaara54d2fc2017-03-04 20:09:34 +0100138# Use the "shared-32.zip file and extract the archive to get the files.
Bram Moolenaar6199d432017-10-14 19:05:44 +0200139# Put them in the gettext32 directory, "make dosrt" uses them.
140# - Get 64 bit libintl-8.dll and libiconv-2.dll. E.g. from
141# https://mlocati.github.io/gettext-iconv-windows/ .
142# Use the "shared-64.zip file and extract the archive to get the files.
143# Put them in the gettext64 directory, "make dosrt" uses them.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100144# - > make dossrc
145# > make dosrt
146# Unpack dist/vim##rt.zip and dist/vim##src.zip on an MS-Windows PC.
Bram Moolenaar98056532019-12-12 14:18:35 +0100147# This creates the directory vim/vim82 and puts all files in there.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100148# Win32 console version build:
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200149# - See src/INSTALLpc.txt for installing the compiler and SDK.
150# - Set environment for Visual C++ 2015:
151# > cd src
152# > msvc2015.bat
153# - Build the console binary:
K.Takatac5125992021-05-26 21:49:18 +0200154# > nmake -f Make_mvc.mak
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100155# - Run the tests and check the output:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200156# > nmake -f Make_mvc.mak testclean
Bram Moolenaare292d802015-12-29 19:03:21 +0100157# > nmake -f Make_mvc.mak test
Bram Moolenaar1b010052016-09-12 12:24:11 +0200158# - Rename (using ../tools/rename.bat):
Bram Moolenaarcb033972016-08-28 20:14:38 +0200159# vim.exe to vimw32.exe
160# tee/tee.exe to teew32.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200161# xxd/xxd.exe to xxdw32.exe
Bram Moolenaarcb033972016-08-28 20:14:38 +0200162# vim.pdb to vimw32.pdb
163# install.exe to installw32.exe
Bram Moolenaar30e8e732019-09-27 13:08:36 +0200164# uninstall.exe to uninstallw32.exe
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100165# Win32 GUI version build:
166# - > cd src
167# > nmake -f Make_mvc.mak GUI=yes
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200168# - Run the tests and check the output:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200169# > nmake -f Make_mvc.mak testclean
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100170# > nmake -f Make_mvc.mak testgvim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171# - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000172# - Move gvim.pdb to here.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173# - Copy "GvimExt/gvimext.dll" to here.
Bram Moolenaar30e8e732019-09-27 13:08:36 +0200174# - Delete vimrun.exe, install.exe and uninstall.exe.
Bram Moolenaar6384c5d2016-09-06 22:06:35 +0200175# Win32 GUI version with OLE, PERL, Ruby, TCL, PYTHON and dynamic IME:
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100176# - Install the interfaces you want, see src/INSTALLpc.txt
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200177# Adjust bigvim.bat to match the version of each interface you want.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100178# - Build:
179# > cd src
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100180# > bigvim.bat
Bram Moolenaare292d802015-12-29 19:03:21 +0100181# - Run the tests:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200182# > nmake -f Make_mvc.mak testclean
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100183# > nmake -f Make_mvc.mak testgvim
Bram Moolenaare292d802015-12-29 19:03:21 +0100184# - check the output.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185# - Rename "gvim.exe" to "gvim_ole.exe".
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000186# - Rename gvim.pdb to "gvim_ole.pdb".
Bram Moolenaar30e8e732019-09-27 13:08:36 +0200187# - Delete install.exe and uninstall.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188# Create the archives:
189# - Copy all the "*.exe" files to where this Makefile is.
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000190# - Copy all the "*.pdb" files to where this Makefile is.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100191# - in this directory:
192# > make dosbin
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193# NSIS self installing exe:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200194# - To get NSIS see http://nsis.sourceforge.net
Bram Moolenaarba460752013-07-04 22:35:01 +0200195# - Make sure gvim_ole.exe, vimw32.exe, installw32.exe,
Bram Moolenaar30e8e732019-09-27 13:08:36 +0200196# uninstallw32.exe, teew32.exe and xxdw32.exe have been build as mentioned
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200197# above.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200198# - copy these files (get them from a binary archive or build them):
199# gvimext.dll in src/GvimExt
200# gvimext64.dll in src/GvimExt
201# VisVim.dll in src/VisVim
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000202# Note: VisVim needs to be build with MSVC 5, newer versions don't work.
Bram Moolenaar81b07b52017-10-15 21:43:21 +0200203# gvimext64.dll can be obtained from:
204# https://github.com/vim/vim-win32-installer/releases
Bram Moolenaar98056532019-12-12 14:18:35 +0100205# It is part of gvim_8.2.*_x64.zip as vim/vim82/GvimExt/gvimext64.dll.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100206# - Make sure there is a diff.exe two levels up (get it from a previous Vim
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200207# version). Also put winpty32.dll and winpty-agent.exe there.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100208# - go to ../nsis and do:
Bram Moolenaar24877cf2019-01-10 21:51:48 +0100209# > unzip icons.zip
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100210# > makensis gvim.nsi (takes a few minutes).
Bram Moolenaarbb76f242016-09-12 14:24:39 +0200211# ignore warning for libwinpthread-1.dll
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212# - Copy gvim##.exe to the dist directory.
213#
Bram Moolenaarba460752013-07-04 22:35:01 +0200214# 64 bit builds (these are not in the normal distribution, the 32 bit build
215# works just fine on 64 bit systems).
216# Like the console and GUI version, but first run vcvars64.bat or
217# "..\VC\vcvarsall.bat x86_amd64".
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100218# - Build the console version:
219# > nmake -f Make_mvc.mak
220# - Build the GUI version:
221# > nmake -f Make_mvc.mak GUI=yes
222# - Build the OLE version with interfaces:
223# > bigvim64.bat
224#
Bram Moolenaarba460752013-07-04 22:35:01 +0200225#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100226# OBSOLETE systems: You can build these if you have an appropriate system.
Bram Moolenaarba460752013-07-04 22:35:01 +0200227#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100228# 16 bit DOS version: You need to get a very old version of Vim, for several
229# years even the tiny build is too big to fit in DOS memory.
Bram Moolenaarba460752013-07-04 22:35:01 +0200230#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100231# 32 bit DOS version: Support was removed in 7.4.1399. When syncing to before
232# that it probably won't build.
Bram Moolenaarba460752013-07-04 22:35:01 +0200233#
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200234# Win32s GUI version: Support was removed in patch 7.4.1364.
Bram Moolenaarba460752013-07-04 22:35:01 +0200235#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100236# OS/2 support was removed in patch 7.4.1008. If you want to give it a try
237# sync to before that and check the old version of this Makefile for
238# instructions.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239
240VIMVER = vim-$(MAJOR).$(MINOR)
241VERSION = $(MAJOR)$(MINOR)
242VDOT = $(MAJOR).$(MINOR)
243VIMRTDIR = vim$(VERSION)
244
245# Vim used for conversion from "unix" to "dos"
246VIM = vim
247
248# How to include Filelist depends on the version of "make" you have.
249# If the current choice doesn't work, try the other one.
250
251include Filelist
252#.include "Filelist"
253
254
255# All output is put in the "dist" directory.
256dist:
257 mkdir dist
258
259# Clean up some files to avoid they are included.
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100260# Copy README files to the top directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261prepare:
262 if test -f runtime/doc/uganda.nsis.txt; then \
263 rm runtime/doc/uganda.nsis.txt; fi
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100264 for name in $(IN_README_DIR); do \
265 cp READMEdir/"$$name" .; \
266 done
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267
268# For the zip files we need to create a file with the comment line
269dist/comment:
270 mkdir dist/comment
271
272COMMENT_RT = comment/$(VERSION)-rt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273COMMENT_W32 = comment/$(VERSION)-bin-w32
274COMMENT_GVIM = comment/$(VERSION)-bin-gvim
275COMMENT_OLE = comment/$(VERSION)-bin-ole
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276COMMENT_SRC = comment/$(VERSION)-src
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277COMMENT_HTML = comment/$(VERSION)-html
278COMMENT_FARSI = comment/$(VERSION)-farsi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279
280dist/$(COMMENT_RT): dist/comment
281 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT)
282
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283dist/$(COMMENT_W32): dist/comment
284 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32)
285
286dist/$(COMMENT_GVIM): dist/comment
287 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM)
288
289dist/$(COMMENT_OLE): dist/comment
290 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE)
291
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292dist/$(COMMENT_SRC): dist/comment
293 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC)
294
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295dist/$(COMMENT_HTML): dist/comment
296 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML)
297
298dist/$(COMMENT_FARSI): dist/comment
299 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI)
300
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000301unixall: dist prepare
302 -rm -f dist/$(VIMVER).tar.bz2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303 -rm -rf dist/$(VIMRTDIR)
304 mkdir dist/$(VIMRTDIR)
305 tar cf - \
306 $(RT_ALL) \
307 $(RT_ALL_BIN) \
308 $(RT_UNIX) \
309 $(RT_UNIX_DOS_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 $(RT_SCRIPTS) \
311 $(LANG_GEN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000312 $(LANG_GEN_BIN) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000313 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 $(SRC_UNIX) \
315 $(SRC_DOS_UNIX) \
Bram Moolenaar864665d2010-05-15 15:41:59 +0200316 $(EXTRA) \
317 $(LANG_SRC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318 | (cd dist/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100319 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320# Need to use a "distclean" config.mk file
Bram Moolenaarba460752013-07-04 22:35:01 +0200321# Note: this file is not included in the repository to avoid problems, but it's
322# OK to put it in the archive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk
324# Create an empty config.h file, make dependencies require it
325 touch dist/$(VIMRTDIR)/src/auto/config.h
326# Make sure configure is newer than config.mk to force it to be generated
327 touch dist/$(VIMRTDIR)/src/configure
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328# Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated.
329# Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po.
330 touch dist/$(VIMRTDIR)/src/po/ja.sjis.po
331 touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po
332 touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po
333 touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po
334 touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po
335 touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000336 touch dist/$(VIMRTDIR)/src/po/uk.cp1251.po
Bram Moolenaar864665d2010-05-15 15:41:59 +0200337# Create the archive.
338 cd dist && tar cf $(VIMVER).tar $(VIMRTDIR)
339 bzip2 dist/$(VIMVER).tar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340
Bram Moolenaar864665d2010-05-15 15:41:59 +0200341# Amiga runtime - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342amirt: dist prepare
343 -rm -f dist/vim$(VERSION)rt.tar.gz
344 -rm -rf dist/Vim
345 mkdir dist/Vim
346 mkdir dist/Vim/$(VIMRTDIR)
347 tar cf - \
348 $(ROOT_AMI) \
349 $(RT_ALL) \
350 $(RT_ALL_BIN) \
351 $(RT_SCRIPTS) \
352 $(RT_AMI) \
353 $(RT_NO_UNIX) \
354 $(RT_AMI_DOS) \
355 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100356 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
358 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
359 mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR)
360 rmdir dist/Vim/$(VIMRTDIR)/runtime
361 cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info
362 gzip -9 dist/vim$(VERSION)rt.tar
363 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz
364
Bram Moolenaar864665d2010-05-15 15:41:59 +0200365# Amiga binaries - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366amibin: dist prepare
367 -rm -f dist/vim$(VERSION)bin.tar.gz
368 -rm -rf dist/Vim
369 mkdir dist/Vim
370 mkdir dist/Vim/$(VIMRTDIR)
371 tar cf - \
372 $(ROOT_AMI) \
373 $(BIN_AMI) \
374 Vim \
375 Xxd \
376 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100377 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
379 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
380 cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info
381 gzip -9 dist/vim$(VERSION)bin.tar
382 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz
383
Bram Moolenaar864665d2010-05-15 15:41:59 +0200384# Amiga sources - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385amisrc: dist prepare
386 -rm -f dist/vim$(VERSION)src.tar.gz
387 -rm -rf dist/Vim
388 mkdir dist/Vim
389 mkdir dist/Vim/$(VIMRTDIR)
390 tar cf - \
391 $(ROOT_AMI) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000392 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393 $(SRC_AMI) \
394 $(SRC_AMI_DOS) \
395 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100396 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
398 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
399 cd dist && tar cf vim$(VERSION)src.tar Vim Vim.info
400 gzip -9 dist/vim$(VERSION)src.tar
401 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
402
403no_title.vim: Makefile
404 echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim
405
Bram Moolenaar442b4222010-05-24 21:34:22 +0200406# MS-DOS sources
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100407dossrc: dist no_title.vim dist/$(COMMENT_SRC) \
408 runtime/doc/uganda.nsis.txt \
409 nsis/gvim_version.nsh
Bram Moolenaar442b4222010-05-24 21:34:22 +0200410 -rm -rf dist/vim$(VERSION)src.zip
411 -rm -rf dist/vim
412 mkdir dist/vim
413 mkdir dist/vim/$(VIMRTDIR)
414 tar cf - \
415 $(SRC_ALL) \
416 $(SRC_DOS) \
417 $(SRC_AMI_DOS) \
418 $(SRC_DOS_UNIX) \
419 runtime/doc/uganda.nsis.txt \
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100420 nsis/gvim_version.nsh \
Bram Moolenaar442b4222010-05-24 21:34:22 +0200421 | (cd dist/vim/$(VIMRTDIR); tar xf -)
422 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
423 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100424 # This file needs to be in dos fileformat for NSIS.
425 $(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 +0200426 tar cf - \
427 $(SRC_DOS_BIN) \
428 | (cd dist/vim/$(VIMRTDIR); tar xf -)
429 cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC)
430
431runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt
432 cd runtime/doc && $(MAKE) uganda.nsis.txt
433
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100434nsis/gvim_version.nsh: Makefile
435 echo "# Generated from Makefile: define the version numbers" > $@
436 echo "!ifndef __GVIM_VER__NSH__" >> $@
437 echo "!define __GVIM_VER__NSH__" >> $@
438 echo "!define VER_MAJOR $(MAJOR)" >> $@
439 echo "!define VER_MINOR $(MINOR)" >> $@
440 echo "!endif" >> $@
441
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100442dosrt: dist dist/$(COMMENT_RT) dosrt_files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 -rm -rf dist/vim$(VERSION)rt.zip
444 cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT)
445
Bram Moolenaar442b4222010-05-24 21:34:22 +0200446# Split in two parts to avoid an "argument list too long" error.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100447# We no longer convert the files from unix to dos fileformat.
448dosrt_files: dist prepare no_title.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 -rm -rf dist/vim
450 mkdir dist/vim
451 mkdir dist/vim/$(VIMRTDIR)
Bram Moolenaar864665d2010-05-15 15:41:59 +0200452 mkdir dist/vim/$(VIMRTDIR)/lang
453 cd src && MAKEMO=yes $(MAKE) languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454 tar cf - \
455 $(RT_ALL) \
Bram Moolenaara5792f52005-11-23 21:25:05 +0000456 | (cd dist/vim/$(VIMRTDIR); tar xf -)
457 tar cf - \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 $(RT_SCRIPTS) \
459 $(RT_DOS) \
460 $(RT_NO_UNIX) \
461 $(RT_AMI_DOS) \
462 $(LANG_GEN) \
463 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 tar cf - \
465 $(RT_UNIX_DOS_BIN) \
466 $(RT_ALL_BIN) \
467 $(RT_DOS_BIN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000468 $(LANG_GEN_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100470 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
472 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar24877cf2019-01-10 21:51:48 +0100473# Add the message translations. Trick: skip ja.mo/ja.euc-jp.mo and use
474# ja.sjis.mo instead. Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo,
475# sk.mo / sk.cp1250.mo, zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and
476# ru.mo / ru.cp1251.mo.
Bram Moolenaar864665d2010-05-15 15:41:59 +0200477 for i in $(LANG_DOS); do \
Bram Moolenaar24877cf2019-01-10 21:51:48 +0100478 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 +0200479 n=`echo $$i | sed -e "s+src/po/\([-a-zA-Z0-9_]*\(.UTF-8\)*\)\(.sjis\)*\(.cp1250\)*\(.cp1251\)*\(.cp936\)*.mo+\1+"`; \
480 mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \
481 mkdir dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES; \
482 cp $$i dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES/vim.mo; \
483 fi \
484 done
Bram Moolenaar6199d432017-10-14 19:05:44 +0200485 mkdir dist/vim/$(VIMRTDIR)/gettext32
486 cp gettext32/libintl-8.dll dist/vim/$(VIMRTDIR)/gettext32/
487 cp gettext32/libiconv-2.dll dist/vim/$(VIMRTDIR)/gettext32/
488 cp gettext32/libgcc_s_sjlj-1.dll dist/vim/$(VIMRTDIR)/gettext32/
489 mkdir dist/vim/$(VIMRTDIR)/gettext64
490 cp gettext64/libintl-8.dll dist/vim/$(VIMRTDIR)/gettext64/
491 cp gettext64/libiconv-2.dll dist/vim/$(VIMRTDIR)/gettext64/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492
493
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494# Used before uploading. Don't delete the AAPDIR/sign files!
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100495runtime_unix2dos: dosrt_files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 -rm -rf `find runtime/dos -type f -print | sed -e /AAPDIR/d`
497 cd dist/vim/$(VIMRTDIR); tar cf - * \
498 | (cd ../../../runtime/dos; tar xf -)
499
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200500dosbin: prepare dosbin_gvim dosbin_w32 dosbin_ole $(DOSBIN_S)
Bram Moolenaarcb033972016-08-28 20:14:38 +0200501 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502
503# make Win32 gvim
504dosbin_gvim: dist no_title.vim dist/$(COMMENT_GVIM)
505 -rm -rf dist/gvim$(VERSION).zip
506 -rm -rf dist/vim
507 mkdir dist/vim
508 mkdir dist/vim/$(VIMRTDIR)
509 tar cf - \
510 $(BIN_DOS) \
511 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200513 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
515 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
516 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
Bram Moolenaar30e8e732019-09-27 13:08:36 +0200517 cp uninstallw32.exe dist/vim/$(VIMRTDIR)/uninstall.exe
Bram Moolenaar6199d432017-10-14 19:05:44 +0200518 mkdir dist/vim/$(VIMRTDIR)/GvimExt32
519 cp gvimext.dll dist/vim/$(VIMRTDIR)/GvimExt32/gvimext.dll
520 mkdir dist/vim/$(VIMRTDIR)/GvimExt64
521 cp gvimext64.dll dist/vim/$(VIMRTDIR)/GvimExt64/gvimext.dll
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 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
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200535 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
537 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
Bram Moolenaar30e8e732019-09-27 13:08:36 +0200538 cp uninstallw32.exe dist/vim/$(VIMRTDIR)/uninstall.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000540 cp vimw32.pdb dist/vim$(VERSION)w32.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542# make Win32 gvim with OLE
543dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE)
544 -rm -rf dist/gvim$(VERSION)ole.zip
545 -rm -rf dist/vim
546 mkdir dist/vim
547 mkdir dist/vim/$(VIMRTDIR)
548 tar cf - \
549 $(BIN_DOS) \
550 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 cp gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200552 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
554 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
555 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
Bram Moolenaar30e8e732019-09-27 13:08:36 +0200556 cp uninstallw32.exe dist/vim/$(VIMRTDIR)/uninstall.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
558 cp README_ole.txt dist/vim/$(VIMRTDIR)
559 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll
560 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR)
561 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000562 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564html: dist dist/$(COMMENT_HTML)
565 -rm -rf dist/vim$(VERSION)html.zip
566 cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML)
567
568farsi: dist dist/$(COMMENT_FARSI)
569 -rm -f dist/farsi$(VERSION).zip
570 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI)