1# This Makefile has two purposes: 2# 1. Starting the compilation of Vim for Unix. 3# 2. Creating the various distribution files. 4 5 6######################################################################### 7# 1. Starting the compilation of Vim for Unix. 8# 9# Using this Makefile without an argument will compile Vim for Unix. 10# "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. 32all install uninstall tools config configure reconfig proto depend lint tags types test testclean clean distclean: 33 @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 38######################################################################### 39# 2. Creating the various distribution files. 40# 41# TARGET PRODUCES CONTAINS 42# unixall vim-#.#.tar.bz2 All runtime files and sources, for Unix 43# 44# html vim##html.zip HTML docs 45# 46# 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 54# 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 59# 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! 67# To do all this you need the Unix archive and compiled binaries. 68# Before creating an archive first delete all backup files, *.orig, etc. 69 70MAJOR = 7 71MINOR = 3a 72 73# Uncomment this line if the Win32s version is to be included. 74DOSBIN_S = dosbin_s 75 76# CHECKLIST for creating a new version: 77# 78# - Update Vim version number. For a test version in: src/version.h, Contents, 79# MAJOR/MINOR above, VIMMAJOR and VIMMINOR in src/Makefile, README*.txt, 80# 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. 82# - Correct included_patches[] in src/version.c. 83# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, MZscheme, Lua (if 84# you can make it work), Cscope and "huge" features. Exclude workshop and 85# SNiFF. 86# - With these features: "make proto" (requires cproto and Motif installed; 87# ignore warnings for missing include files, fix problems for syntax errors). 88# - With these features: "make depend" (works best with gcc). 89# - If you have a lint program: "make lint" and check the output (ignore GTK 90# warnings). 91# - Enable the efence library in "src/Makefile" and run "make test". Disable 92# Python and Ruby to avoid trouble with threads (efence is not threadsafe). 93# - Check for missing entries in runtime/makemenu.vim (with checkmenu script). 94# - Check for missing options in runtime/optwin.vim et al. (with check.vim). 95# - Do "make menu" to update the runtime/synmenu.vim file. 96# - Add remarks for changes to runtime/doc/version7.txt. 97# - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL 98# ADDITIONS". 99# - In runtime/doc run "make" and "make html" to check for errors. 100# - Check if src/Makefile and src/feature.h don't contain any personal 101# preferences or the GTK, Perl, etc. mentioned above. 102# - Check file protections to be "644" for text and "755" for executables (run 103# the "check" script). 104# - Check compiling on Amiga, MS-DOS and MS-Windows. 105# - Delete all *~, *.sw?, *.orig, *.rej files 106# - "make unixall", "make html" 107# - Make diff files against the previous release: "makediff7 7.1 7.2" 108# 109# Amiga: (OBSOLETE, Amiga files are no longer distributed) 110# - "make amisrc", move the archive to the Amiga and compile: 111# "make -f Make_manx.mak" (will use "big" features by default). 112# - Run the tests: "make -f Make_manx.mak test" 113# - Place the executables Vim and Xxd in this directory (set the executable 114# flag). 115# - "make amirt", "make amibin". 116# 117# PC: 118# - Run make on Unix to update the ".mo" files. 119# - "make dossrc" and "make dosrt". Unpack the archives on a PC. 120# 16 bit DOS version: (OBSOLETE, 16 bit version doesn't build) 121# - Set environment for compiling with Borland C++ 3.1. 122# - "bmake -f Make_bc3.mak BOR=E:\borlandc" (compiling xxd might fail, in that 123# case set environment for compiling with Borland C++ 4.0 and do 124# "make -f make_bc3.mak BOR=E:\BC4 xxd/xxd.exe"). 125# NOTE: this currently fails because Vim is too big. 126# - "make test" and check the output. 127# - Rename the executables to "vimd16.exe", "xxdd16.exe", "installd16.exe" and 128# "uninstald16.exe". 129# 32 bit DOS version: 130# - Set environment for compiling with DJGPP; "gmake -f Make_djg.mak". 131# - "rm testdir/*.out", "gmake -f Make_djg.mak test" and check the output for 132# "ALL DONE". 133# - Rename the executables to "vimd32.exe", "xxdd32.exe", "installd32.exe" and 134# "uninstald32.exe". 135# Win32 console version: 136# - Set environment for Visual C++ 2010, e.g.: 137# "E:\Microsoft Visual Studio 10.0\VC\bin\vcvars32.bat". Or, for Visual 138# C++ 2008 Express Edition: "msvc2008.bat". Or, when using the Visual C++ 139# Toolkit 2003: "msvcsetup.bat" (adjust the paths when necessary). For 140# Windows 98/ME the 2003 version is required. 141# - "nmake -f Make_mvc.mak" 142# - "rm testdir/*.out", "nmake -f Make_mvc.mak test" and check the output. 143# - Rename the executables to "vimw32.exe", "xxdw32.exe". 144# - Rename vim.pdb to vimw32.pdb. 145# - When building the Win32s version later, delete vimrun.exe, install.exe and 146# uninstal.exe. Otherwise rename executables to installw32.exe and 147# uninstalw32.exe. 148# Win32 GUI version: 149# - "nmake -f Make_mvc.mak GUI=yes. 150# - move "gvim.exe" to here (otherwise the OLE version will overwrite it). 151# - Move gvim.pdb to here. 152# - Delete vimrun.exe, install.exe and uninstal.exe. 153# - Copy "GvimExt/gvimext.dll" to here. 154# Win32 GUI version with OLE, PERL, TCL, PYTHON and dynamic IME: 155# - Run src/bigvim.bat ("nmake -f Make_mvc.mak GUI=yes OLE=yes IME=yes ...) 156# - Rename "gvim.exe" to "gvim_ole.exe". 157# - Rename gvim.pdb to "gvim_ole.pdb". 158# - Delete install.exe and uninstal.exe. 159# - If building the Win32s version delete vimrun.exe. 160# Win32s GUI version: 161# - Set environment for Visual C++ 4.1 (requires a new console window) 162# - "vcvars32.bat" (use the path for VC 4.1 e:\msdev\bin) 163# - "nmake -f Make_mvc.mak GUI=yes INTL=no clean" (use the path for VC 4.1) 164# - "nmake -f Make_mvc.mak GUI=yes INTL=no" (use the path for VC 4.1) 165# - Rename "gvim.exe" to "gvim_w32s.exe". 166# - Rename "install.exe" to "installw32.exe" 167# - Rename "uninstal.exe" to "uninstalw32.exe" 168# - The produced uninstalw32.exe and vimrun.exe are used. 169# Create the archives: 170# - Copy all the "*.exe" files to where this Makefile is. 171# - Copy all the "*.pdb" files to where this Makefile is. 172# - "make dosbin". 173# NSIS self installing exe: 174# - To get NSIS see http://nsis.sourceforge.net 175# - Make sure gvim_ole.exe, vimd32.exe, vimw32.exe, installw32.exe, 176# uninstalw32.exe and xxdw32.exe have been build as mentioned above. 177# - copy these files (get them from a binary archive or build them): 178# gvimext.dll in src/GvimExt 179# gvimext64.dll in src/GvimExt 180# VisVim.dll in src/VisVim 181# Note: VisVim needs to be build with MSVC 5, newer versions don't work. 182# gvimext64.dll can be obtained from http://code.google.com/p/vim-win3264/ 183# It is part of vim72.zip as vim72/gvimext.dll. 184# - make sure there is a diff.exe two levels up 185# - go to ../nsis and do "makensis gvim.nsi" (takes a few minutes). 186# - Copy gvim##.exe to the dist directory. 187# 188# OS/2: (OBSOLETE, OS/2 version is no longer distributed) 189# - Unpack the Unix archive. 190# - "make -f Make_os2.mak". 191# - Rename the executables to vimos2.exe, xxdos2.exe and teeos2.exe and copy 192# them to here. 193# - "make os2bin". 194 195VIMVER = vim-$(MAJOR).$(MINOR) 196VERSION = $(MAJOR)$(MINOR) 197VDOT = $(MAJOR).$(MINOR) 198VIMRTDIR = vim$(VERSION) 199 200# Vim used for conversion from "unix" to "dos" 201VIM = vim 202 203# How to include Filelist depends on the version of "make" you have. 204# If the current choice doesn't work, try the other one. 205 206include Filelist 207#.include "Filelist" 208 209 210# All output is put in the "dist" directory. 211dist: 212 mkdir dist 213 214# Clean up some files to avoid they are included. 215prepare: 216 if test -f runtime/doc/uganda.nsis.txt; then \ 217 rm runtime/doc/uganda.nsis.txt; fi 218 219# For the zip files we need to create a file with the comment line 220dist/comment: 221 mkdir dist/comment 222 223COMMENT_RT = comment/$(VERSION)-rt 224COMMENT_D16 = comment/$(VERSION)-bin-d16 225COMMENT_D32 = comment/$(VERSION)-bin-d32 226COMMENT_W32 = comment/$(VERSION)-bin-w32 227COMMENT_GVIM = comment/$(VERSION)-bin-gvim 228COMMENT_OLE = comment/$(VERSION)-bin-ole 229COMMENT_W32S = comment/$(VERSION)-bin-w32s 230COMMENT_SRC = comment/$(VERSION)-src 231COMMENT_OS2 = comment/$(VERSION)-bin-os2 232COMMENT_HTML = comment/$(VERSION)-html 233COMMENT_FARSI = comment/$(VERSION)-farsi 234 235dist/$(COMMENT_RT): dist/comment 236 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT) 237 238dist/$(COMMENT_D16): dist/comment 239 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-DOS 16 bit real mode" > dist/$(COMMENT_D16) 240 241dist/$(COMMENT_D32): dist/comment 242 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-DOS 32 bit protected mode" > dist/$(COMMENT_D32) 243 244dist/$(COMMENT_W32): dist/comment 245 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32) 246 247dist/$(COMMENT_GVIM): dist/comment 248 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM) 249 250dist/$(COMMENT_OLE): dist/comment 251 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE) 252 253dist/$(COMMENT_W32S): dist/comment 254 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows 3.1/3.11" > dist/$(COMMENT_W32S) 255 256dist/$(COMMENT_SRC): dist/comment 257 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC) 258 259dist/$(COMMENT_OS2): dist/comment 260 echo "Vim - Vi IMproved - v$(VDOT) binaries + runtime files for OS/2" > dist/$(COMMENT_OS2) 261 262dist/$(COMMENT_HTML): dist/comment 263 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML) 264 265dist/$(COMMENT_FARSI): dist/comment 266 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI) 267 268unixall: dist prepare 269 -rm -f dist/$(VIMVER).tar.bz2 270 -rm -rf dist/$(VIMRTDIR) 271 mkdir dist/$(VIMRTDIR) 272 tar cf - \ 273 $(RT_ALL) \ 274 $(RT_ALL_BIN) \ 275 $(RT_UNIX) \ 276 $(RT_UNIX_DOS_BIN) \ 277 $(RT_SCRIPTS) \ 278 $(LANG_GEN) \ 279 $(LANG_GEN_BIN) \ 280 $(SRC_ALL) \ 281 $(SRC_UNIX) \ 282 $(SRC_DOS_UNIX) \ 283 $(EXTRA) \ 284 $(LANG_SRC) \ 285 | (cd dist/$(VIMRTDIR); tar xf -) 286# Need to use a "distclean" config.mk file 287 cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk 288# Create an empty config.h file, make dependencies require it 289 touch dist/$(VIMRTDIR)/src/auto/config.h 290# Make sure configure is newer than config.mk to force it to be generated 291 touch dist/$(VIMRTDIR)/src/configure 292# Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated. 293# Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po. 294 touch dist/$(VIMRTDIR)/src/po/ja.sjis.po 295 touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po 296 touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po 297 touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po 298 touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po 299 touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po 300 touch dist/$(VIMRTDIR)/src/po/uk.cp1251.po 301# Create the archive. 302 cd dist && tar cf $(VIMVER).tar $(VIMRTDIR) 303 bzip2 dist/$(VIMVER).tar 304 305# Amiga runtime - OBSOLETE 306amirt: dist prepare 307 -rm -f dist/vim$(VERSION)rt.tar.gz 308 -rm -rf dist/Vim 309 mkdir dist/Vim 310 mkdir dist/Vim/$(VIMRTDIR) 311 tar cf - \ 312 $(ROOT_AMI) \ 313 $(RT_ALL) \ 314 $(RT_ALL_BIN) \ 315 $(RT_SCRIPTS) \ 316 $(RT_AMI) \ 317 $(RT_NO_UNIX) \ 318 $(RT_AMI_DOS) \ 319 | (cd dist/Vim/$(VIMRTDIR); tar xf -) 320 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info 321 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info 322 mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR) 323 rmdir dist/Vim/$(VIMRTDIR)/runtime 324 cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info 325 gzip -9 dist/vim$(VERSION)rt.tar 326 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz 327 328# Amiga binaries - OBSOLETE 329amibin: dist prepare 330 -rm -f dist/vim$(VERSION)bin.tar.gz 331 -rm -rf dist/Vim 332 mkdir dist/Vim 333 mkdir dist/Vim/$(VIMRTDIR) 334 tar cf - \ 335 $(ROOT_AMI) \ 336 $(BIN_AMI) \ 337 Vim \ 338 Xxd \ 339 | (cd dist/Vim/$(VIMRTDIR); tar xf -) 340 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info 341 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info 342 cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info 343 gzip -9 dist/vim$(VERSION)bin.tar 344 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz 345 346# Amiga sources - OBSOLETE 347amisrc: dist prepare 348 -rm -f dist/vim$(VERSION)src.tar.gz 349 -rm -rf dist/Vim 350 mkdir dist/Vim 351 mkdir dist/Vim/$(VIMRTDIR) 352 tar cf - \ 353 $(ROOT_AMI) \ 354 $(SRC_ALL) \ 355 $(SRC_AMI) \ 356 $(SRC_AMI_DOS) \ 357 | (cd dist/Vim/$(VIMRTDIR); tar xf -) 358 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)src.tar Vim Vim.info 361 gzip -9 dist/vim$(VERSION)src.tar 362 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz 363 364no_title.vim: Makefile 365 echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim 366 367# MS-DOS sources 368dossrc: dist no_title.vim dist/$(COMMENT_SRC) runtime/doc/uganda.nsis.txt 369 -rm -rf dist/vim$(VERSION)src.zip 370 -rm -rf dist/vim 371 mkdir dist/vim 372 mkdir dist/vim/$(VIMRTDIR) 373 tar cf - \ 374 $(SRC_ALL) \ 375 $(SRC_DOS) \ 376 $(SRC_AMI_DOS) \ 377 $(SRC_DOS_UNIX) \ 378 runtime/doc/uganda.nsis.txt \ 379 | (cd dist/vim/$(VIMRTDIR); tar xf -) 380 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR) 381 rmdir dist/vim/$(VIMRTDIR)/runtime 382 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; 383 tar cf - \ 384 $(SRC_DOS_BIN) \ 385 | (cd dist/vim/$(VIMRTDIR); tar xf -) 386 cd dist && zip -9 -rD -z vim$(VERSION)src.zip vim <$(COMMENT_SRC) 387 388runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt 389 cd runtime/doc && $(MAKE) uganda.nsis.txt 390 391dosrt: dist dist/$(COMMENT_RT) dosrt_unix2dos 392 -rm -rf dist/vim$(VERSION)rt.zip 393 cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT) 394 395# Split in two parts to avoid an "argument list too long" error. 396dosrt_unix2dos: dist prepare no_title.vim 397 -rm -rf dist/vim 398 mkdir dist/vim 399 mkdir dist/vim/$(VIMRTDIR) 400 mkdir dist/vim/$(VIMRTDIR)/lang 401 cd src && MAKEMO=yes $(MAKE) languages 402 tar cf - \ 403 $(RT_ALL) \ 404 | (cd dist/vim/$(VIMRTDIR); tar xf -) 405 tar cf - \ 406 $(RT_SCRIPTS) \ 407 $(RT_DOS) \ 408 $(RT_NO_UNIX) \ 409 $(RT_AMI_DOS) \ 410 $(LANG_GEN) \ 411 | (cd dist/vim/$(VIMRTDIR); tar xf -) 412 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; 413 tar cf - \ 414 $(RT_UNIX_DOS_BIN) \ 415 $(RT_ALL_BIN) \ 416 $(RT_DOS_BIN) \ 417 $(LANG_GEN_BIN) \ 418 | (cd dist/vim/$(VIMRTDIR); tar xf -) 419 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR) 420 rmdir dist/vim/$(VIMRTDIR)/runtime 421# Add the message translations. Trick: skip ja.mo and use ja.sjis.mo instead. 422# Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo, sk.mo / sk.cp1250.mo, 423# zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and ru.mo / ru.cp1251.mo. 424 for i in $(LANG_DOS); do \ 425 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 \ 426 n=`echo $$i | sed -e "s+src/po/\([-a-zA-Z0-9_]*\(.UTF-8\)*\)\(.sjis\)*\(.cp1250\)*\(.cp1251\)*\(.cp936\)*.mo+\1+"`; \ 427 mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \ 428 mkdir dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES; \ 429 cp $$i dist/vim/$(VIMRTDIR)/lang/$$n/LC_MESSAGES/vim.mo; \ 430 fi \ 431 done 432 cp libintl.dll dist/vim/$(VIMRTDIR)/ 433 434 435# Convert runtime files from Unix fileformat to dos fileformat. 436# Used before uploading. Don't delete the AAPDIR/sign files! 437runtime_unix2dos: dosrt_unix2dos 438 -rm -rf `find runtime/dos -type f -print | sed -e /AAPDIR/d` 439 cd dist/vim/$(VIMRTDIR); tar cf - * \ 440 | (cd ../../../runtime/dos; tar xf -) 441 442dosbin: prepare dosbin_gvim dosbin_w32 dosbin_d32 dosbin_d16 dosbin_ole $(DOSBIN_S) 443 444# make Win32 gvim 445dosbin_gvim: dist no_title.vim dist/$(COMMENT_GVIM) 446 -rm -rf dist/gvim$(VERSION).zip 447 -rm -rf dist/vim 448 mkdir dist/vim 449 mkdir dist/vim/$(VIMRTDIR) 450 tar cf - \ 451 $(BIN_DOS) \ 452 | (cd dist/vim/$(VIMRTDIR); tar xf -) 453 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; 454 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe 455 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe 456 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe 457 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe 458 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe 459 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll 460 cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM) 461 cp gvim.pdb dist/gvim$(VERSION).pdb 462 463# make Win32 console 464dosbin_w32: dist no_title.vim dist/$(COMMENT_W32) 465 -rm -rf dist/vim$(VERSION)w32.zip 466 -rm -rf dist/vim 467 mkdir dist/vim 468 mkdir dist/vim/$(VIMRTDIR) 469 tar cf - \ 470 $(BIN_DOS) \ 471 | (cd dist/vim/$(VIMRTDIR); tar xf -) 472 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; 473 cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe 474 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe 475 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe 476 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe 477 cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32) 478 cp vimw32.pdb dist/vim$(VERSION)w32.pdb 479 480# make 32bit DOS 481dosbin_d32: dist no_title.vim dist/$(COMMENT_D32) 482 -rm -rf dist/vim$(VERSION)d32.zip 483 -rm -rf dist/vim 484 mkdir dist/vim 485 mkdir dist/vim/$(VIMRTDIR) 486 tar cf - \ 487 $(BIN_DOS) \ 488 | (cd dist/vim/$(VIMRTDIR); tar xf -) 489 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; 490 cp vimd32.exe dist/vim/$(VIMRTDIR)/vim.exe 491 cp xxdd32.exe dist/vim/$(VIMRTDIR)/xxd.exe 492 cp installd32.exe dist/vim/$(VIMRTDIR)/install.exe 493 cp uninstald32.exe dist/vim/$(VIMRTDIR)/uninstal.exe 494 cp csdpmi4b.zip dist/vim/$(VIMRTDIR) 495 cd dist && zip -9 -rD -z vim$(VERSION)d32.zip vim <$(COMMENT_D32) 496 497# make 16bit DOS 498dosbin_d16: dist no_title.vim dist/$(COMMENT_D16) 499 -rm -rf dist/vim$(VERSION)d16.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 -) 506 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; 507 cp vimd16.exe dist/vim/$(VIMRTDIR)/vim.exe 508 cp xxdd16.exe dist/vim/$(VIMRTDIR)/xxd.exe 509 cp installd16.exe dist/vim/$(VIMRTDIR)/install.exe 510 cp uninstald16.exe dist/vim/$(VIMRTDIR)/uninstal.exe 511 cd dist && zip -9 -rD -z vim$(VERSION)d16.zip vim <$(COMMENT_D16) 512 513# make Win32 gvim with OLE 514dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE) 515 -rm -rf dist/gvim$(VERSION)ole.zip 516 -rm -rf dist/vim 517 mkdir dist/vim 518 mkdir dist/vim/$(VIMRTDIR) 519 tar cf - \ 520 $(BIN_DOS) \ 521 | (cd dist/vim/$(VIMRTDIR); tar xf -) 522 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; 523 cp gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe 524 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe 525 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe 526 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe 527 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe 528 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll 529 cp README_ole.txt dist/vim/$(VIMRTDIR) 530 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll 531 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR) 532 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE) 533 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb 534 535# make Win32s gvim 536dosbin_s: dist no_title.vim dist/$(COMMENT_W32S) 537 -rm -rf dist/gvim$(VERSION)_s.zip 538 -rm -rf dist/vim 539 mkdir dist/vim 540 mkdir dist/vim/$(VIMRTDIR) 541 tar cf - \ 542 $(BIN_DOS) \ 543 | (cd dist/vim/$(VIMRTDIR); tar xf -) 544 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; 545 cp gvim_w32s.exe dist/vim/$(VIMRTDIR)/gvim.exe 546 cp xxdd32.exe dist/vim/$(VIMRTDIR)/xxd.exe 547 cp README_w32s.txt dist/vim/$(VIMRTDIR) 548 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe 549 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe 550 cd dist && zip -9 -rD -z gvim$(VERSION)_s.zip vim <$(COMMENT_W32S) 551 552os2bin: dist no_title.vim dist/$(COMMENT_OS2) 553 -rm -rf dist/vim$(VERSION)os2.zip 554 -rm -rf dist/vim 555 mkdir dist/vim 556 mkdir dist/vim/$(VIMRTDIR) 557 tar cf - \ 558 $(BIN_OS2) \ 559 | (cd dist/vim/$(VIMRTDIR); tar xf -) 560 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; 561 cp vimos2.exe dist/vim/$(VIMRTDIR)/vim.exe 562 cp xxdos2.exe dist/vim/$(VIMRTDIR)/xxd.exe 563 cp teeos2.exe dist/vim/$(VIMRTDIR)/tee.exe 564 cp emx.dll emxlibcs.dll dist/vim/$(VIMRTDIR) 565 cd dist && zip -9 -rD -z vim$(VERSION)os2.zip vim <$(COMMENT_OS2) 566 567html: dist dist/$(COMMENT_HTML) 568 -rm -rf dist/vim$(VERSION)html.zip 569 cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML) 570 571farsi: dist dist/$(COMMENT_FARSI) 572 -rm -f dist/farsi$(VERSION).zip 573 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI) 574