blob: 5fa19b5fb2dfe386d30b5fee9cdc5d3f6959c18e [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001# This Makefile has two purposes:
2# 1. Starting the compilation of Vim for Unix.
3# 2. Creating the various distribution files.
4
5
Bram Moolenaar864665d2010-05-15 15:41:59 +02006#########################################################################
7# 1. Starting the compilation of Vim for Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008#
Bram Moolenaar864665d2010-05-15 15:41:59 +02009# Using this Makefile without an argument will compile Vim for Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +000010# "make install" is also possible.
11#
12# NOTE: If this doesn't work properly, first change directory to "src" and use
13# the Makefile there:
14# cd src
15# make [arguments]
16# Noticed on AIX systems when using this Makefile: Trying to run "cproto" or
17# something else after Vim has been compiled. Don't know why...
18# Noticed on OS/390 Unix: Restarts configure.
19#
20# The first (default) target is "first". This will result in running
21# "make first", so that the target from "src/auto/config.mk" is picked
22# up properly when config didn't run yet. Doing "make all" before configure
23# has run can result in compiling with $(CC) empty.
24
25first:
Bram Moolenaar542512a2011-02-15 15:28:09 +010026 @if test ! -f src/auto/config.mk; then \
27 cp src/config.mk.dist src/auto/config.mk; \
28 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +000029 @echo "Starting make in the src directory."
30 @echo "If there are problems, cd to the src directory and run make there"
31 cd src && $(MAKE) $@
32
33# Some make programs use the last target for the $@ default; put the other
34# targets separately to always let $@ expand to "first" by default.
Bram Moolenaare21d6242016-07-16 20:43:14 +020035all install uninstall tools config configure reconfig proto depend lint tags types test scripttests unittests testclean clean distclean:
Bram Moolenaar542512a2011-02-15 15:28:09 +010036 @if test ! -f src/auto/config.mk; then \
37 cp src/config.mk.dist src/auto/config.mk; \
38 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +000039 @echo "Starting make in the src directory."
40 @echo "If there are problems, cd to the src directory and run make there"
41 cd src && $(MAKE) $@
42
43
Bram Moolenaar864665d2010-05-15 15:41:59 +020044#########################################################################
45# 2. Creating the various distribution files.
Bram Moolenaar071d4272004-06-13 20:20:40 +000046#
47# TARGET PRODUCES CONTAINS
Bram Moolenaar864665d2010-05-15 15:41:59 +020048# unixall vim-#.#.tar.bz2 All runtime files and sources, for Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +000049#
50# html vim##html.zip HTML docs
51#
Bram Moolenaar071d4272004-06-13 20:20:40 +000052# dossrc vim##src.zip sources for MS-DOS
53# dosrt vim##rt.zip runtime for MS-DOS
Bram Moolenaarfec246d2016-08-28 18:47:14 +020054# dosbin vim##w32.zip binary for Win32
Bram Moolenaar071d4272004-06-13 20:20:40 +000055# gvim##.zip binary for GUI Win32
56# gvim##ole.zip OLE exe for Win32 GUI
Bram Moolenaar864665d2010-05-15 15:41:59 +020057#
58# OBSOLETE
59# amisrc vim##src.tgz sources for Amiga
60# amirt vim##rt.tgz runtime for Amiga
61# amibin vim##bin.tgz binary for Amiga
Bram Moolenaar071d4272004-06-13 20:20:40 +000062#
Bram Moolenaar071d4272004-06-13 20:20:40 +000063# farsi farsi##.zip Farsi fonts
64#
65# All output files are created in the "dist" directory. Existing files are
66# overwritten!
Bram Moolenaar864665d2010-05-15 15:41:59 +020067# To do all this you need the Unix archive and compiled binaries.
Bram Moolenaar071d4272004-06-13 20:20:40 +000068# Before creating an archive first delete all backup files, *.orig, etc.
69
Bram Moolenaarbb76f242016-09-12 14:24:39 +020070MAJOR = 8
71MINOR = 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000072
Bram Moolenaar071d4272004-06-13 20:20:40 +000073# CHECKLIST for creating a new version:
74#
Bram Moolenaarbb76f242016-09-12 14:24:39 +020075# - Update Vim version number. For a test version in: src/version.h,
76# READMEdir/Contents, MAJOR/MINOR above, VIMMAJOR and VIMMINOR in
77# src/Makefile, README.txt, README.md, READMEdir/README*.txt,
78# runtime/doc/*.txt and make nsis/gvim_version.nsh.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +010079# For a minor/major version: src/GvimExt/GvimExt.reg, src/vim.def,
Bram Moolenaarbb76f242016-09-12 14:24:39 +020080# src/gvim.exe.mnf.
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020081# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, MZscheme, Lua (if
Bram Moolenaarbfc8b972010-08-13 22:05:54 +020082# you can make it all work), Cscope and "huge" features. Exclude workshop
83# and SNiFF.
Bram Moolenaar071d4272004-06-13 20:20:40 +000084# - With these features: "make proto" (requires cproto and Motif installed;
85# ignore warnings for missing include files, fix problems for syntax errors).
86# - With these features: "make depend" (works best with gcc).
Bram Moolenaar6df6f472010-07-18 18:04:50 +020087# - If you have a lint program: "make lint" and check the output (ignore GTK
88# warnings).
Bram Moolenaar3b1db362013-08-10 15:00:24 +020089# - If you have valgrind, enable it in src/testdir/Makefile and run "make
90# test". Enable EXITFREE, disable GUI, scheme and tcl to avoid false alarms.
91# Check the valgrind output.
92# - If you have the efence library, enable it in "src/Makefile" and run "make
93# test". Disable Python and Ruby to avoid trouble with threads (efence is
94# not threadsafe).
95# - Adjust the date and other info in src/version.h.
96# - Correct included_patches[] in src/version.c.
Bram Moolenaar071d4272004-06-13 20:20:40 +000097# - Check for missing entries in runtime/makemenu.vim (with checkmenu script).
98# - Check for missing options in runtime/optwin.vim et al. (with check.vim).
99# - Do "make menu" to update the runtime/synmenu.vim file.
Bram Moolenaarbb76f242016-09-12 14:24:39 +0200100# - Add remarks for changes to runtime/doc/version8.txt.
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000101# - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL
102# ADDITIONS".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103# - In runtime/doc run "make" and "make html" to check for errors.
Bram Moolenaar3b1db362013-08-10 15:00:24 +0200104# - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain
105# any personal preferences or the changes mentioned above.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106# - Check file protections to be "644" for text and "755" for executables (run
107# the "check" script).
108# - Check compiling on Amiga, MS-DOS and MS-Windows.
109# - Delete all *~, *.sw?, *.orig, *.rej files
Bram Moolenaar864665d2010-05-15 15:41:59 +0200110# - "make unixall", "make html"
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000111# - Make diff files against the previous release: "makediff7 7.1 7.2"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112#
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200113# Amiga: (OBSOLETE, Amiga files are no longer distributed)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114# - "make amisrc", move the archive to the Amiga and compile:
115# "make -f Make_manx.mak" (will use "big" features by default).
116# - Run the tests: "make -f Make_manx.mak test"
117# - Place the executables Vim and Xxd in this directory (set the executable
118# flag).
119# - "make amirt", "make amibin".
120#
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100121# MS-Windows:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200122# - Run make on Unix to update the ".mo" files.
Bram Moolenaara54d2fc2017-03-04 20:09:34 +0100123# - Get libintl-8.dll, libiconv-2.dll and libgcc_s_sjlj-1.dll. E.g. from
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100124# https://mlocati.github.io/gettext-iconv-windows/ .
Bram Moolenaara54d2fc2017-03-04 20:09:34 +0100125# Use the "shared-32.zip file and extract the archive to get the files.
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100126# Put them in the top directory, "make dosrt" uses them.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100127# - > make dossrc
128# > make dosrt
129# Unpack dist/vim##rt.zip and dist/vim##src.zip on an MS-Windows PC.
130# Win32 console version build:
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200131# - See src/INSTALLpc.txt for installing the compiler and SDK.
132# - Set environment for Visual C++ 2015:
133# > cd src
134# > msvc2015.bat
135# - Build the console binary:
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100136# > nmake -f Make_mvc.mak
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200137# - Run the tests and check the ouput:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200138# > nmake -f Make_mvc.mak testclean
Bram Moolenaare292d802015-12-29 19:03:21 +0100139# > nmake -f Make_mvc.mak test
Bram Moolenaar1b010052016-09-12 12:24:11 +0200140# - Rename (using ../tools/rename.bat):
Bram Moolenaarcb033972016-08-28 20:14:38 +0200141# vim.exe to vimw32.exe
142# tee/tee.exe to teew32.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200143# xxd/xxd.exe to xxdw32.exe
Bram Moolenaarcb033972016-08-28 20:14:38 +0200144# vim.pdb to vimw32.pdb
145# install.exe to installw32.exe
146# uninstal.exe to uninstalw32.exe
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100147# Win32 GUI version build:
148# - > cd src
149# > nmake -f Make_mvc.mak GUI=yes
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200150# - Run the tests and check the output:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200151# > nmake -f Make_mvc.mak testclean
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100152# > nmake -f Make_mvc.mak testgvim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153# - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000154# - Move gvim.pdb to here.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155# - Copy "GvimExt/gvimext.dll" to here.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100156# - Delete vimrun.exe, install.exe and uninstal.exe.
Bram Moolenaar6384c5d2016-09-06 22:06:35 +0200157# Win32 GUI version with OLE, PERL, Ruby, TCL, PYTHON and dynamic IME:
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100158# - Install the interfaces you want, see src/INSTALLpc.txt
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200159# Adjust bigvim.bat to match the version of each interface you want.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100160# - Build:
161# > cd src
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100162# > bigvim.bat
Bram Moolenaare292d802015-12-29 19:03:21 +0100163# - Run the tests:
Bram Moolenaarcb033972016-08-28 20:14:38 +0200164# > nmake -f Make_mvc.mak testclean
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100165# > nmake -f Make_mvc.mak testgvim
Bram Moolenaare292d802015-12-29 19:03:21 +0100166# - check the output.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167# - Rename "gvim.exe" to "gvim_ole.exe".
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000168# - Rename gvim.pdb to "gvim_ole.pdb".
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000169# - Delete install.exe and uninstal.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170# Create the archives:
171# - Copy all the "*.exe" files to where this Makefile is.
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000172# - Copy all the "*.pdb" files to where this Makefile is.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100173# - in this directory:
174# > make dosbin
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175# NSIS self installing exe:
Bram Moolenaar442b4222010-05-24 21:34:22 +0200176# - To get NSIS see http://nsis.sourceforge.net
Bram Moolenaarba460752013-07-04 22:35:01 +0200177# - Make sure gvim_ole.exe, vimw32.exe, installw32.exe,
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200178# uninstalw32.exe, teew32.exe and xxdw32.exe have been build as mentioned
179# above.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200180# - copy these files (get them from a binary archive or build them):
181# gvimext.dll in src/GvimExt
182# gvimext64.dll in src/GvimExt
183# VisVim.dll in src/VisVim
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000184# Note: VisVim needs to be build with MSVC 5, newer versions don't work.
Bram Moolenaar442b4222010-05-24 21:34:22 +0200185# gvimext64.dll can be obtained from http://code.google.com/p/vim-win3264/
Bram Moolenaarab8205e2010-07-07 15:14:03 +0200186# It is part of vim72.zip as vim72/gvimext.dll.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100187# - Make sure there is a diff.exe two levels up (get it from a previous Vim
Bram Moolenaar18cfa942017-10-08 17:58:44 +0200188# version). Also put winpty32.dll and winpty-agent.exe there.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100189# - go to ../nsis and do:
190# > makensis gvim.nsi (takes a few minutes).
Bram Moolenaarbb76f242016-09-12 14:24:39 +0200191# ignore warning for libwinpthread-1.dll
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192# - Copy gvim##.exe to the dist directory.
193#
Bram Moolenaarba460752013-07-04 22:35:01 +0200194# 64 bit builds (these are not in the normal distribution, the 32 bit build
195# works just fine on 64 bit systems).
196# Like the console and GUI version, but first run vcvars64.bat or
197# "..\VC\vcvarsall.bat x86_amd64".
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100198# - Build the console version:
199# > nmake -f Make_mvc.mak
200# - Build the GUI version:
201# > nmake -f Make_mvc.mak GUI=yes
202# - Build the OLE version with interfaces:
203# > bigvim64.bat
204#
Bram Moolenaarba460752013-07-04 22:35:01 +0200205#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100206# OBSOLETE systems: You can build these if you have an appropriate system.
Bram Moolenaarba460752013-07-04 22:35:01 +0200207#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100208# 16 bit DOS version: You need to get a very old version of Vim, for several
209# years even the tiny build is too big to fit in DOS memory.
Bram Moolenaarba460752013-07-04 22:35:01 +0200210#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100211# 32 bit DOS version: Support was removed in 7.4.1399. When syncing to before
212# that it probably won't build.
Bram Moolenaarba460752013-07-04 22:35:01 +0200213#
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200214# Win32s GUI version: Support was removed in patch 7.4.1364.
Bram Moolenaarba460752013-07-04 22:35:01 +0200215#
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100216# OS/2 support was removed in patch 7.4.1008. If you want to give it a try
217# sync to before that and check the old version of this Makefile for
218# instructions.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219
220VIMVER = vim-$(MAJOR).$(MINOR)
221VERSION = $(MAJOR)$(MINOR)
222VDOT = $(MAJOR).$(MINOR)
223VIMRTDIR = vim$(VERSION)
224
225# Vim used for conversion from "unix" to "dos"
226VIM = vim
227
228# How to include Filelist depends on the version of "make" you have.
229# If the current choice doesn't work, try the other one.
230
231include Filelist
232#.include "Filelist"
233
234
235# All output is put in the "dist" directory.
236dist:
237 mkdir dist
238
239# Clean up some files to avoid they are included.
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100240# Copy README files to the top directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241prepare:
242 if test -f runtime/doc/uganda.nsis.txt; then \
243 rm runtime/doc/uganda.nsis.txt; fi
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100244 for name in $(IN_README_DIR); do \
245 cp READMEdir/"$$name" .; \
246 done
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247
248# For the zip files we need to create a file with the comment line
249dist/comment:
250 mkdir dist/comment
251
252COMMENT_RT = comment/$(VERSION)-rt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253COMMENT_W32 = comment/$(VERSION)-bin-w32
254COMMENT_GVIM = comment/$(VERSION)-bin-gvim
255COMMENT_OLE = comment/$(VERSION)-bin-ole
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256COMMENT_SRC = comment/$(VERSION)-src
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257COMMENT_HTML = comment/$(VERSION)-html
258COMMENT_FARSI = comment/$(VERSION)-farsi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259
260dist/$(COMMENT_RT): dist/comment
261 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT)
262
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263dist/$(COMMENT_W32): dist/comment
264 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32)
265
266dist/$(COMMENT_GVIM): dist/comment
267 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM)
268
269dist/$(COMMENT_OLE): dist/comment
270 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE)
271
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272dist/$(COMMENT_SRC): dist/comment
273 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC)
274
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275dist/$(COMMENT_HTML): dist/comment
276 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML)
277
278dist/$(COMMENT_FARSI): dist/comment
279 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI)
280
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000281unixall: dist prepare
282 -rm -f dist/$(VIMVER).tar.bz2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 -rm -rf dist/$(VIMRTDIR)
284 mkdir dist/$(VIMRTDIR)
285 tar cf - \
286 $(RT_ALL) \
287 $(RT_ALL_BIN) \
288 $(RT_UNIX) \
289 $(RT_UNIX_DOS_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 $(RT_SCRIPTS) \
291 $(LANG_GEN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000292 $(LANG_GEN_BIN) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000293 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 $(SRC_UNIX) \
295 $(SRC_DOS_UNIX) \
Bram Moolenaar864665d2010-05-15 15:41:59 +0200296 $(EXTRA) \
297 $(LANG_SRC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 | (cd dist/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100299 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300# Need to use a "distclean" config.mk file
Bram Moolenaarba460752013-07-04 22:35:01 +0200301# Note: this file is not included in the repository to avoid problems, but it's
302# OK to put it in the archive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303 cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk
304# Create an empty config.h file, make dependencies require it
305 touch dist/$(VIMRTDIR)/src/auto/config.h
306# Make sure configure is newer than config.mk to force it to be generated
307 touch dist/$(VIMRTDIR)/src/configure
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308# Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated.
309# Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po.
310 touch dist/$(VIMRTDIR)/src/po/ja.sjis.po
311 touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po
312 touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po
313 touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po
314 touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po
315 touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000316 touch dist/$(VIMRTDIR)/src/po/uk.cp1251.po
Bram Moolenaar864665d2010-05-15 15:41:59 +0200317# Create the archive.
318 cd dist && tar cf $(VIMVER).tar $(VIMRTDIR)
319 bzip2 dist/$(VIMVER).tar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320
Bram Moolenaar864665d2010-05-15 15:41:59 +0200321# Amiga runtime - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322amirt: dist prepare
323 -rm -f dist/vim$(VERSION)rt.tar.gz
324 -rm -rf dist/Vim
325 mkdir dist/Vim
326 mkdir dist/Vim/$(VIMRTDIR)
327 tar cf - \
328 $(ROOT_AMI) \
329 $(RT_ALL) \
330 $(RT_ALL_BIN) \
331 $(RT_SCRIPTS) \
332 $(RT_AMI) \
333 $(RT_NO_UNIX) \
334 $(RT_AMI_DOS) \
335 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100336 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
338 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
339 mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR)
340 rmdir dist/Vim/$(VIMRTDIR)/runtime
341 cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info
342 gzip -9 dist/vim$(VERSION)rt.tar
343 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz
344
Bram Moolenaar864665d2010-05-15 15:41:59 +0200345# Amiga binaries - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346amibin: dist prepare
347 -rm -f dist/vim$(VERSION)bin.tar.gz
348 -rm -rf dist/Vim
349 mkdir dist/Vim
350 mkdir dist/Vim/$(VIMRTDIR)
351 tar cf - \
352 $(ROOT_AMI) \
353 $(BIN_AMI) \
354 Vim \
355 Xxd \
356 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100357 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
359 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
360 cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info
361 gzip -9 dist/vim$(VERSION)bin.tar
362 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz
363
Bram Moolenaar864665d2010-05-15 15:41:59 +0200364# Amiga sources - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365amisrc: dist prepare
366 -rm -f dist/vim$(VERSION)src.tar.gz
367 -rm -rf dist/Vim
368 mkdir dist/Vim
369 mkdir dist/Vim/$(VIMRTDIR)
370 tar cf - \
371 $(ROOT_AMI) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000372 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 $(SRC_AMI) \
374 $(SRC_AMI_DOS) \
375 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100376 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
378 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
379 cd dist && tar cf vim$(VERSION)src.tar Vim Vim.info
380 gzip -9 dist/vim$(VERSION)src.tar
381 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
382
383no_title.vim: Makefile
384 echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim
385
Bram Moolenaar442b4222010-05-24 21:34:22 +0200386# MS-DOS sources
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100387dossrc: dist no_title.vim dist/$(COMMENT_SRC) \
388 runtime/doc/uganda.nsis.txt \
389 nsis/gvim_version.nsh
Bram Moolenaar442b4222010-05-24 21:34:22 +0200390 -rm -rf dist/vim$(VERSION)src.zip
391 -rm -rf dist/vim
392 mkdir dist/vim
393 mkdir dist/vim/$(VIMRTDIR)
394 tar cf - \
395 $(SRC_ALL) \
396 $(SRC_DOS) \
397 $(SRC_AMI_DOS) \
398 $(SRC_DOS_UNIX) \
399 runtime/doc/uganda.nsis.txt \
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100400 nsis/gvim_version.nsh \
Bram Moolenaar442b4222010-05-24 21:34:22 +0200401 | (cd dist/vim/$(VIMRTDIR); tar xf -)
402 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
403 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100404 # This file needs to be in dos fileformat for NSIS.
405 $(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 +0200406 tar cf - \
407 $(SRC_DOS_BIN) \
408 | (cd dist/vim/$(VIMRTDIR); tar xf -)
409 cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC)
410
411runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt
412 cd runtime/doc && $(MAKE) uganda.nsis.txt
413
Bram Moolenaar6c7b4442016-01-02 15:44:32 +0100414nsis/gvim_version.nsh: Makefile
415 echo "# Generated from Makefile: define the version numbers" > $@
416 echo "!ifndef __GVIM_VER__NSH__" >> $@
417 echo "!define __GVIM_VER__NSH__" >> $@
418 echo "!define VER_MAJOR $(MAJOR)" >> $@
419 echo "!define VER_MINOR $(MINOR)" >> $@
420 echo "!endif" >> $@
421
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100422dosrt: dist dist/$(COMMENT_RT) dosrt_files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423 -rm -rf dist/vim$(VERSION)rt.zip
424 cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT)
425
Bram Moolenaar442b4222010-05-24 21:34:22 +0200426# Split in two parts to avoid an "argument list too long" error.
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100427# We no longer convert the files from unix to dos fileformat.
428dosrt_files: dist prepare no_title.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 -rm -rf dist/vim
430 mkdir dist/vim
431 mkdir dist/vim/$(VIMRTDIR)
Bram Moolenaar864665d2010-05-15 15:41:59 +0200432 mkdir dist/vim/$(VIMRTDIR)/lang
433 cd src && MAKEMO=yes $(MAKE) languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434 tar cf - \
435 $(RT_ALL) \
Bram Moolenaara5792f52005-11-23 21:25:05 +0000436 | (cd dist/vim/$(VIMRTDIR); tar xf -)
437 tar cf - \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 $(RT_SCRIPTS) \
439 $(RT_DOS) \
440 $(RT_NO_UNIX) \
441 $(RT_AMI_DOS) \
442 $(LANG_GEN) \
443 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444 tar cf - \
445 $(RT_UNIX_DOS_BIN) \
446 $(RT_ALL_BIN) \
447 $(RT_DOS_BIN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000448 $(LANG_GEN_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar818c9e72016-03-19 16:09:42 +0100450 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
452 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar864665d2010-05-15 15:41:59 +0200453# Add the message translations. Trick: skip ja.mo and use ja.sjis.mo instead.
454# Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo, sk.mo / sk.cp1250.mo,
455# zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and ru.mo / ru.cp1251.mo.
456 for i in $(LANG_DOS); do \
457 if test "$$i" != "src/po/ja.mo" -a "$$i" != "src/po/pl.mo" -a "$$i" != "src/po/cs.mo" -a "$$i" != "src/po/sk.mo" -a "$$i" != "src/po/zh_CN.mo" -a "$$i" != "src/po/ru.mo" -a "$$i" != "src/po/uk.mo"; then \
458 n=`echo $$i | sed -e "s+src/po/\([-a-zA-Z0-9_]*\(.UTF-8\)*\)\(.sjis\)*\(.cp1250\)*\(.cp1251\)*\(.cp936\)*.mo+\1+"`; \
459 mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \
460 mkdir dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES; \
461 cp $$i dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES/vim.mo; \
462 fi \
463 done
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100464 cp libintl-8.dll dist/vim/$(VIMRTDIR)/
465 cp libiconv-2.dll dist/vim/$(VIMRTDIR)/
Bram Moolenaara54d2fc2017-03-04 20:09:34 +0100466 cp libgcc_s_sjlj-1.dll dist/vim/$(VIMRTDIR)/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467
468
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469# Used before uploading. Don't delete the AAPDIR/sign files!
Bram Moolenaar2c15f6a2016-01-02 15:00:30 +0100470runtime_unix2dos: dosrt_files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 -rm -rf `find runtime/dos -type f -print | sed -e /AAPDIR/d`
472 cd dist/vim/$(VIMRTDIR); tar cf - * \
473 | (cd ../../../runtime/dos; tar xf -)
474
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200475dosbin: prepare dosbin_gvim dosbin_w32 dosbin_ole $(DOSBIN_S)
Bram Moolenaarcb033972016-08-28 20:14:38 +0200476 -rm $(IN_README_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477
478# make Win32 gvim
479dosbin_gvim: dist no_title.vim dist/$(COMMENT_GVIM)
480 -rm -rf dist/gvim$(VERSION).zip
481 -rm -rf dist/vim
482 mkdir dist/vim
483 mkdir dist/vim/$(VIMRTDIR)
484 tar cf - \
485 $(BIN_DOS) \
486 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200488 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
490 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
491 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
492 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
493 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
494 cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000495 cp gvim.pdb dist/gvim$(VERSION).pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496
497# make Win32 console
498dosbin_w32: dist no_title.vim dist/$(COMMENT_W32)
499 -rm -rf dist/vim$(VERSION)w32.zip
500 -rm -rf dist/vim
501 mkdir dist/vim
502 mkdir dist/vim/$(VIMRTDIR)
503 tar cf - \
504 $(BIN_DOS) \
505 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200507 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
509 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
510 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
511 cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000512 cp vimw32.pdb dist/vim$(VERSION)w32.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514# make Win32 gvim with OLE
515dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE)
516 -rm -rf dist/gvim$(VERSION)ole.zip
517 -rm -rf dist/vim
518 mkdir dist/vim
519 mkdir dist/vim/$(VIMRTDIR)
520 tar cf - \
521 $(BIN_DOS) \
522 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 cp gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe
Bram Moolenaarfec246d2016-08-28 18:47:14 +0200524 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
526 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
527 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
528 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
529 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
530 cp README_ole.txt dist/vim/$(VIMRTDIR)
531 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll
532 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR)
533 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000534 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536html: dist dist/$(COMMENT_HTML)
537 -rm -rf dist/vim$(VERSION)html.zip
538 cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML)
539
540farsi: dist dist/$(COMMENT_FARSI)
541 -rm -f dist/farsi$(VERSION).zip
542 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI)