blob: 6ee3b1cddad5c5201725324e98757e09ff77e055 [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 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)"
Bram Moolenaaracecb3b2018-12-15 16:19:50 +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 Moolenaarb1c91982018-05-17 17:04:55 +020088MINOR = 1
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
94# src/Makefile, README.txt, README.md, READMEdir/README*.txt,
95# runtime/doc/*.txt and make nsis/gvim_version.nsh.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +010096# For a minor/major version: src/GvimExt/GvimExt.reg, src/vim.def,
Bram Moolenaarbb76f242016-09-12 14:24:39 +020097# src/gvim.exe.mnf.
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020098# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, MZscheme, Lua (if
Bram Moolenaarbfc8b972010-08-13 22:05:54 +020099# you can make it all work), Cscope and "huge" features. Exclude workshop
100# and SNiFF.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101# - With these features: "make proto" (requires cproto and Motif installed;
102# ignore warnings for missing include files, fix problems for syntax errors).
103# - With these features: "make depend" (works best with gcc).
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200104# - If you have a lint program: "make lint" and check the output (ignore GTK
105# warnings).
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200106# - If you have valgrind, enable it in src/testdir/Makefile and run "make
107# test". Enable EXITFREE, disable GUI, scheme and tcl to avoid false alarms.
108# Check the valgrind output.
109# - If you have the efence library, enable it in "src/Makefile" and run "make
110# test". Disable Python and Ruby to avoid trouble with threads (efence is
111# not threadsafe).
112# - Adjust the date and other info in src/version.h.
113# - Correct included_patches[] in src/version.c.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114# - Check for missing entries in runtime/makemenu.vim (with checkmenu script).
115# - Check for missing options in runtime/optwin.vim et al. (with check.vim).
116# - Do "make menu" to update the runtime/synmenu.vim file.
Bram Moolenaarbb76f242016-09-12 14:24:39 +0200117# - Add remarks for changes to runtime/doc/version8.txt.
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000118# - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL
119# ADDITIONS".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120# - In runtime/doc run "make" and "make html" to check for errors.
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200121# - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain
122# any personal preferences or the changes mentioned above.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123# - Check file protections to be "644" for text and "755" for executables (run
124# the "check" script).
125# - Check compiling on Amiga, MS-DOS and MS-Windows.
126# - Delete all *~, *.sw?, *.orig, *.rej files
Bram Moolenaar864665d2010-05-15 15:41:59 +0200127# - "make unixall", "make html"
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000128# - Make diff files against the previous release: "makediff7 7.1 7.2"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129#
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200130# Amiga: (OBSOLETE, Amiga files are no longer distributed)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131# - "make amisrc", move the archive to the Amiga and compile:
132# "make -f Make_manx.mak" (will use "big" features by default).
133# - Run the tests: "make -f Make_manx.mak test"
134# - Place the executables Vim and Xxd in this directory (set the executable
135# flag).
136# - "make amirt", "make amibin".
137#
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100138# MS-Windows:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200139# - Run make on Unix to update the ".mo" files.
Bram Moolenaar6199d432017-10-14 19:05:44 +0200140# - 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 +0100141# https://mlocati.github.io/gettext-iconv-windows/ .
Bram Moolenaara54d2fc2017-03-04 20:09:34 +0100142# Use the "shared-32.zip file and extract the archive to get the files.
Bram Moolenaar6199d432017-10-14 19:05:44 +0200143# Put them in the gettext32 directory, "make dosrt" uses them.
144# - Get 64 bit libintl-8.dll and libiconv-2.dll. E.g. from
145# https://mlocati.github.io/gettext-iconv-windows/ .
146# Use the "shared-64.zip file and extract the archive to get the files.
147# Put them in the gettext64 directory, "make dosrt" uses them.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100148# - > make dossrc
149# > make dosrt
150# Unpack dist/vim##rt.zip and dist/vim##src.zip on an MS-Windows PC.
Bram Moolenaarb1c91982018-05-17 17:04:55 +0200151# This creates the directory vim/vim81 and puts all files in there.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100152# Win32 console version build:
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200153# - See src/INSTALLpc.txt for installing the compiler and SDK.
154# - Set environment for Visual C++ 2015:
155# > cd src
156# > msvc2015.bat
157# - Build the console binary:
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100158# > nmake -f Make_mvc.mak
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200159# - Run the tests and check the ouput:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200160# > nmake -f Make_mvc.mak testclean
Bram Moolenaare292d802015-12-29 19:03:21 +0100161# > nmake -f Make_mvc.mak test
Bram Moolenaar1b010052016-09-12 12:24:11 +0200162# - Rename (using ../tools/rename.bat):
Bram Moolenaarcb033972016-08-28 20:14:38 +0200163# vim.exe to vimw32.exe
164# tee/tee.exe to teew32.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200165# xxd/xxd.exe to xxdw32.exe
Bram Moolenaarcb033972016-08-28 20:14:38 +0200166# vim.pdb to vimw32.pdb
167# install.exe to installw32.exe
168# uninstal.exe to uninstalw32.exe
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100169# Win32 GUI version build:
170# - > cd src
171# > nmake -f Make_mvc.mak GUI=yes
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200172# - Run the tests and check the output:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200173# > nmake -f Make_mvc.mak testclean
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100174# > nmake -f Make_mvc.mak testgvim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175# - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000176# - Move gvim.pdb to here.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177# - Copy "GvimExt/gvimext.dll" to here.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100178# - Delete vimrun.exe, install.exe and uninstal.exe.
Bram Moolenaar6384c5d2016-09-06 22:06:35 +0200179# Win32 GUI version with OLE, PERL, Ruby, TCL, PYTHON and dynamic IME:
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100180# - Install the interfaces you want, see src/INSTALLpc.txt
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200181# Adjust bigvim.bat to match the version of each interface you want.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100182# - Build:
183# > cd src
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100184# > bigvim.bat
Bram Moolenaare292d802015-12-29 19:03:21 +0100185# - Run the tests:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200186# > nmake -f Make_mvc.mak testclean
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100187# > nmake -f Make_mvc.mak testgvim
Bram Moolenaare292d802015-12-29 19:03:21 +0100188# - check the output.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189# - Rename "gvim.exe" to "gvim_ole.exe".
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000190# - Rename gvim.pdb to "gvim_ole.pdb".
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000191# - Delete install.exe and uninstal.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192# Create the archives:
193# - Copy all the "*.exe" files to where this Makefile is.
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000194# - Copy all the "*.pdb" files to where this Makefile is.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100195# - in this directory:
196# > make dosbin
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197# NSIS self installing exe:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200198# - To get NSIS see http://nsis.sourceforge.net
Bram Moolenaarba460752013-07-04 22:35:01 +0200199# - Make sure gvim_ole.exe, vimw32.exe, installw32.exe,
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200200# uninstalw32.exe, teew32.exe and xxdw32.exe have been build as mentioned
201# above.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200202# - copy these files (get them from a binary archive or build them):
203# gvimext.dll in src/GvimExt
204# gvimext64.dll in src/GvimExt
205# VisVim.dll in src/VisVim
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000206# Note: VisVim needs to be build with MSVC 5, newer versions don't work.
Bram Moolenaar81b07b52017-10-15 21:43:21 +0200207# gvimext64.dll can be obtained from:
208# https://github.com/vim/vim-win32-installer/releases
209# It is part of gvim_8.0.*_x64.zip as vim/vim80/GvimExt/gvimext64.dll.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100210# - Make sure there is a diff.exe two levels up (get it from a previous Vim
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200211# version). Also put winpty32.dll and winpty-agent.exe there.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100212# - go to ../nsis and do:
Bram Moolenaar24877cf2019-01-10 21:51:48 +0100213# > unzip icons.zip
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100214# > makensis gvim.nsi (takes a few minutes).
Bram Moolenaarbb76f242016-09-12 14:24:39 +0200215# ignore warning for libwinpthread-1.dll
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216# - Copy gvim##.exe to the dist directory.
217#
Bram Moolenaarba460752013-07-04 22:35:01 +0200218# 64 bit builds (these are not in the normal distribution, the 32 bit build
219# works just fine on 64 bit systems).
220# Like the console and GUI version, but first run vcvars64.bat or
221# "..\VC\vcvarsall.bat x86_amd64".
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100222# - Build the console version:
223# > nmake -f Make_mvc.mak
224# - Build the GUI version:
225# > nmake -f Make_mvc.mak GUI=yes
226# - Build the OLE version with interfaces:
227# > bigvim64.bat
228#
Bram Moolenaarba460752013-07-04 22:35:01 +0200229#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100230# OBSOLETE systems: You can build these if you have an appropriate system.
Bram Moolenaarba460752013-07-04 22:35:01 +0200231#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100232# 16 bit DOS version: You need to get a very old version of Vim, for several
233# years even the tiny build is too big to fit in DOS memory.
Bram Moolenaarba460752013-07-04 22:35:01 +0200234#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100235# 32 bit DOS version: Support was removed in 7.4.1399. When syncing to before
236# that it probably won't build.
Bram Moolenaarba460752013-07-04 22:35:01 +0200237#
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200238# Win32s GUI version: Support was removed in patch 7.4.1364.
Bram Moolenaarba460752013-07-04 22:35:01 +0200239#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100240# OS/2 support was removed in patch 7.4.1008. If you want to give it a try
241# sync to before that and check the old version of this Makefile for
242# instructions.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243
244VIMVER = vim-$(MAJOR).$(MINOR)
245VERSION = $(MAJOR)$(MINOR)
246VDOT = $(MAJOR).$(MINOR)
247VIMRTDIR = vim$(VERSION)
248
249# Vim used for conversion from "unix" to "dos"
250VIM = vim
251
252# How to include Filelist depends on the version of "make" you have.
253# If the current choice doesn't work, try the other one.
254
255include Filelist
256#.include "Filelist"
257
258
259# All output is put in the "dist" directory.
260dist:
261 mkdir dist
262
263# Clean up some files to avoid they are included.
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100264# Copy README files to the top directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265prepare:
266 if test -f runtime/doc/uganda.nsis.txt; then \
267 rm runtime/doc/uganda.nsis.txt; fi
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100268 for name in $(IN_README_DIR); do \
269 cp READMEdir/"$$name" .; \
270 done
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271
272# For the zip files we need to create a file with the comment line
273dist/comment:
274 mkdir dist/comment
275
276COMMENT_RT = comment/$(VERSION)-rt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277COMMENT_W32 = comment/$(VERSION)-bin-w32
278COMMENT_GVIM = comment/$(VERSION)-bin-gvim
279COMMENT_OLE = comment/$(VERSION)-bin-ole
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280COMMENT_SRC = comment/$(VERSION)-src
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281COMMENT_HTML = comment/$(VERSION)-html
282COMMENT_FARSI = comment/$(VERSION)-farsi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283
284dist/$(COMMENT_RT): dist/comment
285 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT)
286
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287dist/$(COMMENT_W32): dist/comment
288 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32)
289
290dist/$(COMMENT_GVIM): dist/comment
291 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM)
292
293dist/$(COMMENT_OLE): dist/comment
294 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE)
295
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296dist/$(COMMENT_SRC): dist/comment
297 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC)
298
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299dist/$(COMMENT_HTML): dist/comment
300 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML)
301
302dist/$(COMMENT_FARSI): dist/comment
303 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI)
304
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000305unixall: dist prepare
306 -rm -f dist/$(VIMVER).tar.bz2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 -rm -rf dist/$(VIMRTDIR)
308 mkdir dist/$(VIMRTDIR)
309 tar cf - \
310 $(RT_ALL) \
311 $(RT_ALL_BIN) \
312 $(RT_UNIX) \
313 $(RT_UNIX_DOS_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 $(RT_SCRIPTS) \
315 $(LANG_GEN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000316 $(LANG_GEN_BIN) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000317 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318 $(SRC_UNIX) \
319 $(SRC_DOS_UNIX) \
Bram Moolenaar864665d2010-05-15 15:41:59 +0200320 $(EXTRA) \
321 $(LANG_SRC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 | (cd dist/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100323 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324# Need to use a "distclean" config.mk file
Bram Moolenaarba460752013-07-04 22:35:01 +0200325# Note: this file is not included in the repository to avoid problems, but it's
326# OK to put it in the archive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk
328# Create an empty config.h file, make dependencies require it
329 touch dist/$(VIMRTDIR)/src/auto/config.h
330# Make sure configure is newer than config.mk to force it to be generated
331 touch dist/$(VIMRTDIR)/src/configure
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332# Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated.
333# Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po.
334 touch dist/$(VIMRTDIR)/src/po/ja.sjis.po
335 touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po
336 touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po
337 touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po
338 touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po
339 touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000340 touch dist/$(VIMRTDIR)/src/po/uk.cp1251.po
Bram Moolenaar864665d2010-05-15 15:41:59 +0200341# Create the archive.
342 cd dist && tar cf $(VIMVER).tar $(VIMRTDIR)
343 bzip2 dist/$(VIMVER).tar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344
Bram Moolenaar864665d2010-05-15 15:41:59 +0200345# Amiga runtime - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346amirt: dist prepare
347 -rm -f dist/vim$(VERSION)rt.tar.gz
348 -rm -rf dist/Vim
349 mkdir dist/Vim
350 mkdir dist/Vim/$(VIMRTDIR)
351 tar cf - \
352 $(ROOT_AMI) \
353 $(RT_ALL) \
354 $(RT_ALL_BIN) \
355 $(RT_SCRIPTS) \
356 $(RT_AMI) \
357 $(RT_NO_UNIX) \
358 $(RT_AMI_DOS) \
359 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100360 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
362 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
363 mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR)
364 rmdir dist/Vim/$(VIMRTDIR)/runtime
365 cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info
366 gzip -9 dist/vim$(VERSION)rt.tar
367 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz
368
Bram Moolenaar864665d2010-05-15 15:41:59 +0200369# Amiga binaries - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370amibin: dist prepare
371 -rm -f dist/vim$(VERSION)bin.tar.gz
372 -rm -rf dist/Vim
373 mkdir dist/Vim
374 mkdir dist/Vim/$(VIMRTDIR)
375 tar cf - \
376 $(ROOT_AMI) \
377 $(BIN_AMI) \
378 Vim \
379 Xxd \
380 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100381 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
383 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
384 cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info
385 gzip -9 dist/vim$(VERSION)bin.tar
386 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz
387
Bram Moolenaar864665d2010-05-15 15:41:59 +0200388# Amiga sources - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389amisrc: dist prepare
390 -rm -f dist/vim$(VERSION)src.tar.gz
391 -rm -rf dist/Vim
392 mkdir dist/Vim
393 mkdir dist/Vim/$(VIMRTDIR)
394 tar cf - \
395 $(ROOT_AMI) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000396 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397 $(SRC_AMI) \
398 $(SRC_AMI_DOS) \
399 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100400 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
402 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
403 cd dist && tar cf vim$(VERSION)src.tar Vim Vim.info
404 gzip -9 dist/vim$(VERSION)src.tar
405 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
406
407no_title.vim: Makefile
408 echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim
409
Bram Moolenaar442b4222010-05-24 21:34:22 +0200410# MS-DOS sources
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100411dossrc: dist no_title.vim dist/$(COMMENT_SRC) \
412 runtime/doc/uganda.nsis.txt \
413 nsis/gvim_version.nsh
Bram Moolenaar442b4222010-05-24 21:34:22 +0200414 -rm -rf dist/vim$(VERSION)src.zip
415 -rm -rf dist/vim
416 mkdir dist/vim
417 mkdir dist/vim/$(VIMRTDIR)
418 tar cf - \
419 $(SRC_ALL) \
420 $(SRC_DOS) \
421 $(SRC_AMI_DOS) \
422 $(SRC_DOS_UNIX) \
423 runtime/doc/uganda.nsis.txt \
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100424 nsis/gvim_version.nsh \
Bram Moolenaar442b4222010-05-24 21:34:22 +0200425 | (cd dist/vim/$(VIMRTDIR); tar xf -)
426 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
427 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100428 # This file needs to be in dos fileformat for NSIS.
429 $(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 +0200430 tar cf - \
431 $(SRC_DOS_BIN) \
432 | (cd dist/vim/$(VIMRTDIR); tar xf -)
433 cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC)
434
435runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt
436 cd runtime/doc && $(MAKE) uganda.nsis.txt
437
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100438nsis/gvim_version.nsh: Makefile
439 echo "# Generated from Makefile: define the version numbers" > $@
440 echo "!ifndef __GVIM_VER__NSH__" >> $@
441 echo "!define __GVIM_VER__NSH__" >> $@
442 echo "!define VER_MAJOR $(MAJOR)" >> $@
443 echo "!define VER_MINOR $(MINOR)" >> $@
444 echo "!endif" >> $@
445
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100446dosrt: dist dist/$(COMMENT_RT) dosrt_files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 -rm -rf dist/vim$(VERSION)rt.zip
448 cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT)
449
Bram Moolenaar442b4222010-05-24 21:34:22 +0200450# Split in two parts to avoid an "argument list too long" error.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100451# We no longer convert the files from unix to dos fileformat.
452dosrt_files: dist prepare no_title.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 -rm -rf dist/vim
454 mkdir dist/vim
455 mkdir dist/vim/$(VIMRTDIR)
Bram Moolenaar864665d2010-05-15 15:41:59 +0200456 mkdir dist/vim/$(VIMRTDIR)/lang
457 cd src && MAKEMO=yes $(MAKE) languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 tar cf - \
459 $(RT_ALL) \
Bram Moolenaara5792f52005-11-23 21:25:05 +0000460 | (cd dist/vim/$(VIMRTDIR); tar xf -)
461 tar cf - \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 $(RT_SCRIPTS) \
463 $(RT_DOS) \
464 $(RT_NO_UNIX) \
465 $(RT_AMI_DOS) \
466 $(LANG_GEN) \
467 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468 tar cf - \
469 $(RT_UNIX_DOS_BIN) \
470 $(RT_ALL_BIN) \
471 $(RT_DOS_BIN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000472 $(LANG_GEN_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100474 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
476 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar24877cf2019-01-10 21:51:48 +0100477# Add the message translations. Trick: skip ja.mo/ja.euc-jp.mo and use
478# ja.sjis.mo instead. Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo,
479# sk.mo / sk.cp1250.mo, zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and
480# ru.mo / ru.cp1251.mo.
Bram Moolenaar864665d2010-05-15 15:41:59 +0200481 for i in $(LANG_DOS); do \
Bram Moolenaar24877cf2019-01-10 21:51:48 +0100482 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 +0200483 n=`echo $$i | sed -e "s+src/po/\([-a-zA-Z0-9_]*\(.UTF-8\)*\)\(.sjis\)*\(.cp1250\)*\(.cp1251\)*\(.cp936\)*.mo+\1+"`; \
484 mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \
485 mkdir dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES; \
486 cp $$i dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES/vim.mo; \
487 fi \
488 done
Bram Moolenaar6199d432017-10-14 19:05:44 +0200489 mkdir dist/vim/$(VIMRTDIR)/gettext32
490 cp gettext32/libintl-8.dll dist/vim/$(VIMRTDIR)/gettext32/
491 cp gettext32/libiconv-2.dll dist/vim/$(VIMRTDIR)/gettext32/
492 cp gettext32/libgcc_s_sjlj-1.dll dist/vim/$(VIMRTDIR)/gettext32/
493 mkdir dist/vim/$(VIMRTDIR)/gettext64
494 cp gettext64/libintl-8.dll dist/vim/$(VIMRTDIR)/gettext64/
495 cp gettext64/libiconv-2.dll dist/vim/$(VIMRTDIR)/gettext64/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496
497
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498# Used before uploading. Don't delete the AAPDIR/sign files!
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100499runtime_unix2dos: dosrt_files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 -rm -rf `find runtime/dos -type f -print | sed -e /AAPDIR/d`
501 cd dist/vim/$(VIMRTDIR); tar cf - * \
502 | (cd ../../../runtime/dos; tar xf -)
503
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200504dosbin: prepare dosbin_gvim dosbin_w32 dosbin_ole $(DOSBIN_S)
Bram Moolenaarcb033972016-08-28 20:14:38 +0200505 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506
507# make Win32 gvim
508dosbin_gvim: dist no_title.vim dist/$(COMMENT_GVIM)
509 -rm -rf dist/gvim$(VERSION).zip
510 -rm -rf dist/vim
511 mkdir dist/vim
512 mkdir dist/vim/$(VIMRTDIR)
513 tar cf - \
514 $(BIN_DOS) \
515 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200517 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
519 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
520 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
521 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
Bram Moolenaar6199d432017-10-14 19:05:44 +0200522 mkdir dist/vim/$(VIMRTDIR)/GvimExt32
523 cp gvimext.dll dist/vim/$(VIMRTDIR)/GvimExt32/gvimext.dll
524 mkdir dist/vim/$(VIMRTDIR)/GvimExt64
525 cp gvimext64.dll dist/vim/$(VIMRTDIR)/GvimExt64/gvimext.dll
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000527 cp gvim.pdb dist/gvim$(VERSION).pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528
529# make Win32 console
530dosbin_w32: dist no_title.vim dist/$(COMMENT_W32)
531 -rm -rf dist/vim$(VERSION)w32.zip
532 -rm -rf dist/vim
533 mkdir dist/vim
534 mkdir dist/vim/$(VIMRTDIR)
535 tar cf - \
536 $(BIN_DOS) \
537 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200539 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
541 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
542 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
543 cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000544 cp vimw32.pdb dist/vim$(VERSION)w32.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546# make Win32 gvim with OLE
547dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE)
548 -rm -rf dist/gvim$(VERSION)ole.zip
549 -rm -rf dist/vim
550 mkdir dist/vim
551 mkdir dist/vim/$(VIMRTDIR)
552 tar cf - \
553 $(BIN_DOS) \
554 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 cp gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200556 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
558 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
559 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
560 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
561 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
562 cp README_ole.txt dist/vim/$(VIMRTDIR)
563 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll
564 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR)
565 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000566 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568html: dist dist/$(COMMENT_HTML)
569 -rm -rf dist/vim$(VERSION)html.zip
570 cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML)
571
572farsi: dist dist/$(COMMENT_FARSI)
573 -rm -f dist/farsi$(VERSION).zip
574 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI)