Mercurial > vim
annotate Makefile @ 7386:7423080fdb38
Added tag v7.4.997 for changeset 160f4b03d8d04154660d779aa07917d1ef7b304b
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 29 Dec 2015 20:45:04 +0100 |
parents | 58958b8c9881 |
children | 63a96fadf679 |
rev | line source |
---|---|
7 | 1 # This Makefile has two purposes: |
2 # 1. Starting the compilation of Vim for Unix. | |
3 # 2. Creating the various distribution files. | |
4 | |
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 | 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 | 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 | |
25 first: | |
2705 | 26 @if test ! -f src/auto/config.mk; then \ |
27 cp src/config.mk.dist src/auto/config.mk; \ | |
28 fi | |
7 | 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. | |
1118 | 35 all install uninstall tools config configure reconfig proto depend lint tags types test testclean clean distclean: |
2705 | 36 @if test ! -f src/auto/config.mk; then \ |
37 cp src/config.mk.dist src/auto/config.mk; \ | |
38 fi | |
7 | 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 | |
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 | 46 # |
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 | 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 | |
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 | 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! | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
73 # To do all this you need the Unix archive and compiled binaries. |
7 | 74 # Before creating an archive first delete all backup files, *.orig, etc. |
75 | |
557 | 76 MAJOR = 7 |
5294 | 77 MINOR = 4 |
7 | 78 |
79 # Uncomment this line if the Win32s version is to be included. | |
5146 | 80 # DOSBIN_S = dosbin_s |
7 | 81 |
2345 | 82 # Uncomment this line if the 16 bit DOS version is to be included. |
83 # DOSBIN_D16 = dosbin_d16 | |
84 | |
5146 | 85 # Uncomment this line if the 32 bit DOS version is to be included. |
86 # DOSBIN_D32 = dosbin_d32 | |
87 | |
7 | 88 # CHECKLIST for creating a new version: |
89 # | |
90 # - Update Vim version number. For a test version in: src/version.h, Contents, | |
799 | 91 # MAJOR/MINOR above, VIMMAJOR and VIMMINOR in src/Makefile, README*.txt, |
570 | 92 # runtime/doc/*.txt and nsis/gvim.nsi. Other things in README_os2.txt. For a |
2499
3c51864309bc
Update version number in gvim.exe manifest. (Michael Wookey)
Bram Moolenaar <bram@vim.org>
parents:
2490
diff
changeset
|
93 # minor/major version: src/GvimExt/GvimExt.reg, src/vim.def, src/vim16.def, |
3c51864309bc
Update version number in gvim.exe manifest. (Michael Wookey)
Bram Moolenaar <bram@vim.org>
parents:
2490
diff
changeset
|
94 # src/gvim.exe.mnf. |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
95 # - 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
|
96 # 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
|
97 # and SNiFF. |
7 | 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). | |
2340
99c1eba60b2d
Make automatic prototype generation work with more interfaces.
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
101 # - 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
|
102 # warnings). |
5294 | 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. | |
7 | 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. | |
799 | 114 # - Add remarks for changes to runtime/doc/version7.txt. |
1231 | 115 # - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL |
116 # ADDITIONS". | |
7 | 117 # - In runtime/doc run "make" and "make html" to check for errors. |
5294 | 118 # - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain |
119 # any personal preferences or the changes mentioned above. | |
7 | 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 | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
124 # - "make unixall", "make html" |
1231 | 125 # - Make diff files against the previous release: "makediff7 7.1 7.2" |
7 | 126 # |
2154
7c8c7c95a865
First step in the Vim 7.3 branch. Changed version numbers.
Bram Moolenaar <bram@zimbu.org>
parents:
2035
diff
changeset
|
127 # Amiga: (OBSOLETE, Amiga files are no longer distributed) |
7 | 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: | |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
136 # - Run make on Unix to update the ".mo" files. |
7 | 137 # - "make dossrc" and "make dosrt". Unpack the archives on a PC. |
138 # Win32 console version: | |
5128
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
139 # - Set environment for Visual C++ 2008, e.g.: "msvc2008.bat" Or: |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
140 # "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat". |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
141 # 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
|
142 # paths when necessary). |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
143 # 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
|
144 # won't work on Windows 7 and 64 bit systems. |
5128
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
145 # - "nmake -f Make_mvc.mak" (use the same path as for vcvars32.bat) |
7382
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
146 # - Run the tests: |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
147 # > rm testdir/*.out |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
148 # > nmake -f Make_mvc.mak test |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
149 # - check the output. |
5128
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
150 # - Rename vim.exe to vimw32.exe, xxd/xxd.exe to xxdw32.exe. |
1118 | 151 # - Rename vim.pdb to vimw32.pdb. |
5128
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
152 # - Rename install.exe to installw32.exe and uninstal.exe to uninstalw32.exe. |
7 | 153 # Win32 GUI version: |
5128
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
154 # - "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
|
155 # - Run the tests: |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
156 # > cd testdir |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
157 # > rm *.out |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
158 # > nmake -f Make_dos.mak VIMPROG=..\gvim |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
159 # - check the output. |
7 | 160 # - move "gvim.exe" to here (otherwise the OLE version will overwrite it). |
1118 | 161 # - Move gvim.pdb to here. |
1186 | 162 # - Delete vimrun.exe, install.exe and uninstal.exe. |
7 | 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 ...) | |
7382
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
166 # - Run the tests: |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
167 # > cd testdir |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
168 # > rm *.out |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
169 # > nmake -f Make_dos.mak VIMPROG=..\gvim |
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
170 # - check the output. |
7 | 171 # - Rename "gvim.exe" to "gvim_ole.exe". |
1118 | 172 # - Rename gvim.pdb to "gvim_ole.pdb". |
1186 | 173 # - Delete install.exe and uninstal.exe. |
7 | 174 # Create the archives: |
175 # - Copy all the "*.exe" files to where this Makefile is. | |
834 | 176 # - Copy all the "*.pdb" files to where this Makefile is. |
7 | 177 # - "make dosbin". |
178 # NSIS self installing exe: | |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
179 # - 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
|
180 # - Make sure gvim_ole.exe, vimw32.exe, installw32.exe, |
7 | 181 # 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
|
182 # - 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
|
183 # gvimext.dll in src/GvimExt |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
184 # gvimext64.dll in src/GvimExt |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
185 # VisVim.dll in src/VisVim |
810 | 186 # 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
|
187 # 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
|
188 # It is part of vim72.zip as vim72/gvimext.dll. |
7 | 189 # - make sure there is a diff.exe two levels up |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
190 # - go to ../nsis and do "makensis gvim.nsi" (takes a few minutes). |
7 | 191 # - Copy gvim##.exe to the dist directory. |
192 # | |
5128
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
193 # 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
|
194 # works just fine on 64 bit systems). |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
195 # 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
|
196 # "..\VC\vcvarsall.bat x86_amd64". |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
197 # - "nmake -f Make_mvc.mak" |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
198 # - "nmake -f Make_mvc.mak GUI=yes" |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
199 # Or run src/bigvim64.bat for an OLE version. |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
200 # |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
201 # 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
|
202 # |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
203 # 16 bit DOS version: (doesn't build anywhere) |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
204 # - 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
|
205 # - "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
|
206 # 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
|
207 # "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
|
208 # 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
|
209 # - "make test" and check the output. |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
210 # - 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
|
211 # "uninstald16.exe". |
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 # 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
|
214 # - 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
|
215 # - "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
|
216 # "ALL DONE". |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
217 # - 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
|
218 # "uninstald32.exe". |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
219 # |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
220 # Win32s GUI version: (requires very old compiler) |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
221 # - 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
|
222 # "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
|
223 # - "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
|
224 # - "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
|
225 # - Rename "gvim.exe" to "gvim_w32s.exe". |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
226 # - Rename "install.exe" to "installw32.exe" |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
227 # - Rename "uninstal.exe" to "uninstalw32.exe" |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
228 # - 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
|
229 # |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
230 # 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
|
231 # - Unpack the Unix archive. |
7 | 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 | |
237 VIMVER = vim-$(MAJOR).$(MINOR) | |
238 VERSION = $(MAJOR)$(MINOR) | |
239 VDOT = $(MAJOR).$(MINOR) | |
240 VIMRTDIR = vim$(VERSION) | |
241 | |
242 # Vim used for conversion from "unix" to "dos" | |
243 VIM = 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 | |
248 include Filelist | |
249 #.include "Filelist" | |
250 | |
251 | |
252 # All output is put in the "dist" directory. | |
253 dist: | |
254 mkdir dist | |
255 | |
256 # Clean up some files to avoid they are included. | |
257 prepare: | |
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 | |
262 dist/comment: | |
263 mkdir dist/comment | |
264 | |
265 COMMENT_RT = comment/$(VERSION)-rt | |
266 COMMENT_D16 = comment/$(VERSION)-bin-d16 | |
267 COMMENT_D32 = comment/$(VERSION)-bin-d32 | |
268 COMMENT_W32 = comment/$(VERSION)-bin-w32 | |
269 COMMENT_GVIM = comment/$(VERSION)-bin-gvim | |
270 COMMENT_OLE = comment/$(VERSION)-bin-ole | |
271 COMMENT_W32S = comment/$(VERSION)-bin-w32s | |
272 COMMENT_SRC = comment/$(VERSION)-src | |
273 COMMENT_OS2 = comment/$(VERSION)-bin-os2 | |
274 COMMENT_HTML = comment/$(VERSION)-html | |
275 COMMENT_FARSI = comment/$(VERSION)-farsi | |
276 | |
277 dist/$(COMMENT_RT): dist/comment | |
278 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT) | |
279 | |
280 dist/$(COMMENT_D16): dist/comment | |
281 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-DOS 16 bit real mode" > dist/$(COMMENT_D16) | |
282 | |
283 dist/$(COMMENT_D32): dist/comment | |
284 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-DOS 32 bit protected mode" > dist/$(COMMENT_D32) | |
285 | |
286 dist/$(COMMENT_W32): dist/comment | |
287 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32) | |
288 | |
289 dist/$(COMMENT_GVIM): dist/comment | |
290 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM) | |
291 | |
292 dist/$(COMMENT_OLE): dist/comment | |
293 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE) | |
294 | |
295 dist/$(COMMENT_W32S): dist/comment | |
296 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows 3.1/3.11" > dist/$(COMMENT_W32S) | |
297 | |
298 dist/$(COMMENT_SRC): dist/comment | |
299 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC) | |
300 | |
301 dist/$(COMMENT_OS2): dist/comment | |
302 echo "Vim - Vi IMproved - v$(VDOT) binaries + runtime files for OS/2" > dist/$(COMMENT_OS2) | |
303 | |
304 dist/$(COMMENT_HTML): dist/comment | |
305 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML) | |
306 | |
307 dist/$(COMMENT_FARSI): dist/comment | |
308 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI) | |
309 | |
573 | 310 unixall: dist prepare |
311 -rm -f dist/$(VIMVER).tar.bz2 | |
7 | 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) \ | |
240 | 321 $(LANG_GEN_BIN) \ |
573 | 322 $(SRC_ALL) \ |
7 | 323 $(SRC_UNIX) \ |
324 $(SRC_DOS_UNIX) \ | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
325 $(EXTRA) \ |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
326 $(LANG_SRC) \ |
7 | 327 | (cd dist/$(VIMRTDIR); tar xf -) |
328 # 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
|
329 # 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
|
330 # OK to put it in the archive. |
7 | 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 | |
23 | 344 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
|
345 # Create the archive. |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
346 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
|
347 bzip2 dist/$(VIMVER).tar |
7 | 348 |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
349 # Amiga runtime - OBSOLETE |
7 | 350 amirt: 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 | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
372 # Amiga binaries - OBSOLETE |
7 | 373 amibin: 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 | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
390 # Amiga sources - OBSOLETE |
7 | 391 amisrc: 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) \ | |
573 | 398 $(SRC_ALL) \ |
7 | 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 | |
408 no_title.vim: Makefile | |
409 echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim | |
410 | |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
411 # MS-DOS sources |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
412 dossrc: dist no_title.vim dist/$(COMMENT_SRC) runtime/doc/uganda.nsis.txt |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
413 -rm -rf dist/vim$(VERSION)src.zip |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
414 -rm -rf dist/vim |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
415 mkdir dist/vim |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
416 mkdir dist/vim/$(VIMRTDIR) |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
417 tar cf - \ |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
418 $(SRC_ALL) \ |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
419 $(SRC_DOS) \ |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
420 $(SRC_AMI_DOS) \ |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
421 $(SRC_DOS_UNIX) \ |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
422 runtime/doc/uganda.nsis.txt \ |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
423 | (cd dist/vim/$(VIMRTDIR); tar xf -) |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
424 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR) |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
425 rmdir dist/vim/$(VIMRTDIR)/runtime |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
426 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; |
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_DOS_BIN) \ |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
429 | (cd dist/vim/$(VIMRTDIR); tar xf -) |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
430 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
|
431 |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
432 runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
433 cd runtime/doc && $(MAKE) uganda.nsis.txt |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
434 |
7 | 435 dosrt: 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 | |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
439 # Split in two parts to avoid an "argument list too long" error. |
7 | 440 dosrt_unix2dos: dist prepare no_title.vim |
441 -rm -rf dist/vim | |
442 mkdir dist/vim | |
443 mkdir dist/vim/$(VIMRTDIR) | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
444 mkdir dist/vim/$(VIMRTDIR)/lang |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
445 cd src && MAKEMO=yes $(MAKE) languages |
7 | 446 tar cf - \ |
447 $(RT_ALL) \ | |
557 | 448 | (cd dist/vim/$(VIMRTDIR); tar xf -) |
449 tar cf - \ | |
7 | 450 $(RT_SCRIPTS) \ |
451 $(RT_DOS) \ | |
452 $(RT_NO_UNIX) \ | |
453 $(RT_AMI_DOS) \ | |
454 $(LANG_GEN) \ | |
455 | (cd dist/vim/$(VIMRTDIR); tar xf -) | |
2035 | 456 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; |
7 | 457 tar cf - \ |
458 $(RT_UNIX_DOS_BIN) \ | |
459 $(RT_ALL_BIN) \ | |
460 $(RT_DOS_BIN) \ | |
240 | 461 $(LANG_GEN_BIN) \ |
7 | 462 | (cd dist/vim/$(VIMRTDIR); tar xf -) |
463 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR) | |
464 rmdir dist/vim/$(VIMRTDIR)/runtime | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
465 # 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
|
466 # 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
|
467 # 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
|
468 for i in $(LANG_DOS); do \ |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
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 \ |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
470 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
|
471 mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \ |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
472 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
|
473 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
|
474 fi \ |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
475 done |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
476 cp libintl.dll dist/vim/$(VIMRTDIR)/ |
7 | 477 |
478 | |
479 # Convert runtime files from Unix fileformat to dos fileformat. | |
480 # Used before uploading. Don't delete the AAPDIR/sign files! | |
481 runtime_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 | |
5146 | 486 dosbin: prepare dosbin_gvim dosbin_w32 $(DOSBIN_D32) dosbin_ole $(DOSBIN_S) $(DOSBIN_D16) |
7 | 487 |
488 # make Win32 gvim | |
489 dosbin_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 -) | |
2035 | 497 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; |
7 | 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) | |
714 | 505 cp gvim.pdb dist/gvim$(VERSION).pdb |
7 | 506 |
507 # make Win32 console | |
508 dosbin_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 -) | |
2035 | 516 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; |
7 | 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) | |
714 | 522 cp vimw32.pdb dist/vim$(VERSION)w32.pdb |
7 | 523 |
524 # make 32bit DOS | |
525 dosbin_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 -) | |
2035 | 533 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; |
7 | 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 | |
542 dosbin_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 -) | |
2035 | 550 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; |
7 | 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 | |
558 dosbin_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 -) | |
2035 | 566 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; |
7 | 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) | |
714 | 577 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb |
7 | 578 |
579 # make Win32s gvim | |
580 dosbin_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 -) | |
2035 | 588 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; |
7 | 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 | |
596 os2bin: 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 -) | |
2035 | 604 find dist/vim/$(VIMRTDIR) -type f -exec $(VIM) -e -X -u no_title.vim -c ":set tx|wq" {} \; |
7 | 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 | |
611 html: 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 | |
615 farsi: dist dist/$(COMMENT_FARSI) | |
616 -rm -f dist/farsi$(VERSION).zip | |
617 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI) |