annotate Makefile @ 7601:88c4c634e919

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