blob: a1b5a888998a0c81977cb8dd3d140795aed601df [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:
26 @echo "Starting make in the src directory."
27 @echo "If there are problems, cd to the src directory and run make there"
28 cd src && $(MAKE) $@
29
30# Some make programs use the last target for the $@ default; put the other
31# targets separately to always let $@ expand to "first" by default.
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +000032all install uninstall tools config configure reconfig proto depend lint tags types test testclean clean distclean:
Bram Moolenaar071d4272004-06-13 20:20:40 +000033 @echo "Starting make in the src directory."
34 @echo "If there are problems, cd to the src directory and run make there"
35 cd src && $(MAKE) $@
36
37
Bram Moolenaar864665d2010-05-15 15:41:59 +020038#########################################################################
39# 2. Creating the various distribution files.
Bram Moolenaar071d4272004-06-13 20:20:40 +000040#
41# TARGET PRODUCES CONTAINS
Bram Moolenaar864665d2010-05-15 15:41:59 +020042# unixall vim-#.#.tar.bz2 All runtime files and sources, for Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +000043#
44# html vim##html.zip HTML docs
45#
Bram Moolenaar071d4272004-06-13 20:20:40 +000046# dossrc vim##src.zip sources for MS-DOS
47# dosrt vim##rt.zip runtime for MS-DOS
48# dosbin vim##d16.zip binary for MS-DOS 16 bits
49# vim##d32.zip binary for MS-DOS 32 bits
50# vim##w32.zip binary for Win32
51# gvim##.zip binary for GUI Win32
52# gvim##ole.zip OLE exe for Win32 GUI
53# gvim##_s.zip exe for Win32s GUI
Bram Moolenaar864665d2010-05-15 15:41:59 +020054#
55# OBSOLETE
56# amisrc vim##src.tgz sources for Amiga
57# amirt vim##rt.tgz runtime for Amiga
58# amibin vim##bin.tgz binary for Amiga
Bram Moolenaar071d4272004-06-13 20:20:40 +000059#
60# os2bin vim##os2.zip binary for OS/2
61# (use RT from dosrt)
62#
63# 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 Moolenaara5792f52005-11-23 21:25:05 +000070MAJOR = 7
Bram Moolenaarfff2bee2010-05-15 13:56:02 +020071MINOR = 3a
Bram Moolenaar071d4272004-06-13 20:20:40 +000072
73# Uncomment this line if the Win32s version is to be included.
Bram Moolenaarc01140a2006-03-24 22:21:52 +000074DOSBIN_S = dosbin_s
Bram Moolenaar071d4272004-06-13 20:20:40 +000075
76# CHECKLIST for creating a new version:
77#
78# - Update Vim version number. For a test version in: src/version.h, Contents,
Bram Moolenaarc01140a2006-03-24 22:21:52 +000079# MAJOR/MINOR above, VIMMAJOR and VIMMINOR in src/Makefile, README*.txt,
Bram Moolenaarc6039d82005-12-02 00:44:04 +000080# runtime/doc/*.txt and nsis/gvim.nsi. Other things in README_os2.txt. For a
81# minor/major version: src/GvimExt/GvimExt.reg, src/vim.def, src/vim16.def.
Bram Moolenaar071d4272004-06-13 20:20:40 +000082# - Correct included_patches[] in src/version.c.
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +000083# - Compile Vim with GTK, Perl, Python, TCL, Ruby, MZscheme (if you can make it
84# work), Cscope and "huge" features. Exclude workshop and SNiFF.
Bram Moolenaar071d4272004-06-13 20:20:40 +000085# - With these features: "make proto" (requires cproto and Motif installed;
86# ignore warnings for missing include files, fix problems for syntax errors).
87# - With these features: "make depend" (works best with gcc).
88# - "make lint" and check the output (ignore GTK warnings).
Bram Moolenaaraba88572008-06-25 20:13:35 +000089# - Enable the efence library in "src/Makefile" and run "make test". Disable
90# Python and Ruby to avoid trouble with threads (efence is not threadsafe).
Bram Moolenaar071d4272004-06-13 20:20:40 +000091# - Check for missing entries in runtime/makemenu.vim (with checkmenu script).
92# - Check for missing options in runtime/optwin.vim et al. (with check.vim).
93# - Do "make menu" to update the runtime/synmenu.vim file.
Bram Moolenaarc01140a2006-03-24 22:21:52 +000094# - Add remarks for changes to runtime/doc/version7.txt.
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +000095# - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL
96# ADDITIONS".
Bram Moolenaar071d4272004-06-13 20:20:40 +000097# - In runtime/doc run "make" and "make html" to check for errors.
98# - Check if src/Makefile and src/feature.h don't contain any personal
99# preferences or the GTK, Perl, etc. mentioned above.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100# - Check file protections to be "644" for text and "755" for executables (run
101# the "check" script).
102# - Check compiling on Amiga, MS-DOS and MS-Windows.
103# - Delete all *~, *.sw?, *.orig, *.rej files
Bram Moolenaar864665d2010-05-15 15:41:59 +0200104# - "make unixall", "make html"
Bram Moolenaar5cdd0df2007-05-12 12:58:05 +0000105# - Make diff files against the previous release: "makediff7 7.1 7.2"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106#
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200107# Amiga: (OBSOLETE, Amiga files are no longer distributed)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108# - "make amisrc", move the archive to the Amiga and compile:
109# "make -f Make_manx.mak" (will use "big" features by default).
110# - Run the tests: "make -f Make_manx.mak test"
111# - Place the executables Vim and Xxd in this directory (set the executable
112# flag).
113# - "make amirt", "make amibin".
114#
115# PC:
116# - "make dossrc" and "make dosrt". Unpack the archives on a PC.
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200117# 16 bit DOS version: (OBSOLETE, 16 bit version doesn't build)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118# - Set environment for compiling with Borland C++ 3.1.
119# - "bmake -f Make_bc3.mak BOR=E:\borlandc" (compiling xxd might fail, in that
120# case set environment for compiling with Borland C++ 4.0 and do
121# "make -f make_bc3.mak BOR=E:\BC4 xxd/xxd.exe").
Bram Moolenaaraba88572008-06-25 20:13:35 +0000122# NOTE: this currently fails because Vim is too big.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123# - "make test" and check the output.
124# - Rename the executables to "vimd16.exe", "xxdd16.exe", "installd16.exe" and
125# "uninstald16.exe".
126# 32 bit DOS version:
127# - Set environment for compiling with DJGPP; "gmake -f Make_djg.mak".
Bram Moolenaaraba88572008-06-25 20:13:35 +0000128# - "rm testdir/*.out", "gmake -f Make_djg.mak test" and check the output for
129# "ALL DONE".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130# - Rename the executables to "vimd32.exe", "xxdd32.exe", "installd32.exe" and
131# "uninstald32.exe".
132# Win32 console version:
Bram Moolenaaraba88572008-06-25 20:13:35 +0000133# - Set environment for Visual C++ 2008 Express Edition: "msvc2008.bat". Or,
134# when using the Visual C++ Toolkit 2003: "msvcsetup.bat" (adjust the paths
Bram Moolenaarc236c162008-07-13 17:41:49 +0000135# when necessary). For Windows 98 the 2003 version is required.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136# - "nmake -f Make_mvc.mak"
137# - "rm testdir/*.out", "nmake -f Make_mvc.mak test" and check the output.
138# - Rename the executables to "vimw32.exe", "xxdw32.exe".
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000139# - Rename vim.pdb to vimw32.pdb.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140# - When building the Win32s version later, delete vimrun.exe, install.exe and
141# uninstal.exe. Otherwise rename executables to installw32.exe and
142# uninstalw32.exe.
143# Win32 GUI version:
144# - "nmake -f Make_mvc.mak GUI=yes.
145# - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000146# - Move gvim.pdb to here.
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000147# - Delete vimrun.exe, install.exe and uninstal.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148# - Copy "GvimExt/gvimext.dll" to here.
149# Win32 GUI version with OLE, PERL, TCL, PYTHON and dynamic IME:
150# - Run src/bigvim.bat ("nmake -f Make_mvc.mak GUI=yes OLE=yes IME=yes ...)
151# - Rename "gvim.exe" to "gvim_ole.exe".
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000152# - Rename gvim.pdb to "gvim_ole.pdb".
Bram Moolenaar143c38c2007-05-10 16:41:10 +0000153# - Delete install.exe and uninstal.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154# - If building the Win32s version delete vimrun.exe.
155# Win32s GUI version:
156# - Set environment for Visual C++ 4.1 (requires a new console window)
157# - "vcvars32" (use the path for VC 4.1 e:\msdev\bin)
158# - "nmake -f Make_mvc.mak GUI=yes INTL=no clean" (use the path for VC 4.1)
159# - "nmake -f Make_mvc.mak GUI=yes INTL=no" (use the path for VC 4.1)
160# - Rename "gvim.exe" to "gvim_w32s.exe".
161# - Rename "install.exe" to "installw32.exe"
162# - Rename "uninstal.exe" to "uninstalw32.exe"
163# - The produced uninstalw32.exe and vimrun.exe are used.
164# Create the archives:
165# - Copy all the "*.exe" files to where this Makefile is.
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000166# - Copy all the "*.pdb" files to where this Makefile is.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167# - "make dosbin".
168# - Run make on Unix to update the ".mo" files.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169# NSIS self installing exe:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170# - Make sure gvim_ole.exe, vimd32.exe, vimw32.exe, installw32.exe,
171# uninstalw32.exe and xxdw32.exe have been build as mentioned above.
172# - put gvimext.dll in src/GvimExt and VisVim.dll in src/VisVim (get them
173# from a binary archive or build them)
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000174# Note: VisVim needs to be build with MSVC 5, newer versions don't work.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175# - make sure there is a diff.exe two levels up
176# - go to ../nsis and do "makensis gvim.nsi".
177# - Copy gvim##.exe to the dist directory.
178#
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200179# OS/2: (OBSOLETE, OS/2 version is no longer distributed)
Bram Moolenaar864665d2010-05-15 15:41:59 +0200180# - Unpack the Unix archive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181# - "make -f Make_os2.mak".
182# - Rename the executables to vimos2.exe, xxdos2.exe and teeos2.exe and copy
183# them to here.
184# - "make os2bin".
185
186VIMVER = vim-$(MAJOR).$(MINOR)
187VERSION = $(MAJOR)$(MINOR)
188VDOT = $(MAJOR).$(MINOR)
189VIMRTDIR = vim$(VERSION)
190
191# Vim used for conversion from "unix" to "dos"
192VIM = vim
193
194# How to include Filelist depends on the version of "make" you have.
195# If the current choice doesn't work, try the other one.
196
197include Filelist
198#.include "Filelist"
199
200
201# All output is put in the "dist" directory.
202dist:
203 mkdir dist
204
205# Clean up some files to avoid they are included.
206prepare:
207 if test -f runtime/doc/uganda.nsis.txt; then \
208 rm runtime/doc/uganda.nsis.txt; fi
209
210# For the zip files we need to create a file with the comment line
211dist/comment:
212 mkdir dist/comment
213
214COMMENT_RT = comment/$(VERSION)-rt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215COMMENT_D16 = comment/$(VERSION)-bin-d16
216COMMENT_D32 = comment/$(VERSION)-bin-d32
217COMMENT_W32 = comment/$(VERSION)-bin-w32
218COMMENT_GVIM = comment/$(VERSION)-bin-gvim
219COMMENT_OLE = comment/$(VERSION)-bin-ole
220COMMENT_W32S = comment/$(VERSION)-bin-w32s
221COMMENT_SRC = comment/$(VERSION)-src
222COMMENT_OS2 = comment/$(VERSION)-bin-os2
223COMMENT_HTML = comment/$(VERSION)-html
224COMMENT_FARSI = comment/$(VERSION)-farsi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225
226dist/$(COMMENT_RT): dist/comment
227 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT)
228
229dist/$(COMMENT_RT1): dist/comment
230 echo "Vim - Vi IMproved - v$(VDOT) runtime files (PART 1) for MS-DOS and MS-Windows" > dist/$(COMMENT_RT1)
231
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232dist/$(COMMENT_D16): dist/comment
233 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-DOS 16 bit real mode" > dist/$(COMMENT_D16)
234
235dist/$(COMMENT_D32): dist/comment
236 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-DOS 32 bit protected mode" > dist/$(COMMENT_D32)
237
238dist/$(COMMENT_W32): dist/comment
239 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32)
240
241dist/$(COMMENT_GVIM): dist/comment
242 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM)
243
244dist/$(COMMENT_OLE): dist/comment
245 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE)
246
247dist/$(COMMENT_W32S): dist/comment
248 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows 3.1/3.11" > dist/$(COMMENT_W32S)
249
250dist/$(COMMENT_SRC): dist/comment
251 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC)
252
253dist/$(COMMENT_OS2): dist/comment
254 echo "Vim - Vi IMproved - v$(VDOT) binaries + runtime files for OS/2" > dist/$(COMMENT_OS2)
255
256dist/$(COMMENT_HTML): dist/comment
257 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML)
258
259dist/$(COMMENT_FARSI): dist/comment
260 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI)
261
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000262unixall: dist prepare
263 -rm -f dist/$(VIMVER).tar.bz2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264 -rm -rf dist/$(VIMRTDIR)
265 mkdir dist/$(VIMRTDIR)
266 tar cf - \
267 $(RT_ALL) \
268 $(RT_ALL_BIN) \
269 $(RT_UNIX) \
270 $(RT_UNIX_DOS_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 $(RT_SCRIPTS) \
272 $(LANG_GEN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000273 $(LANG_GEN_BIN) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000274 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 $(SRC_UNIX) \
276 $(SRC_DOS_UNIX) \
Bram Moolenaar864665d2010-05-15 15:41:59 +0200277 $(EXTRA) \
278 $(LANG_SRC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 | (cd dist/$(VIMRTDIR); tar xf -)
280# Need to use a "distclean" config.mk file
281 cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk
282# Create an empty config.h file, make dependencies require it
283 touch dist/$(VIMRTDIR)/src/auto/config.h
284# Make sure configure is newer than config.mk to force it to be generated
285 touch dist/$(VIMRTDIR)/src/configure
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286# Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated.
287# Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po.
288 touch dist/$(VIMRTDIR)/src/po/ja.sjis.po
289 touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po
290 touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po
291 touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po
292 touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po
293 touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000294 touch dist/$(VIMRTDIR)/src/po/uk.cp1251.po
Bram Moolenaar864665d2010-05-15 15:41:59 +0200295# Create the archive.
296 cd dist && tar cf $(VIMVER).tar $(VIMRTDIR)
297 bzip2 dist/$(VIMVER).tar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298
Bram Moolenaar864665d2010-05-15 15:41:59 +0200299# Amiga runtime - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300amirt: dist prepare
301 -rm -f dist/vim$(VERSION)rt.tar.gz
302 -rm -rf dist/Vim
303 mkdir dist/Vim
304 mkdir dist/Vim/$(VIMRTDIR)
305 tar cf - \
306 $(ROOT_AMI) \
307 $(RT_ALL) \
308 $(RT_ALL_BIN) \
309 $(RT_SCRIPTS) \
310 $(RT_AMI) \
311 $(RT_NO_UNIX) \
312 $(RT_AMI_DOS) \
313 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
314 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
315 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
316 mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR)
317 rmdir dist/Vim/$(VIMRTDIR)/runtime
318 cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info
319 gzip -9 dist/vim$(VERSION)rt.tar
320 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz
321
Bram Moolenaar864665d2010-05-15 15:41:59 +0200322# Amiga binaries - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323amibin: dist prepare
324 -rm -f dist/vim$(VERSION)bin.tar.gz
325 -rm -rf dist/Vim
326 mkdir dist/Vim
327 mkdir dist/Vim/$(VIMRTDIR)
328 tar cf - \
329 $(ROOT_AMI) \
330 $(BIN_AMI) \
331 Vim \
332 Xxd \
333 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
334 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
335 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
336 cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info
337 gzip -9 dist/vim$(VERSION)bin.tar
338 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz
339
Bram Moolenaar864665d2010-05-15 15:41:59 +0200340# Amiga sources - OBSOLETE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341amisrc: dist prepare
342 -rm -f dist/vim$(VERSION)src.tar.gz
343 -rm -rf dist/Vim
344 mkdir dist/Vim
345 mkdir dist/Vim/$(VIMRTDIR)
346 tar cf - \
347 $(ROOT_AMI) \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000348 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 $(SRC_AMI) \
350 $(SRC_AMI_DOS) \
351 | (cd dist/Vim/$(VIMRTDIR); tar xf -)
352 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
353 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
354 cd dist && tar cf vim$(VERSION)src.tar Vim Vim.info
355 gzip -9 dist/vim$(VERSION)src.tar
356 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
357
358no_title.vim: Makefile
359 echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim
360
361dosrt: dist dist/$(COMMENT_RT) dosrt_unix2dos
362 -rm -rf dist/vim$(VERSION)rt.zip
363 cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT)
364
Bram Moolenaara5792f52005-11-23 21:25:05 +0000365# Split in two parts to avoid a "argument list too long" error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366dosrt_unix2dos: dist prepare no_title.vim
367 -rm -rf dist/vim
368 mkdir dist/vim
369 mkdir dist/vim/$(VIMRTDIR)
Bram Moolenaar864665d2010-05-15 15:41:59 +0200370 mkdir dist/vim/$(VIMRTDIR)/lang
371 cd src && MAKEMO=yes $(MAKE) languages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 tar cf - \
373 $(RT_ALL) \
Bram Moolenaara5792f52005-11-23 21:25:05 +0000374 | (cd dist/vim/$(VIMRTDIR); tar xf -)
375 tar cf - \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 $(RT_SCRIPTS) \
377 $(RT_DOS) \
378 $(RT_NO_UNIX) \
379 $(RT_AMI_DOS) \
380 $(LANG_GEN) \
381 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100382 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383 tar cf - \
384 $(RT_UNIX_DOS_BIN) \
385 $(RT_ALL_BIN) \
386 $(RT_DOS_BIN) \
Bram Moolenaar5482f332005-04-17 20:18:43 +0000387 $(LANG_GEN_BIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 | (cd dist/vim/$(VIMRTDIR); tar xf -)
389 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
390 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaar864665d2010-05-15 15:41:59 +0200391# Add the message translations. Trick: skip ja.mo and use ja.sjis.mo instead.
392# Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo, sk.mo / sk.cp1250.mo,
393# zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and ru.mo / ru.cp1251.mo.
394 for i in $(LANG_DOS); do \
395 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 \
396 n=`echo $$i | sed -e "s+src/po/\([-a-zA-Z0-9_]*\(.UTF-8\)*\)\(.sjis\)*\(.cp1250\)*\(.cp1251\)*\(.cp936\)*.mo+\1+"`; \
397 mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \
398 mkdir dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES; \
399 cp $$i dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES/vim.mo; \
400 fi \
401 done
402 cp libintl.dll dist/vim/$(VIMRTDIR)/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403
404
405# Convert runtime files from Unix fileformat to dos fileformat.
406# Used before uploading. Don't delete the AAPDIR/sign files!
407runtime_unix2dos: dosrt_unix2dos
408 -rm -rf `find runtime/dos -type f -print | sed -e /AAPDIR/d`
409 cd dist/vim/$(VIMRTDIR); tar cf - * \
410 | (cd ../../../runtime/dos; tar xf -)
411
412dosbin: prepare dosbin_gvim dosbin_w32 dosbin_d32 dosbin_d16 dosbin_ole $(DOSBIN_S)
413
414# make Win32 gvim
415dosbin_gvim: dist no_title.vim dist/$(COMMENT_GVIM)
416 -rm -rf dist/gvim$(VERSION).zip
417 -rm -rf dist/vim
418 mkdir dist/vim
419 mkdir dist/vim/$(VIMRTDIR)
420 tar cf - \
421 $(BIN_DOS) \
422 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100423 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe
425 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
426 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
427 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
428 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
429 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
430 cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000431 cp gvim.pdb dist/gvim$(VERSION).pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432
433# make Win32 console
434dosbin_w32: dist no_title.vim dist/$(COMMENT_W32)
435 -rm -rf dist/vim$(VERSION)w32.zip
436 -rm -rf dist/vim
437 mkdir dist/vim
438 mkdir dist/vim/$(VIMRTDIR)
439 tar cf - \
440 $(BIN_DOS) \
441 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100442 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe
444 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
445 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
446 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
447 cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000448 cp vimw32.pdb dist/vim$(VERSION)w32.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449
450# make 32bit DOS
451dosbin_d32: dist no_title.vim dist/$(COMMENT_D32)
452 -rm -rf dist/vim$(VERSION)d32.zip
453 -rm -rf dist/vim
454 mkdir dist/vim
455 mkdir dist/vim/$(VIMRTDIR)
456 tar cf - \
457 $(BIN_DOS) \
458 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100459 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 cp vimd32.exe dist/vim/$(VIMRTDIR)/vim.exe
461 cp xxdd32.exe dist/vim/$(VIMRTDIR)/xxd.exe
462 cp installd32.exe dist/vim/$(VIMRTDIR)/install.exe
463 cp uninstald32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
464 cp csdpmi4b.zip dist/vim/$(VIMRTDIR)
465 cd dist && zip -9 -rD -z vim$(VERSION)d32.zip vim <$(COMMENT_D32)
466
467# make 16bit DOS
468dosbin_d16: dist no_title.vim dist/$(COMMENT_D16)
469 -rm -rf dist/vim$(VERSION)d16.zip
470 -rm -rf dist/vim
471 mkdir dist/vim
472 mkdir dist/vim/$(VIMRTDIR)
473 tar cf - \
474 $(BIN_DOS) \
475 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100476 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477 cp vimd16.exe dist/vim/$(VIMRTDIR)/vim.exe
478 cp xxdd16.exe dist/vim/$(VIMRTDIR)/xxd.exe
479 cp installd16.exe dist/vim/$(VIMRTDIR)/install.exe
480 cp uninstald16.exe dist/vim/$(VIMRTDIR)/uninstal.exe
481 cd dist && zip -9 -rD -z vim$(VERSION)d16.zip vim <$(COMMENT_D16)
482
483# make Win32 gvim with OLE
484dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE)
485 -rm -rf dist/gvim$(VERSION)ole.zip
486 -rm -rf dist/vim
487 mkdir dist/vim
488 mkdir dist/vim/$(VIMRTDIR)
489 tar cf - \
490 $(BIN_DOS) \
491 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100492 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493 cp gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe
494 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
495 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
496 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
497 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
498 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
499 cp README_ole.txt dist/vim/$(VIMRTDIR)
500 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll
501 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR)
502 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000503 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504
505# make Win32s gvim
506dosbin_s: dist no_title.vim dist/$(COMMENT_W32S)
507 -rm -rf dist/gvim$(VERSION)_s.zip
508 -rm -rf dist/vim
509 mkdir dist/vim
510 mkdir dist/vim/$(VIMRTDIR)
511 tar cf - \
512 $(BIN_DOS) \
513 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100514 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515 cp gvim_w32s.exe dist/vim/$(VIMRTDIR)/gvim.exe
516 cp xxdd32.exe dist/vim/$(VIMRTDIR)/xxd.exe
517 cp README_w32s.txt dist/vim/$(VIMRTDIR)
518 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
519 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe
520 cd dist && zip -9 -rD -z gvim$(VERSION)_s.zip vim <$(COMMENT_W32S)
521
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522# MS-DOS sources
523dossrc: dist no_title.vim dist/$(COMMENT_SRC) runtime/doc/uganda.nsis.txt
524 -rm -rf dist/vim$(VERSION)src.zip
525 -rm -rf dist/vim
526 mkdir dist/vim
527 mkdir dist/vim/$(VIMRTDIR)
528 tar cf - \
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000529 $(SRC_ALL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 $(SRC_DOS) \
531 $(SRC_AMI_DOS) \
532 $(SRC_DOS_UNIX) \
533 runtime/doc/uganda.nsis.txt \
534 | (cd dist/vim/$(VIMRTDIR); tar xf -)
535 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
536 rmdir dist/vim/$(VIMRTDIR)/runtime
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100537 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 tar cf - \
539 $(SRC_DOS_BIN) \
540 | (cd dist/vim/$(VIMRTDIR); tar xf -)
541 cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC)
542
543runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt
544 cd runtime/doc && $(MAKE) uganda.nsis.txt
545
546os2bin: dist no_title.vim dist/$(COMMENT_OS2)
547 -rm -rf dist/vim$(VERSION)os2.zip
548 -rm -rf dist/vim
549 mkdir dist/vim
550 mkdir dist/vim/$(VIMRTDIR)
551 tar cf - \
552 $(BIN_OS2) \
553 | (cd dist/vim/$(VIMRTDIR); tar xf -)
Bram Moolenaard8e21d32010-01-06 21:16:31 +0100554 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 cp vimos2.exe dist/vim/$(VIMRTDIR)/vim.exe
556 cp xxdos2.exe dist/vim/$(VIMRTDIR)/xxd.exe
557 cp teeos2.exe dist/vim/$(VIMRTDIR)/tee.exe
558 cp emx.dll emxlibcs.dll dist/vim/$(VIMRTDIR)
559 cd dist && zip -9 -rD -z vim$(VERSION)os2.zip vim <$(COMMENT_OS2)
560
561html: dist dist/$(COMMENT_HTML)
562 -rm -rf dist/vim$(VERSION)html.zip
563 cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML)
564
565farsi: dist dist/$(COMMENT_FARSI)
566 -rm -f dist/farsi$(VERSION).zip
567 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI)