Mercurial > vim
annotate Makefile @ 30421:425b686c5244 v9.0.0546
patch 9.0.0546: supporting Ruby 1.8 makes code complicated
Commit: https://github.com/vim/vim/commit/236ccbf6f8a671a45b773de4b34558ecfdf9ac02
Author: K.Takata <kentkt@csc.jp>
Date: Thu Sep 22 16:12:06 2022 +0100
patch 9.0.0546: supporting Ruby 1.8 makes code complicated
Problem: Supporting Ruby 1.8 makes code complicated.
Solution: Drop Ruby 1.8 support, it is ancient. (Ken Takata, closes https://github.com/vim/vim/issues/11195)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 22 Sep 2022 17:15:03 +0200 |
parents | 0729bb8db99e |
children | 645722244c3f |
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. | |
21779
30bdd2e4a6f9
patch 8.2.1439: tiny and small builds have no test coverage
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
35 all install uninstall tools config configure reconfig proto depend lint tags types test scripttests testtiny test_libvterm unittests 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) $@ | |
15190
fada746a971b
patch 8.1.0605: running make in the top directory echoes a comment
Bram Moolenaar <Bram@vim.org>
parents:
15176
diff
changeset
|
42 @# When the target is "test" also run the indent tests. |
15176
ea6f7b224be7
patch 8.1.0598: indent tests may use the wrong Vim binary
Bram Moolenaar <Bram@vim.org>
parents:
15174
diff
changeset
|
43 @if test "$@" = "test"; then \ |
ea6f7b224be7
patch 8.1.0598: indent tests may use the wrong Vim binary
Bram Moolenaar <Bram@vim.org>
parents:
15174
diff
changeset
|
44 $(MAKE) indenttest; \ |
ea6f7b224be7
patch 8.1.0598: indent tests may use the wrong Vim binary
Bram Moolenaar <Bram@vim.org>
parents:
15174
diff
changeset
|
45 fi |
16417
e6fb5d39a24c
patch 8.1.1213: "make clean" in top dir does not cleanup indent test output
Bram Moolenaar <Bram@vim.org>
parents:
15410
diff
changeset
|
46 @# When the target is "clean" also clean for the indent tests. |
e6fb5d39a24c
patch 8.1.1213: "make clean" in top dir does not cleanup indent test output
Bram Moolenaar <Bram@vim.org>
parents:
15410
diff
changeset
|
47 @if test "$@" = "clean" -o "$@" = "distclean" -o "$@" = "testclean"; then \ |
e6fb5d39a24c
patch 8.1.1213: "make clean" in top dir does not cleanup indent test output
Bram Moolenaar <Bram@vim.org>
parents:
15410
diff
changeset
|
48 cd runtime/indent && \ |
e6fb5d39a24c
patch 8.1.1213: "make clean" in top dir does not cleanup indent test output
Bram Moolenaar <Bram@vim.org>
parents:
15410
diff
changeset
|
49 $(MAKE) clean; \ |
e6fb5d39a24c
patch 8.1.1213: "make clean" in top dir does not cleanup indent test output
Bram Moolenaar <Bram@vim.org>
parents:
15410
diff
changeset
|
50 fi |
7 | 51 |
15176
ea6f7b224be7
patch 8.1.0598: indent tests may use the wrong Vim binary
Bram Moolenaar <Bram@vim.org>
parents:
15174
diff
changeset
|
52 # Executable used for running the indent tests. |
ea6f7b224be7
patch 8.1.0598: indent tests may use the wrong Vim binary
Bram Moolenaar <Bram@vim.org>
parents:
15174
diff
changeset
|
53 VIM_FOR_INDENTTEST = ../../src/vim |
ea6f7b224be7
patch 8.1.0598: indent tests may use the wrong Vim binary
Bram Moolenaar <Bram@vim.org>
parents:
15174
diff
changeset
|
54 |
ea6f7b224be7
patch 8.1.0598: indent tests may use the wrong Vim binary
Bram Moolenaar <Bram@vim.org>
parents:
15174
diff
changeset
|
55 indenttest: |
ea6f7b224be7
patch 8.1.0598: indent tests may use the wrong Vim binary
Bram Moolenaar <Bram@vim.org>
parents:
15174
diff
changeset
|
56 cd runtime/indent && \ |
16417
e6fb5d39a24c
patch 8.1.1213: "make clean" in top dir does not cleanup indent test output
Bram Moolenaar <Bram@vim.org>
parents:
15410
diff
changeset
|
57 $(MAKE) clean && \ |
15176
ea6f7b224be7
patch 8.1.0598: indent tests may use the wrong Vim binary
Bram Moolenaar <Bram@vim.org>
parents:
15174
diff
changeset
|
58 $(MAKE) test VIM="$(VIM_FOR_INDENTTEST)" |
29140
c6c93dd88e98
patch 8.2.5090: MS-Windows: vim.def is no longer used
Bram Moolenaar <Bram@vim.org>
parents:
24701
diff
changeset
|
59 |
7 | 60 |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
61 ######################################################################### |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
62 # 2. Creating the various distribution files. |
7 | 63 # |
64 # TARGET PRODUCES CONTAINS | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
65 # unixall vim-#.#.tar.bz2 All runtime files and sources, for Unix |
7 | 66 # |
67 # html vim##html.zip HTML docs | |
68 # | |
69 # dossrc vim##src.zip sources for MS-DOS | |
70 # dosrt vim##rt.zip runtime for MS-DOS | |
10028
62b7fb15ff7e
commit https://github.com/vim/vim/commit/fec246d2c595164ac3b7e9fe9677053d3739b834
Christian Brabandt <cb@256bit.org>
parents:
9546
diff
changeset
|
71 # dosbin vim##w32.zip binary for Win32 |
7 | 72 # gvim##.zip binary for GUI Win32 |
73 # gvim##ole.zip OLE exe for Win32 GUI | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
74 # |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
75 # OBSOLETE |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
76 # 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
|
77 # 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
|
78 # amibin vim##bin.tgz binary for Amiga |
7 | 79 # |
80 # farsi farsi##.zip Farsi fonts | |
81 # | |
82 # All output files are created in the "dist" directory. Existing files are | |
83 # overwritten! | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
84 # To do all this you need the Unix archive and compiled binaries. |
7 | 85 # Before creating an archive first delete all backup files, *.orig, etc. |
86 | |
29314 | 87 MAJOR = 9 |
88 MINOR = 0 | |
7 | 89 |
90 # CHECKLIST for creating a new version: | |
91 # | |
10198
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
92 # - Update Vim version number. For a test version in: src/version.h, |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
93 # READMEdir/Contents, MAJOR/MINOR above, VIMMAJOR and VIMMINOR in |
18879 | 94 # src/Makefile, README.txt, README.md, src/README.md, READMEdir/README*.txt, |
10198
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
95 # runtime/doc/*.txt and make nsis/gvim_version.nsh. |
29140
c6c93dd88e98
patch 8.2.5090: MS-Windows: vim.def is no longer used
Bram Moolenaar <Bram@vim.org>
parents:
24701
diff
changeset
|
96 # For a minor/major version: src/GvimExt/GvimExt.reg, src/vim.manifest. |
18842
7547b6eb6b5c
patch 8.1.2408: syntax menu and build instructions outdated
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
97 # - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, Lua, Cscope and |
7547b6eb6b5c
patch 8.1.2408: syntax menu and build instructions outdated
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
98 # "huge" features. Add MZscheme if you can make it work. |
7547b6eb6b5c
patch 8.1.2408: syntax menu and build instructions outdated
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
99 # Use "make reconfig" after selecting the configure arguments. |
7 | 100 # - With these features: "make proto" (requires cproto and Motif installed; |
101 # ignore warnings for missing include files, fix problems for syntax errors). | |
102 # - 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
|
103 # - 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
|
104 # warnings). |
5294 | 105 # - If you have valgrind, enable it in src/testdir/Makefile and run "make |
106 # test". Enable EXITFREE, disable GUI, scheme and tcl to avoid false alarms. | |
107 # Check the valgrind output. | |
108 # - Adjust the date and other info in src/version.h. | |
109 # - Correct included_patches[] in src/version.c. | |
7 | 110 # - Check for missing entries in runtime/makemenu.vim (with checkmenu script). |
111 # - Check for missing options in runtime/optwin.vim et al. (with check.vim). | |
112 # - Do "make menu" to update the runtime/synmenu.vim file. | |
29314 | 113 # - Add remarks for changes to runtime/doc/version9.txt. |
1231 | 114 # - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL |
115 # ADDITIONS". | |
7 | 116 # - In runtime/doc run "make" and "make html" to check for errors. |
5294 | 117 # - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain |
118 # any personal preferences or the changes mentioned above. | |
7 | 119 # - Check file protections to be "644" for text and "755" for executables (run |
120 # the "check" script). | |
121 # - Check compiling on Amiga, MS-DOS and MS-Windows. | |
122 # - 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
|
123 # - "make unixall", "make html" |
1231 | 124 # - Make diff files against the previous release: "makediff7 7.1 7.2" |
7 | 125 # |
2154
7c8c7c95a865
First step in the Vim 7.3 branch. Changed version numbers.
Bram Moolenaar <bram@zimbu.org>
parents:
2035
diff
changeset
|
126 # Amiga: (OBSOLETE, Amiga files are no longer distributed) |
7 | 127 # - "make amisrc", move the archive to the Amiga and compile: |
128 # "make -f Make_manx.mak" (will use "big" features by default). | |
129 # - Run the tests: "make -f Make_manx.mak test" | |
130 # - Place the executables Vim and Xxd in this directory (set the executable | |
131 # flag). | |
132 # - "make amirt", "make amibin". | |
133 # | |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
134 # MS-Windows: |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
135 # - Run make on Unix to update the ".mo" files. |
12626
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
136 # - Get 32 bit libintl-8.dll, libiconv-2.dll and libgcc_s_sjlj-1.dll. E.g. from |
7613
4456fa2d22e8
commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents:
7443
diff
changeset
|
137 # https://mlocati.github.io/gettext-iconv-windows/ . |
11042
5de2fb612f21
patch 8.0.0410: newer gettext/iconv library has extra dll file
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
138 # Use the "shared-32.zip file and extract the archive to get the files. |
12626
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
139 # Put them in the gettext32 directory, "make dosrt" uses them. |
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
140 # - Get 64 bit libintl-8.dll and libiconv-2.dll. E.g. from |
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
141 # https://mlocati.github.io/gettext-iconv-windows/ . |
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
142 # Use the "shared-64.zip file and extract the archive to get the files. |
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
143 # Put them in the gettext64 directory, "make dosrt" uses them. |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
144 # - > make dossrc |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
145 # > make dosrt |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
146 # Unpack dist/vim##rt.zip and dist/vim##src.zip on an MS-Windows PC. |
29314 | 147 # This creates the directory vim/vim90 and puts all files in there. |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
148 # Win32 console version build: |
12610
c6dc5d62cf5e
patch 8.0.1183: MS-Windows build instructions are outdated
Christian Brabandt <cb@256bit.org>
parents:
11042
diff
changeset
|
149 # - See src/INSTALLpc.txt for installing the compiler and SDK. |
c6dc5d62cf5e
patch 8.0.1183: MS-Windows build instructions are outdated
Christian Brabandt <cb@256bit.org>
parents:
11042
diff
changeset
|
150 # - Set environment for Visual C++ 2015: |
c6dc5d62cf5e
patch 8.0.1183: MS-Windows build instructions are outdated
Christian Brabandt <cb@256bit.org>
parents:
11042
diff
changeset
|
151 # > cd src |
c6dc5d62cf5e
patch 8.0.1183: MS-Windows build instructions are outdated
Christian Brabandt <cb@256bit.org>
parents:
11042
diff
changeset
|
152 # > msvc2015.bat |
c6dc5d62cf5e
patch 8.0.1183: MS-Windows build instructions are outdated
Christian Brabandt <cb@256bit.org>
parents:
11042
diff
changeset
|
153 # - Build the console binary: |
24701
4f4960861583
patch 8.2.2889: typo and verbose comment in Makefiles
Bram Moolenaar <Bram@vim.org>
parents:
24689
diff
changeset
|
154 # > nmake -f Make_mvc.mak |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
155 # - Run the tests and check the output: |
10032
f0b1cbf9467e
commit https://github.com/vim/vim/commit/cb03397abae22e7237511db2e19ad5ef3e5e5f4e
Christian Brabandt <cb@256bit.org>
parents:
10028
diff
changeset
|
156 # > nmake -f Make_mvc.mak testclean |
7382
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
157 # > nmake -f Make_mvc.mak test |
10192
758f3d5a463d
commit https://github.com/vim/vim/commit/1b010058235fb803c1d4f42a02d2883921be8ef4
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
158 # - Rename (using ../tools/rename.bat): |
10032
f0b1cbf9467e
commit https://github.com/vim/vim/commit/cb03397abae22e7237511db2e19ad5ef3e5e5f4e
Christian Brabandt <cb@256bit.org>
parents:
10028
diff
changeset
|
159 # vim.exe to vimw32.exe |
f0b1cbf9467e
commit https://github.com/vim/vim/commit/cb03397abae22e7237511db2e19ad5ef3e5e5f4e
Christian Brabandt <cb@256bit.org>
parents:
10028
diff
changeset
|
160 # tee/tee.exe to teew32.exe |
10028
62b7fb15ff7e
commit https://github.com/vim/vim/commit/fec246d2c595164ac3b7e9fe9677053d3739b834
Christian Brabandt <cb@256bit.org>
parents:
9546
diff
changeset
|
161 # xxd/xxd.exe to xxdw32.exe |
10032
f0b1cbf9467e
commit https://github.com/vim/vim/commit/cb03397abae22e7237511db2e19ad5ef3e5e5f4e
Christian Brabandt <cb@256bit.org>
parents:
10028
diff
changeset
|
162 # vim.pdb to vimw32.pdb |
f0b1cbf9467e
commit https://github.com/vim/vim/commit/cb03397abae22e7237511db2e19ad5ef3e5e5f4e
Christian Brabandt <cb@256bit.org>
parents:
10028
diff
changeset
|
163 # install.exe to installw32.exe |
18174
1ec6539cef68
patch 8.1.2082: some files have a weird name to fit in 8.3 characters
Bram Moolenaar <Bram@vim.org>
parents:
16417
diff
changeset
|
164 # uninstall.exe to uninstallw32.exe |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
165 # Win32 GUI version build: |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
166 # - > cd src |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
167 # > nmake -f Make_mvc.mak GUI=yes |
12610
c6dc5d62cf5e
patch 8.0.1183: MS-Windows build instructions are outdated
Christian Brabandt <cb@256bit.org>
parents:
11042
diff
changeset
|
168 # - Run the tests and check the output: |
10032
f0b1cbf9467e
commit https://github.com/vim/vim/commit/cb03397abae22e7237511db2e19ad5ef3e5e5f4e
Christian Brabandt <cb@256bit.org>
parents:
10028
diff
changeset
|
169 # > nmake -f Make_mvc.mak testclean |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
170 # > nmake -f Make_mvc.mak testgvim |
7 | 171 # - move "gvim.exe" to here (otherwise the OLE version will overwrite it). |
1118 | 172 # - Move gvim.pdb to here. |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
173 # - Copy "GvimExt/gvimext.dll" to here. |
18174
1ec6539cef68
patch 8.1.2082: some files have a weird name to fit in 8.3 characters
Bram Moolenaar <Bram@vim.org>
parents:
16417
diff
changeset
|
174 # - Delete vimrun.exe, install.exe and uninstall.exe. |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
10032
diff
changeset
|
175 # Win32 GUI version with OLE, PERL, Ruby, TCL, PYTHON and dynamic IME: |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
176 # - Install the interfaces you want, see src/INSTALLpc.txt |
12610
c6dc5d62cf5e
patch 8.0.1183: MS-Windows build instructions are outdated
Christian Brabandt <cb@256bit.org>
parents:
11042
diff
changeset
|
177 # Adjust bigvim.bat to match the version of each interface you want. |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
178 # - Build: |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
179 # > cd src |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
180 # > bigvim.bat |
7382
58958b8c9881
commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
181 # - Run the tests: |
10032
f0b1cbf9467e
commit https://github.com/vim/vim/commit/cb03397abae22e7237511db2e19ad5ef3e5e5f4e
Christian Brabandt <cb@256bit.org>
parents:
10028
diff
changeset
|
182 # > nmake -f Make_mvc.mak testclean |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
183 # > 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
|
184 # - check the output. |
7 | 185 # - Rename "gvim.exe" to "gvim_ole.exe". |
1118 | 186 # - Rename gvim.pdb to "gvim_ole.pdb". |
18174
1ec6539cef68
patch 8.1.2082: some files have a weird name to fit in 8.3 characters
Bram Moolenaar <Bram@vim.org>
parents:
16417
diff
changeset
|
187 # - Delete install.exe and uninstall.exe. |
7 | 188 # Create the archives: |
189 # - Copy all the "*.exe" files to where this Makefile is. | |
834 | 190 # - 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
|
191 # - in this directory: |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
192 # > make dosbin |
7 | 193 # NSIS self installing exe: |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
194 # - 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
|
195 # - Make sure gvim_ole.exe, vimw32.exe, installw32.exe, |
18174
1ec6539cef68
patch 8.1.2082: some files have a weird name to fit in 8.3 characters
Bram Moolenaar <Bram@vim.org>
parents:
16417
diff
changeset
|
196 # uninstallw32.exe, teew32.exe and xxdw32.exe have been build as mentioned |
10028
62b7fb15ff7e
commit https://github.com/vim/vim/commit/fec246d2c595164ac3b7e9fe9677053d3739b834
Christian Brabandt <cb@256bit.org>
parents:
9546
diff
changeset
|
197 # above. |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
198 # - 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
|
199 # gvimext.dll in src/GvimExt |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
200 # gvimext64.dll in src/GvimExt |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
201 # VisVim.dll in src/VisVim |
810 | 202 # Note: VisVim needs to be build with MSVC 5, newer versions don't work. |
12638
52d928d016bc
patch 8.0.1197: MS-Windows build instructions are not up to date
Christian Brabandt <cb@256bit.org>
parents:
12626
diff
changeset
|
203 # gvimext64.dll can be obtained from: |
52d928d016bc
patch 8.0.1197: MS-Windows build instructions are not up to date
Christian Brabandt <cb@256bit.org>
parents:
12626
diff
changeset
|
204 # https://github.com/vim/vim-win32-installer/releases |
29314 | 205 # It is part of gvim_9.0.*_x64.zip as vim/vim90/GvimExt/gvimext64.dll. |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
206 # - Make sure there is a diff.exe two levels up (get it from a previous Vim |
12610
c6dc5d62cf5e
patch 8.0.1183: MS-Windows build instructions are outdated
Christian Brabandt <cb@256bit.org>
parents:
11042
diff
changeset
|
207 # version). Also put winpty32.dll and winpty-agent.exe there. |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
208 # - go to ../nsis and do: |
15410
cb1652e41314
patch 8.1.0713: images for NSIS take up too much space
Bram Moolenaar <Bram@vim.org>
parents:
15190
diff
changeset
|
209 # > unzip icons.zip |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
210 # > makensis gvim.nsi (takes a few minutes). |
10198
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10192
diff
changeset
|
211 # ignore warning for libwinpthread-1.dll |
7 | 212 # - Copy gvim##.exe to the dist directory. |
213 # | |
5128
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
214 # 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
|
215 # works just fine on 64 bit systems). |
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
216 # 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
|
217 # "..\VC\vcvarsall.bat x86_amd64". |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
218 # - Build the console version: |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
219 # > nmake -f Make_mvc.mak |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
220 # - Build the GUI version: |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
221 # > 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
|
222 # - Build the OLE version with interfaces: |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
223 # > bigvim64.bat |
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
224 # |
5128
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
225 # |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
226 # OBSOLETE systems: You can build these if you have an appropriate system. |
5128
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
227 # |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
228 # 16 bit DOS version: You need to get a very old version of Vim, for several |
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
229 # years even the tiny build is too big to fit in DOS memory. |
5128
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
230 # |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
231 # 32 bit DOS version: Support was removed in 7.4.1399. When syncing to before |
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
232 # that it probably won't build. |
5128
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
233 # |
10028
62b7fb15ff7e
commit https://github.com/vim/vim/commit/fec246d2c595164ac3b7e9fe9677053d3739b834
Christian Brabandt <cb@256bit.org>
parents:
9546
diff
changeset
|
234 # Win32s GUI version: Support was removed in patch 7.4.1364. |
5128
3dafc80e781b
updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents:
2705
diff
changeset
|
235 # |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
236 # OS/2 support was removed in patch 7.4.1008. If you want to give it a try |
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
237 # sync to before that and check the old version of this Makefile for |
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
238 # instructions. |
7 | 239 |
240 VIMVER = vim-$(MAJOR).$(MINOR) | |
241 VERSION = $(MAJOR)$(MINOR) | |
242 VDOT = $(MAJOR).$(MINOR) | |
243 VIMRTDIR = vim$(VERSION) | |
244 | |
245 # Vim used for conversion from "unix" to "dos" | |
246 VIM = vim | |
247 | |
248 # How to include Filelist depends on the version of "make" you have. | |
249 # If the current choice doesn't work, try the other one. | |
250 | |
251 include Filelist | |
252 #.include "Filelist" | |
253 | |
254 | |
255 # All output is put in the "dist" directory. | |
256 dist: | |
257 mkdir dist | |
258 | |
259 # Clean up some files to avoid they are included. | |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
260 # Copy README files to the top directory. |
7 | 261 prepare: |
262 if test -f runtime/doc/uganda.nsis.txt; then \ | |
263 rm runtime/doc/uganda.nsis.txt; fi | |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
264 for name in $(IN_README_DIR); do \ |
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
265 cp READMEdir/"$$name" .; \ |
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
266 done |
7 | 267 |
268 # For the zip files we need to create a file with the comment line | |
269 dist/comment: | |
270 mkdir dist/comment | |
271 | |
272 COMMENT_RT = comment/$(VERSION)-rt | |
273 COMMENT_W32 = comment/$(VERSION)-bin-w32 | |
274 COMMENT_GVIM = comment/$(VERSION)-bin-gvim | |
275 COMMENT_OLE = comment/$(VERSION)-bin-ole | |
276 COMMENT_SRC = comment/$(VERSION)-src | |
277 COMMENT_HTML = comment/$(VERSION)-html | |
278 COMMENT_FARSI = comment/$(VERSION)-farsi | |
279 | |
280 dist/$(COMMENT_RT): dist/comment | |
281 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT) | |
282 | |
283 dist/$(COMMENT_W32): dist/comment | |
284 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32) | |
285 | |
286 dist/$(COMMENT_GVIM): dist/comment | |
287 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM) | |
288 | |
289 dist/$(COMMENT_OLE): dist/comment | |
290 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE) | |
291 | |
292 dist/$(COMMENT_SRC): dist/comment | |
293 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC) | |
294 | |
295 dist/$(COMMENT_HTML): dist/comment | |
296 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML) | |
297 | |
298 dist/$(COMMENT_FARSI): dist/comment | |
299 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI) | |
300 | |
573 | 301 unixall: dist prepare |
302 -rm -f dist/$(VIMVER).tar.bz2 | |
7 | 303 -rm -rf dist/$(VIMRTDIR) |
304 mkdir dist/$(VIMRTDIR) | |
305 tar cf - \ | |
306 $(RT_ALL) \ | |
307 $(RT_ALL_BIN) \ | |
308 $(RT_UNIX) \ | |
309 $(RT_UNIX_DOS_BIN) \ | |
310 $(RT_SCRIPTS) \ | |
311 $(LANG_GEN) \ | |
240 | 312 $(LANG_GEN_BIN) \ |
573 | 313 $(SRC_ALL) \ |
7 | 314 $(SRC_UNIX) \ |
315 $(SRC_DOS_UNIX) \ | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
316 $(EXTRA) \ |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
317 $(LANG_SRC) \ |
7 | 318 | (cd dist/$(VIMRTDIR); tar xf -) |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
319 -rm $(IN_README_DIR) |
7 | 320 # 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
|
321 # 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
|
322 # OK to put it in the archive. |
7 | 323 cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk |
324 # Create an empty config.h file, make dependencies require it | |
325 touch dist/$(VIMRTDIR)/src/auto/config.h | |
326 # Make sure configure is newer than config.mk to force it to be generated | |
327 touch dist/$(VIMRTDIR)/src/configure | |
328 # Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated. | |
329 # Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po. | |
330 touch dist/$(VIMRTDIR)/src/po/ja.sjis.po | |
331 touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po | |
332 touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po | |
333 touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po | |
334 touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po | |
335 touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po | |
23 | 336 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
|
337 # Create the archive. |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
338 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
|
339 bzip2 dist/$(VIMVER).tar |
7 | 340 |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
341 # Amiga runtime - OBSOLETE |
7 | 342 amirt: dist prepare |
343 -rm -f dist/vim$(VERSION)rt.tar.gz | |
344 -rm -rf dist/Vim | |
345 mkdir dist/Vim | |
346 mkdir dist/Vim/$(VIMRTDIR) | |
347 tar cf - \ | |
348 $(ROOT_AMI) \ | |
349 $(RT_ALL) \ | |
350 $(RT_ALL_BIN) \ | |
351 $(RT_SCRIPTS) \ | |
352 $(RT_AMI) \ | |
353 $(RT_NO_UNIX) \ | |
354 $(RT_AMI_DOS) \ | |
355 | (cd dist/Vim/$(VIMRTDIR); tar xf -) | |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
356 -rm $(IN_README_DIR) |
7 | 357 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info |
358 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info | |
359 mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR) | |
360 rmdir dist/Vim/$(VIMRTDIR)/runtime | |
361 cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info | |
362 gzip -9 dist/vim$(VERSION)rt.tar | |
363 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz | |
364 | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
365 # Amiga binaries - OBSOLETE |
7 | 366 amibin: dist prepare |
367 -rm -f dist/vim$(VERSION)bin.tar.gz | |
368 -rm -rf dist/Vim | |
369 mkdir dist/Vim | |
370 mkdir dist/Vim/$(VIMRTDIR) | |
371 tar cf - \ | |
372 $(ROOT_AMI) \ | |
373 $(BIN_AMI) \ | |
374 Vim \ | |
375 Xxd \ | |
376 | (cd dist/Vim/$(VIMRTDIR); tar xf -) | |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
377 -rm $(IN_README_DIR) |
7 | 378 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info |
379 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info | |
380 cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info | |
381 gzip -9 dist/vim$(VERSION)bin.tar | |
382 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz | |
383 | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
384 # Amiga sources - OBSOLETE |
7 | 385 amisrc: dist prepare |
386 -rm -f dist/vim$(VERSION)src.tar.gz | |
387 -rm -rf dist/Vim | |
388 mkdir dist/Vim | |
389 mkdir dist/Vim/$(VIMRTDIR) | |
390 tar cf - \ | |
391 $(ROOT_AMI) \ | |
573 | 392 $(SRC_ALL) \ |
7 | 393 $(SRC_AMI) \ |
394 $(SRC_AMI_DOS) \ | |
395 | (cd dist/Vim/$(VIMRTDIR); tar xf -) | |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
396 -rm $(IN_README_DIR) |
7 | 397 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info |
398 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info | |
399 cd dist && tar cf vim$(VERSION)src.tar Vim Vim.info | |
400 gzip -9 dist/vim$(VERSION)src.tar | |
401 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz | |
402 | |
403 no_title.vim: Makefile | |
404 echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim | |
405 | |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
406 # MS-DOS sources |
7443
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
407 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
|
408 runtime/doc/uganda.nsis.txt \ |
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
409 nsis/gvim_version.nsh |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
410 -rm -rf dist/vim$(VERSION)src.zip |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
411 -rm -rf dist/vim |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
412 mkdir dist/vim |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
413 mkdir dist/vim/$(VIMRTDIR) |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
414 tar cf - \ |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
415 $(SRC_ALL) \ |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
416 $(SRC_DOS) \ |
29373
0729bb8db99e
patch 9.0.0029: the bitmaps/vim.ico file is not in the distribution
Bram Moolenaar <Bram@vim.org>
parents:
29314
diff
changeset
|
417 $(SRC_DOS_BIN) \ |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
418 $(SRC_AMI_DOS) \ |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
419 $(SRC_DOS_UNIX) \ |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
420 runtime/doc/uganda.nsis.txt \ |
7443
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
421 nsis/gvim_version.nsh \ |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
422 | (cd dist/vim/$(VIMRTDIR); tar xf -) |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
423 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR) |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
424 rmdir dist/vim/$(VIMRTDIR)/runtime |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
425 # 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
|
426 $(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
|
427 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
|
428 |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
429 runtime/doc/uganda.nsis.txt: runtime/doc/uganda.txt |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
430 cd runtime/doc && $(MAKE) uganda.nsis.txt |
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
431 |
7443
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
432 nsis/gvim_version.nsh: Makefile |
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
433 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
|
434 echo "!ifndef __GVIM_VER__NSH__" >> $@ |
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
435 echo "!define __GVIM_VER__NSH__" >> $@ |
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
436 echo "!define VER_MAJOR $(MAJOR)" >> $@ |
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
437 echo "!define VER_MINOR $(MINOR)" >> $@ |
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
438 echo "!endif" >> $@ |
357b7bd8d612
commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents:
7439
diff
changeset
|
439 |
7439
63a96fadf679
commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents:
7382
diff
changeset
|
440 dosrt: dist dist/$(COMMENT_RT) dosrt_files |
7 | 441 -rm -rf dist/vim$(VERSION)rt.zip |
442 cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT) | |
443 | |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2176
diff
changeset
|
444 # 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
|
445 # 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
|
446 dosrt_files: dist prepare no_title.vim |
7 | 447 -rm -rf dist/vim |
448 mkdir dist/vim | |
449 mkdir dist/vim/$(VIMRTDIR) | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
450 mkdir dist/vim/$(VIMRTDIR)/lang |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
451 cd src && MAKEMO=yes $(MAKE) languages |
7 | 452 tar cf - \ |
453 $(RT_ALL) \ | |
557 | 454 | (cd dist/vim/$(VIMRTDIR); tar xf -) |
455 tar cf - \ | |
7 | 456 $(RT_SCRIPTS) \ |
457 $(RT_DOS) \ | |
458 $(RT_NO_UNIX) \ | |
459 $(RT_AMI_DOS) \ | |
460 $(LANG_GEN) \ | |
461 | (cd dist/vim/$(VIMRTDIR); tar xf -) | |
462 tar cf - \ | |
463 $(RT_UNIX_DOS_BIN) \ | |
464 $(RT_ALL_BIN) \ | |
465 $(RT_DOS_BIN) \ | |
240 | 466 $(LANG_GEN_BIN) \ |
7 | 467 | (cd dist/vim/$(VIMRTDIR); tar xf -) |
8623
58e749232bd7
commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents:
7613
diff
changeset
|
468 -rm $(IN_README_DIR) |
7 | 469 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR) |
470 rmdir dist/vim/$(VIMRTDIR)/runtime | |
15410
cb1652e41314
patch 8.1.0713: images for NSIS take up too much space
Bram Moolenaar <Bram@vim.org>
parents:
15190
diff
changeset
|
471 # Add the message translations. Trick: skip ja.mo/ja.euc-jp.mo and use |
cb1652e41314
patch 8.1.0713: images for NSIS take up too much space
Bram Moolenaar <Bram@vim.org>
parents:
15190
diff
changeset
|
472 # ja.sjis.mo instead. Same for cs.mo / cs.cp1250.mo, pl.mo / pl.cp1250.mo, |
cb1652e41314
patch 8.1.0713: images for NSIS take up too much space
Bram Moolenaar <Bram@vim.org>
parents:
15190
diff
changeset
|
473 # sk.mo / sk.cp1250.mo, zh_CN.mo / zh_CN.cp936.mo, uk.mo / uk.cp1251.mo and |
cb1652e41314
patch 8.1.0713: images for NSIS take up too much space
Bram Moolenaar <Bram@vim.org>
parents:
15190
diff
changeset
|
474 # ru.mo / ru.cp1251.mo. |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
475 for i in $(LANG_DOS); do \ |
15410
cb1652e41314
patch 8.1.0713: images for NSIS take up too much space
Bram Moolenaar <Bram@vim.org>
parents:
15190
diff
changeset
|
476 if test "$$i" != "src/po/ja.mo" -a "$$i" != "src/po/ja.euc-jp.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 \ |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
477 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
|
478 mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \ |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
479 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
|
480 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
|
481 fi \ |
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
482 done |
12626
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
483 mkdir dist/vim/$(VIMRTDIR)/gettext32 |
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
484 cp gettext32/libintl-8.dll dist/vim/$(VIMRTDIR)/gettext32/ |
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
485 cp gettext32/libiconv-2.dll dist/vim/$(VIMRTDIR)/gettext32/ |
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
486 cp gettext32/libgcc_s_sjlj-1.dll dist/vim/$(VIMRTDIR)/gettext32/ |
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
487 mkdir dist/vim/$(VIMRTDIR)/gettext64 |
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
488 cp gettext64/libintl-8.dll dist/vim/$(VIMRTDIR)/gettext64/ |
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
489 cp gettext64/libiconv-2.dll dist/vim/$(VIMRTDIR)/gettext64/ |
7 | 490 |
491 | |
492 # 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
|
493 runtime_unix2dos: dosrt_files |
7 | 494 -rm -rf `find runtime/dos -type f -print | sed -e /AAPDIR/d` |
495 cd dist/vim/$(VIMRTDIR); tar cf - * \ | |
496 | (cd ../../../runtime/dos; tar xf -) | |
497 | |
10028
62b7fb15ff7e
commit https://github.com/vim/vim/commit/fec246d2c595164ac3b7e9fe9677053d3739b834
Christian Brabandt <cb@256bit.org>
parents:
9546
diff
changeset
|
498 dosbin: prepare dosbin_gvim dosbin_w32 dosbin_ole $(DOSBIN_S) |
10032
f0b1cbf9467e
commit https://github.com/vim/vim/commit/cb03397abae22e7237511db2e19ad5ef3e5e5f4e
Christian Brabandt <cb@256bit.org>
parents:
10028
diff
changeset
|
499 -rm $(IN_README_DIR) |
7 | 500 |
501 # make Win32 gvim | |
502 dosbin_gvim: dist no_title.vim dist/$(COMMENT_GVIM) | |
503 -rm -rf dist/gvim$(VERSION).zip | |
504 -rm -rf dist/vim | |
505 mkdir dist/vim | |
506 mkdir dist/vim/$(VIMRTDIR) | |
507 tar cf - \ | |
508 $(BIN_DOS) \ | |
509 | (cd dist/vim/$(VIMRTDIR); tar xf -) | |
510 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe | |
10028
62b7fb15ff7e
commit https://github.com/vim/vim/commit/fec246d2c595164ac3b7e9fe9677053d3739b834
Christian Brabandt <cb@256bit.org>
parents:
9546
diff
changeset
|
511 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe |
7 | 512 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe |
513 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe | |
514 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe | |
18174
1ec6539cef68
patch 8.1.2082: some files have a weird name to fit in 8.3 characters
Bram Moolenaar <Bram@vim.org>
parents:
16417
diff
changeset
|
515 cp uninstallw32.exe dist/vim/$(VIMRTDIR)/uninstall.exe |
12626
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
516 mkdir dist/vim/$(VIMRTDIR)/GvimExt32 |
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
517 cp gvimext.dll dist/vim/$(VIMRTDIR)/GvimExt32/gvimext.dll |
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
518 mkdir dist/vim/$(VIMRTDIR)/GvimExt64 |
aca41efd888c
patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installer
Christian Brabandt <cb@256bit.org>
parents:
12610
diff
changeset
|
519 cp gvimext64.dll dist/vim/$(VIMRTDIR)/GvimExt64/gvimext.dll |
7 | 520 cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM) |
714 | 521 cp gvim.pdb dist/gvim$(VERSION).pdb |
7 | 522 |
523 # make Win32 console | |
524 dosbin_w32: dist no_title.vim dist/$(COMMENT_W32) | |
525 -rm -rf dist/vim$(VERSION)w32.zip | |
526 -rm -rf dist/vim | |
527 mkdir dist/vim | |
528 mkdir dist/vim/$(VIMRTDIR) | |
529 tar cf - \ | |
530 $(BIN_DOS) \ | |
531 | (cd dist/vim/$(VIMRTDIR); tar xf -) | |
532 cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe | |
10028
62b7fb15ff7e
commit https://github.com/vim/vim/commit/fec246d2c595164ac3b7e9fe9677053d3739b834
Christian Brabandt <cb@256bit.org>
parents:
9546
diff
changeset
|
533 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe |
7 | 534 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe |
535 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe | |
18174
1ec6539cef68
patch 8.1.2082: some files have a weird name to fit in 8.3 characters
Bram Moolenaar <Bram@vim.org>
parents:
16417
diff
changeset
|
536 cp uninstallw32.exe dist/vim/$(VIMRTDIR)/uninstall.exe |
7 | 537 cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32) |
714 | 538 cp vimw32.pdb dist/vim$(VERSION)w32.pdb |
7 | 539 |
540 # make Win32 gvim with OLE | |
541 dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE) | |
542 -rm -rf dist/gvim$(VERSION)ole.zip | |
543 -rm -rf dist/vim | |
544 mkdir dist/vim | |
545 mkdir dist/vim/$(VIMRTDIR) | |
546 tar cf - \ | |
547 $(BIN_DOS) \ | |
548 | (cd dist/vim/$(VIMRTDIR); tar xf -) | |
549 cp gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe | |
10028
62b7fb15ff7e
commit https://github.com/vim/vim/commit/fec246d2c595164ac3b7e9fe9677053d3739b834
Christian Brabandt <cb@256bit.org>
parents:
9546
diff
changeset
|
550 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe |
7 | 551 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe |
552 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe | |
553 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe | |
18174
1ec6539cef68
patch 8.1.2082: some files have a weird name to fit in 8.3 characters
Bram Moolenaar <Bram@vim.org>
parents:
16417
diff
changeset
|
554 cp uninstallw32.exe dist/vim/$(VIMRTDIR)/uninstall.exe |
7 | 555 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll |
556 cp README_ole.txt dist/vim/$(VIMRTDIR) | |
557 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll | |
558 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR) | |
559 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE) | |
714 | 560 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb |
7 | 561 |
562 html: dist dist/$(COMMENT_HTML) | |
563 -rm -rf dist/vim$(VERSION)html.zip | |
564 cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML) | |
565 | |
566 farsi: dist dist/$(COMMENT_FARSI) | |
567 -rm -f dist/farsi$(VERSION).zip | |
568 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI) |