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