blob: 3151c24aa8ba67e43f32bcf48b5dcb7194888eda [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 Moolenaar46acad72023-06-11 19:04:18 +010042 @# When the target is "test" also run the indent and syntax tests.
Dominique Pellé99c38492023-09-24 16:09:31 +020043 @if test "$@" = "test" -o "$@" = "testtiny"; then \
Bram Moolenaar72846cf2018-12-15 17:23:18 +010044 $(MAKE) indenttest; \
Bram Moolenaar46acad72023-06-11 19:04:18 +010045 $(MAKE) syntaxtest; \
Bram Moolenaar72846cf2018-12-15 17:23:18 +010046 fi
Bram Moolenaar46acad72023-06-11 19:04:18 +010047 @# When the target is "clean" also clean for the indent and syntax tests.
Bram Moolenaare13a3902019-04-27 17:57:31 +020048 @if test "$@" = "clean" -o "$@" = "distclean" -o "$@" = "testclean"; then \
Ben Jackson8d687a72023-06-14 15:10:02 +010049 (cd runtime/indent && $(MAKE) clean); \
50 (cd runtime/syntax && $(MAKE) clean); \
Bram Moolenaare13a3902019-04-27 17:57:31 +020051 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +000052
Bram Moolenaar72846cf2018-12-15 17:23:18 +010053# Executable used for running the indent tests.
54VIM_FOR_INDENTTEST = ../../src/vim
55
56indenttest:
57 cd runtime/indent && \
Bram Moolenaare13a3902019-04-27 17:57:31 +020058 $(MAKE) clean && \
RestorerZcd33faf2024-07-04 17:47:16 +020059 $(MAKE) test VIMPROG="$(VIM_FOR_INDENTTEST)"
K.Takata831d6d42022-06-14 13:58:29 +010060
Bram Moolenaar46acad72023-06-11 19:04:18 +010061# Executable used for running the syntax tests.
62VIM_FOR_SYNTAXTEST = ../../src/vim
63
Aliaksei Budaveiec022942024-10-06 16:57:33 +020064# (For local testing only with GNU Make.)
65VIM_SYNTAX_TEST_FILTER =
66
Bram Moolenaar46acad72023-06-11 19:04:18 +010067syntaxtest:
68 cd runtime/syntax && \
69 $(MAKE) clean && \
K.Takatad5b952a2023-06-13 22:44:57 +010070 $(MAKE) test VIMPROG="$(VIM_FOR_SYNTAXTEST)"
Bram Moolenaar46acad72023-06-11 19:04:18 +010071
Bram Moolenaar071d4272004-06-13 20:20:40 +000072
Bram Moolenaar864665d2010-05-15 15:41:59 +020073#########################################################################
74# 2. Creating the various distribution files.
Bram Moolenaar071d4272004-06-13 20:20:40 +000075#
76# TARGET PRODUCES CONTAINS
Bram Moolenaar864665d2010-05-15 15:41:59 +020077# unixall vim-#.#.tar.bz2 All runtime files and sources, for Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +000078#
79# html vim##html.zip HTML docs
80#
Bram Moolenaar071d4272004-06-13 20:20:40 +000081# dossrc vim##src.zip sources for MS-DOS
82# dosrt vim##rt.zip runtime for MS-DOS
Bram Moolenaarfec246d2016-08-28 18:47:14 +020083# dosbin vim##w32.zip binary for Win32
Bram Moolenaar071d4272004-06-13 20:20:40 +000084# gvim##.zip binary for GUI Win32
85# gvim##ole.zip OLE exe for Win32 GUI
Bram Moolenaar864665d2010-05-15 15:41:59 +020086#
87# OBSOLETE
88# amisrc vim##src.tgz sources for Amiga
89# amirt vim##rt.tgz runtime for Amiga
90# amibin vim##bin.tgz binary for Amiga
Bram Moolenaar071d4272004-06-13 20:20:40 +000091#
Bram Moolenaar071d4272004-06-13 20:20:40 +000092# farsi farsi##.zip Farsi fonts
93#
94# All output files are created in the "dist" directory. Existing files are
95# overwritten!
Bram Moolenaar864665d2010-05-15 15:41:59 +020096# To do all this you need the Unix archive and compiled binaries.
Bram Moolenaar071d4272004-06-13 20:20:40 +000097# Before creating an archive first delete all backup files, *.orig, etc.
98
RestorerZ2730d382025-01-17 14:04:44 +010099# I think it is better to place getting the current version number in the
100# configure script. And then automatically fill in the fields in the files
101# listed below. (Restorer)
102
103MAJOR != grep -E 'VIM_VERSION_MAJOR\s{2,}' src/version.h | \
104 awk '{ printf "%d",$$3 }'
105MINOR != grep -E 'VIM_VERSION_MINOR\s{2,}' src/version.h | \
106 awk '{ printf "%d",$$3 }'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108# CHECKLIST for creating a new version:
109#
Bram Moolenaarbb76f242016-09-12 14:24:39 +0200110# - Update Vim version number. For a test version in: src/version.h,
111# READMEdir/Contents, MAJOR/MINOR above, VIMMAJOR and VIMMINOR in
Bram Moolenaar98056532019-12-12 14:18:35 +0100112# src/Makefile, README.txt, README.md, src/README.md, READMEdir/README*.txt,
Bram Moolenaarbb76f242016-09-12 14:24:39 +0200113# runtime/doc/*.txt and make nsis/gvim_version.nsh.
K.Takata831d6d42022-06-14 13:58:29 +0100114# For a minor/major version: src/GvimExt/GvimExt.reg, src/vim.manifest.
Bram Moolenaarbfd34332019-12-07 19:24:34 +0100115# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, Lua, Cscope and
116# "huge" features. Add MZscheme if you can make it work.
117# Use "make reconfig" after selecting the configure arguments.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118# - With these features: "make proto" (requires cproto and Motif installed;
119# ignore warnings for missing include files, fix problems for syntax errors).
120# - With these features: "make depend" (works best with gcc).
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200121# - If you have a lint program: "make lint" and check the output (ignore GTK
122# warnings).
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200123# - If you have valgrind, enable it in src/testdir/Makefile and run "make
124# test". Enable EXITFREE, disable GUI, scheme and tcl to avoid false alarms.
125# Check the valgrind output.
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200126# - Adjust the date and other info in src/version.h.
127# - Correct included_patches[] in src/version.c.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128# - Check for missing entries in runtime/makemenu.vim (with checkmenu script).
129# - Check for missing options in runtime/optwin.vim et al. (with check.vim).
130# - Do "make menu" to update the runtime/synmenu.vim file.
Bram Moolenaareb490412022-06-28 13:44:46 +0100131# - Add remarks for changes to runtime/doc/version9.txt.
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000132# - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL
133# ADDITIONS".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134# - In runtime/doc run "make" and "make html" to check for errors.
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200135# - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain
136# any personal preferences or the changes mentioned above.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137# - Check file protections to be "644" for text and "755" for executables (run
138# the "check" script).
139# - Check compiling on Amiga, MS-DOS and MS-Windows.
140# - Delete all *~, *.sw?, *.orig, *.rej files
Bram Moolenaar864665d2010-05-15 15:41:59 +0200141# - "make unixall", "make html"
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000142# - Make diff files against the previous release: "makediff7 7.1 7.2"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143#
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200144# Amiga: (OBSOLETE, Amiga files are no longer distributed)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145# - "make amisrc", move the archive to the Amiga and compile:
146# "make -f Make_manx.mak" (will use "big" features by default).
147# - Run the tests: "make -f Make_manx.mak test"
148# - Place the executables Vim and Xxd in this directory (set the executable
149# flag).
150# - "make amirt", "make amibin".
151#
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100152# MS-Windows:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200153# - Run make on Unix to update the ".mo" files.
Bram Moolenaar6199d432017-10-14 19:05:44 +0200154# - 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 +0100155# https://mlocati.github.io/gettext-iconv-windows/ .
Bram Moolenaara54d2fc2017-03-04 20:09:34 +0100156# Use the "shared-32.zip file and extract the archive to get the files.
Bram Moolenaar6199d432017-10-14 19:05:44 +0200157# Put them in the gettext32 directory, "make dosrt" uses them.
158# - Get 64 bit libintl-8.dll and libiconv-2.dll. E.g. from
159# https://mlocati.github.io/gettext-iconv-windows/ .
160# Use the "shared-64.zip file and extract the archive to get the files.
161# Put them in the gettext64 directory, "make dosrt" uses them.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100162# - > make dossrc
163# > make dosrt
164# Unpack dist/vim##rt.zip and dist/vim##src.zip on an MS-Windows PC.
mikoto2000166f89e2024-09-26 15:52:22 +0200165# This creates the directory vim/vim91 and puts all files in there.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100166# Win32 console version build:
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200167# - See src/INSTALLpc.txt for installing the compiler and SDK.
168# - Set environment for Visual C++ 2015:
169# > cd src
RestorerZ2730d382025-01-17 14:04:44 +0100170# > msvc-latest.bat
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200171# - Build the console binary:
RestorerZ2730d382025-01-17 14:04:44 +0100172# > nmake.exe -f Make_mvc.mak
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100173# - Run the tests and check the output:
RestorerZ2730d382025-01-17 14:04:44 +0100174# > nmake.exe -f Make_mvc.mak testclean
175# > nmake.exe -f Make_mvc.mak test
Bram Moolenaar1b010052016-09-12 12:24:11 +0200176# - Rename (using ../tools/rename.bat):
Bram Moolenaarcb033972016-08-28 20:14:38 +0200177# vim.exe to vimw32.exe
178# tee/tee.exe to teew32.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200179# xxd/xxd.exe to xxdw32.exe
Bram Moolenaarcb033972016-08-28 20:14:38 +0200180# vim.pdb to vimw32.pdb
181# install.exe to installw32.exe
Bram Moolenaar30e8e732019-09-27 13:08:36 +0200182# uninstall.exe to uninstallw32.exe
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100183# Win32 GUI version build:
184# - > cd src
RestorerZ2730d382025-01-17 14:04:44 +0100185# > nmake.exe -f Make_mvc.mak "GUI=yes"
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200186# - Run the tests and check the output:
RestorerZ2730d382025-01-17 14:04:44 +0100187# > nmake.exe -f Make_mvc.mak testclean
188# > nmake.exe -f Make_mvc.mak testgvim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189# - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000190# - Move gvim.pdb to here.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191# - Copy "GvimExt/gvimext.dll" to here.
Bram Moolenaar30e8e732019-09-27 13:08:36 +0200192# - Delete vimrun.exe, install.exe and uninstall.exe.
Bram Moolenaar6384c5d2016-09-06 22:06:35 +0200193# Win32 GUI version with OLE, PERL, Ruby, TCL, PYTHON and dynamic IME:
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100194# - Install the interfaces you want, see src/INSTALLpc.txt
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200195# Adjust bigvim.bat to match the version of each interface you want.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100196# - Build:
197# > cd src
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100198# > bigvim.bat
Bram Moolenaare292d802015-12-29 19:03:21 +0100199# - Run the tests:
RestorerZ2730d382025-01-17 14:04:44 +0100200# > nmake.exe -f Make_mvc.mak testclean
201# > nmake.exe -f Make_mvc.mak testgvim
Bram Moolenaare292d802015-12-29 19:03:21 +0100202# - check the output.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203# - Rename "gvim.exe" to "gvim_ole.exe".
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000204# - Rename gvim.pdb to "gvim_ole.pdb".
Bram Moolenaar30e8e732019-09-27 13:08:36 +0200205# - Delete install.exe and uninstall.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206# Create the archives:
207# - Copy all the "*.exe" files to where this Makefile is.
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000208# - Copy all the "*.pdb" files to where this Makefile is.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100209# - in this directory:
210# > make dosbin
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211# NSIS self installing exe:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200212# - To get NSIS see http://nsis.sourceforge.net
Bram Moolenaarba460752013-07-04 22:35:01 +0200213# - Make sure gvim_ole.exe, vimw32.exe, installw32.exe,
Bram Moolenaar30e8e732019-09-27 13:08:36 +0200214# uninstallw32.exe, teew32.exe and xxdw32.exe have been build as mentioned
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200215# above.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200216# - copy these files (get them from a binary archive or build them):
217# gvimext.dll in src/GvimExt
218# gvimext64.dll in src/GvimExt
Bram Moolenaar81b07b52017-10-15 21:43:21 +0200219# gvimext64.dll can be obtained from:
220# https://github.com/vim/vim-win32-installer/releases
mikoto2000166f89e2024-09-26 15:52:22 +0200221# It is part of gvim_9.1.*_x64.zip as vim/vim91/GvimExt/gvimext64.dll.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100222# - Make sure there is a diff.exe two levels up (get it from a previous Vim
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200223# version). Also put winpty32.dll and winpty-agent.exe there.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100224# - go to ../nsis and do:
RestorerZ2730d382025-01-17 14:04:44 +0100225# > nmake.exe -f Make_mvc.mak all
226# (takes a few minutes).
227# See nsis/README.txt for details.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228# - Copy gvim##.exe to the dist directory.
229#
Bram Moolenaarba460752013-07-04 22:35:01 +0200230# 64 bit builds (these are not in the normal distribution, the 32 bit build
231# works just fine on 64 bit systems).
232# Like the console and GUI version, but first run vcvars64.bat or
233# "..\VC\vcvarsall.bat x86_amd64".
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100234# - Build the console version:
RestorerZ2730d382025-01-17 14:04:44 +0100235# > nmake.exe -f Make_mvc.mak
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100236# - Build the GUI version:
RestorerZ2730d382025-01-17 14:04:44 +0100237# > nmake.exe -f Make_mvc.mak "GUI=yes"
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100238# - Build the OLE version with interfaces:
239# > bigvim64.bat
240#
Bram Moolenaarba460752013-07-04 22:35:01 +0200241#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100242# OBSOLETE systems: You can build these if you have an appropriate system.
Bram Moolenaarba460752013-07-04 22:35:01 +0200243#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100244# 16 bit DOS version: You need to get a very old version of Vim, for several
245# years even the tiny build is too big to fit in DOS memory.
Bram Moolenaarba460752013-07-04 22:35:01 +0200246#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100247# 32 bit DOS version: Support was removed in 7.4.1399. When syncing to before
248# that it probably won't build.
Bram Moolenaarba460752013-07-04 22:35:01 +0200249#
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200250# Win32s GUI version: Support was removed in patch 7.4.1364.
Bram Moolenaarba460752013-07-04 22:35:01 +0200251#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100252# OS/2 support was removed in patch 7.4.1008. If you want to give it a try
253# sync to before that and check the old version of this Makefile for
254# instructions.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255
256VIMVER = vim-$(MAJOR).$(MINOR)
257VERSION = $(MAJOR)$(MINOR)
258VDOT = $(MAJOR).$(MINOR)
259VIMRTDIR = vim$(VERSION)
260
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261# How to include Filelist depends on the version of "make" you have.
262# If the current choice doesn't work, try the other one.
263
264include Filelist
265#.include "Filelist"
266
267
268# All output is put in the "dist" directory.
269dist:
270 mkdir dist
271
272# Clean up some files to avoid they are included.
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100273# Copy README files to the top directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274prepare:
RestorerZ2730d382025-01-17 14:04:44 +0100275 if test -f lang/LICENSE.nsis.txt; then \
276 rm -f lang/LICENSE*.nsis.txt; fi
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100277 for name in $(IN_README_DIR); do \
278 cp READMEdir/"$$name" .; \
279 done
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280
281# For the zip files we need to create a file with the comment line
282dist/comment:
283 mkdir dist/comment
284
285COMMENT_RT = comment/$(VERSION)-rt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286COMMENT_W32 = comment/$(VERSION)-bin-w32
287COMMENT_GVIM = comment/$(VERSION)-bin-gvim
288COMMENT_OLE = comment/$(VERSION)-bin-ole
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289COMMENT_SRC = comment/$(VERSION)-src
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290COMMENT_HTML = comment/$(VERSION)-html
291COMMENT_FARSI = comment/$(VERSION)-farsi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292
293dist/$(COMMENT_RT): dist/comment
294 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT)
295
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296dist/$(COMMENT_W32): dist/comment
Nir Lichtman563e8ec2024-09-30 19:42:28 +0200297 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows" > dist/$(COMMENT_W32)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298
299dist/$(COMMENT_GVIM): dist/comment
Nir Lichtman563e8ec2024-09-30 19:42:28 +0200300 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows" > dist/$(COMMENT_GVIM)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301
302dist/$(COMMENT_OLE): dist/comment
303 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE)
304
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305dist/$(COMMENT_SRC): dist/comment
306 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC)
307
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308dist/$(COMMENT_HTML): dist/comment
309 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML)
310
311dist/$(COMMENT_FARSI): dist/comment
312 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI)
313
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000314unixall: dist prepare
315 -rm -f dist/$(VIMVER).tar.bz2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316 -rm -rf dist/$(VIMRTDIR)
317 mkdir dist/$(VIMRTDIR)
318 tar cf - \
319 $(RT_ALL) \
320 $(RT_ALL_BIN) \
321 $(RT_UNIX) \
322 $(RT_UNIX_DOS_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 $(RT_SCRIPTS) \
324 $(LANG_GEN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000325 $(LANG_GEN_BIN) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000326 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 $(SRC_UNIX) \
328 $(SRC_DOS_UNIX) \
Bram Moolenaar864665d2010-05-15 15:41:59 +0200329 $(EXTRA) \
330 $(LANG_SRC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 | (cd dist/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100332 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333# Need to use a "distclean" config.mk file
Bram Moolenaarba460752013-07-04 22:35:01 +0200334# Note: this file is not included in the repository to avoid problems, but it's
335# OK to put it in the archive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk
337# Create an empty config.h file, make dependencies require it
338 touch dist/$(VIMRTDIR)/src/auto/config.h
339# Make sure configure is newer than config.mk to force it to be generated
340 touch dist/$(VIMRTDIR)/src/configure
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341# Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated.
342# Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po.
343 touch dist/$(VIMRTDIR)/src/po/ja.sjis.po
344 touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po
345 touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po
346 touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po
347 touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po
348 touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000349 touch dist/$(VIMRTDIR)/src/po/uk.cp1251.po
Bram Moolenaar864665d2010-05-15 15:41:59 +0200350# Create the archive.
351 cd dist && tar cf $(VIMVER).tar $(VIMRTDIR)
352 bzip2 dist/$(VIMVER).tar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353
Bram Moolenaar864665d2010-05-15 15:41:59 +0200354# Amiga runtime - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355amirt: dist prepare
356 -rm -f dist/vim$(VERSION)rt.tar.gz
357 -rm -rf dist/Vim
358 mkdir dist/Vim
359 mkdir dist/Vim/$(VIMRTDIR)
360 tar cf - \
361 $(ROOT_AMI) \
362 $(RT_ALL) \
363 $(RT_ALL_BIN) \
364 $(RT_SCRIPTS) \
365 $(RT_AMI) \
366 $(RT_NO_UNIX) \
367 $(RT_AMI_DOS) \
368 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100369 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
371 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
372 mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR)
373 rmdir dist/Vim/$(VIMRTDIR)/runtime
374 cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info
375 gzip -9 dist/vim$(VERSION)rt.tar
376 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz
377
Bram Moolenaar864665d2010-05-15 15:41:59 +0200378# Amiga binaries - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379amibin: dist prepare
380 -rm -f dist/vim$(VERSION)bin.tar.gz
381 -rm -rf dist/Vim
382 mkdir dist/Vim
383 mkdir dist/Vim/$(VIMRTDIR)
384 tar cf - \
385 $(ROOT_AMI) \
386 $(BIN_AMI) \
387 Vim \
388 Xxd \
389 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100390 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
392 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
393 cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info
394 gzip -9 dist/vim$(VERSION)bin.tar
395 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz
396
Bram Moolenaar864665d2010-05-15 15:41:59 +0200397# Amiga sources - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398amisrc: dist prepare
399 -rm -f dist/vim$(VERSION)src.tar.gz
400 -rm -rf dist/Vim
401 mkdir dist/Vim
402 mkdir dist/Vim/$(VIMRTDIR)
403 tar cf - \
404 $(ROOT_AMI) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000405 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 $(SRC_AMI) \
407 $(SRC_AMI_DOS) \
408 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100409 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
411 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
412 cd dist && tar cf vim$(VERSION)src.tar Vim Vim.info
413 gzip -9 dist/vim$(VERSION)src.tar
414 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
415
Bram Moolenaar442b4222010-05-24 21:34:22 +0200416# MS-DOS sources
RestorerZ2730d382025-01-17 14:04:44 +0100417dossrc: dist dist/$(COMMENT_SRC) license nsis/gvim_version.nsh
Bram Moolenaar442b4222010-05-24 21:34:22 +0200418 -rm -rf dist/vim$(VERSION)src.zip
419 -rm -rf dist/vim
420 mkdir dist/vim
421 mkdir dist/vim/$(VIMRTDIR)
422 tar cf - \
423 $(SRC_ALL) \
424 $(SRC_DOS) \
Bram Moolenaardaaca8a2022-07-02 17:58:23 +0100425 $(SRC_DOS_BIN) \
Bram Moolenaar442b4222010-05-24 21:34:22 +0200426 $(SRC_AMI_DOS) \
427 $(SRC_DOS_UNIX) \
RestorerZ2730d382025-01-17 14:04:44 +0100428 lang/LICENSE.*.txt \
429 lang/README.*.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 Moolenaar442b4222010-05-24 21:34:22 +0200434 cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC)
435
RestorerZ2730d382025-01-17 14:04:44 +0100436license:
437 cd nsis && $(MAKE) -f Makefile $@
Bram Moolenaar442b4222010-05-24 21:34:22 +0200438
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100439nsis/gvim_version.nsh: Makefile
RestorerZ2730d382025-01-17 14:04:44 +0100440 cd nsis && $(MAKE) -f Makefile $(@F)
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100441
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.
Restorer74a23312024-03-28 09:19:44 +0000448dosrt_files: dist prepare
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
Restorer74a23312024-03-28 09:19:44 +0000504dosbin_gvim: dist dist/$(COMMENT_GVIM)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 -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
Restorer74a23312024-03-28 09:19:44 +0000526dosbin_w32: dist dist/$(COMMENT_W32)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 -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
Restorer74a23312024-03-28 09:19:44 +0000543dosbin_ole: dist dist/$(COMMENT_OLE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544 -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)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000560 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562html: dist dist/$(COMMENT_HTML)
563 -rm -rf dist/vim$(VERSION)html.zip
564 cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML)
565
566farsi: dist dist/$(COMMENT_FARSI)
567 -rm -f dist/farsi$(VERSION).zip
568 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI)