annotate Makefile @ 19728:41a1ea967a97 v8.2.0420

patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C Commit: https://github.com/vim/vim/commit/f1ec378b014efb9897422c40369a6462163a512a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 20 19:37:47 2020 +0100 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C Problem: Vim9: cannot interrupt a loop with CTRL-C. Solution: Check for CTRL-C once in a while. Doesn't fully work yet.
author Bram Moolenaar <Bram@vim.org>
date Fri, 20 Mar 2020 19:45:03 +0100
parents 2ef19eed524a
children 30bdd2e4a6f9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 # This Makefile has two purposes:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 # 1. Starting the compilation of Vim for Unix.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 # 2. Creating the various distribution files.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5
2160
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
6 #########################################################################
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
7 # 1. Starting the compilation of Vim for Unix.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 #
2160
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
9 # Using this Makefile without an argument will compile Vim for Unix.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 # "make install" is also possible.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 # NOTE: If this doesn't work properly, first change directory to "src" and use
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 # the Makefile there:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 # cd src
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 # make [arguments]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 # Noticed on AIX systems when using this Makefile: Trying to run "cproto" or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 # something else after Vim has been compiled. Don't know why...
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 # Noticed on OS/390 Unix: Restarts configure.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 # The first (default) target is "first". This will result in running
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 # "make first", so that the target from "src/auto/config.mk" is picked
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 # up properly when config didn't run yet. Doing "make all" before configure
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 # has run can result in compiling with $(CC) empty.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25 first:
2705
58f47e17ba15 updated for version 7.3.122
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
26 @if test ! -f src/auto/config.mk; then \
58f47e17ba15 updated for version 7.3.122
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
27 cp src/config.mk.dist src/auto/config.mk; \
58f47e17ba15 updated for version 7.3.122
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
28 fi
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 @echo "Starting make in the src directory."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 @echo "If there are problems, cd to the src directory and run make there"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 cd src && $(MAKE) $@
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 # Some make programs use the last target for the $@ default; put the other
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 # targets separately to always let $@ expand to "first" by default.
15174
963c1967f917 patch 8.1.0597: cannot run test_libvterm from the top directory
Bram Moolenaar <Bram@vim.org>
parents: 13963
diff changeset
35 all install uninstall tools config configure reconfig proto depend lint tags types test scripttests test_libvterm unittests testclean clean distclean:
2705
58f47e17ba15 updated for version 7.3.122
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
36 @if test ! -f src/auto/config.mk; then \
58f47e17ba15 updated for version 7.3.122
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
37 cp src/config.mk.dist src/auto/config.mk; \
58f47e17ba15 updated for version 7.3.122
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
38 fi
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 @echo "Starting make in the src directory."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 @echo "If there are problems, cd to the src directory and run make there"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 cd src && $(MAKE) $@
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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)"
15174
963c1967f917 patch 8.1.0597: cannot run test_libvterm from the top directory
Bram Moolenaar <Bram@vim.org>
parents: 13963
diff changeset
59
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 # html vim##html.zip HTML docs
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 # dossrc vim##src.zip sources for MS-DOS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 # gvim##.zip binary for GUI Win32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80 # farsi farsi##.zip Farsi fonts
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 # All output files are created in the "dist" directory. Existing files are
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85 # Before creating an archive first delete all backup files, *.orig, etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86
10198
9f48eab77d62 commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
87 MAJOR = 8
18879
af69c9335223 Vim 8.2 release
Bram Moolenaar <Bram@vim.org>
parents: 18842
diff changeset
88 MINOR = 2
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 # CHECKLIST for creating a new version:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
af69c9335223 Vim 8.2 release
Bram Moolenaar <Bram@vim.org>
parents: 18842
diff changeset
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.
7439
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
96 # For a minor/major version: src/GvimExt/GvimExt.reg, src/vim.def,
10198
9f48eab77d62 commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
97 # src/gvim.exe.mnf.
18842
7547b6eb6b5c patch 8.1.2408: syntax menu and build instructions outdated
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
98 # - 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
99 # "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
100 # Use "make reconfig" after selecting the configure arguments.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101 # - With these features: "make proto" (requires cproto and Motif installed;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 # ignore warnings for missing include files, fix problems for syntax errors).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103 # - 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
104 # - 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
105 # warnings).
5294
359743c1f59a release version 7.4
Bram Moolenaar <bram@vim.org>
parents: 5247
diff changeset
106 # - If you have valgrind, enable it in src/testdir/Makefile and run "make
359743c1f59a release version 7.4
Bram Moolenaar <bram@vim.org>
parents: 5247
diff changeset
107 # test". Enable EXITFREE, disable GUI, scheme and tcl to avoid false alarms.
359743c1f59a release version 7.4
Bram Moolenaar <bram@vim.org>
parents: 5247
diff changeset
108 # Check the valgrind output.
359743c1f59a release version 7.4
Bram Moolenaar <bram@vim.org>
parents: 5247
diff changeset
109 # - Adjust the date and other info in src/version.h.
359743c1f59a release version 7.4
Bram Moolenaar <bram@vim.org>
parents: 5247
diff changeset
110 # - Correct included_patches[] in src/version.c.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111 # - Check for missing entries in runtime/makemenu.vim (with checkmenu script).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
112 # - Check for missing options in runtime/optwin.vim et al. (with check.vim).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
113 # - Do "make menu" to update the runtime/synmenu.vim file.
10198
9f48eab77d62 commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents: 10192
diff changeset
114 # - Add remarks for changes to runtime/doc/version8.txt.
1231
de2bde5aa8ff updated for version 7.1
vimboss
parents: 1186
diff changeset
115 # - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL
de2bde5aa8ff updated for version 7.1
vimboss
parents: 1186
diff changeset
116 # ADDITIONS".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117 # - In runtime/doc run "make" and "make html" to check for errors.
5294
359743c1f59a release version 7.4
Bram Moolenaar <bram@vim.org>
parents: 5247
diff changeset
118 # - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain
359743c1f59a release version 7.4
Bram Moolenaar <bram@vim.org>
parents: 5247
diff changeset
119 # any personal preferences or the changes mentioned above.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 # - Check file protections to be "644" for text and "755" for executables (run
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121 # the "check" script).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122 # - Check compiling on Amiga, MS-DOS and MS-Windows.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
de2bde5aa8ff updated for version 7.1
vimboss
parents: 1186
diff changeset
125 # - Make diff files against the previous release: "makediff7 7.1 7.2"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128 # - "make amisrc", move the archive to the Amiga and compile:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
129 # "make -f Make_manx.mak" (will use "big" features by default).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
130 # - Run the tests: "make -f Make_manx.mak test"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
131 # - Place the executables Vim and Xxd in this directory (set the executable
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132 # flag).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133 # - "make amirt", "make amibin".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134 #
7439
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
135 # MS-Windows:
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.
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
137 # - 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
138 # 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
139 # 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
140 # 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
141 # - 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
142 # 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
143 # 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
144 # 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
145 # - > make dossrc
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
146 # > make dosrt
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
147 # Unpack dist/vim##rt.zip and dist/vim##src.zip on an MS-Windows PC.
18879
af69c9335223 Vim 8.2 release
Bram Moolenaar <Bram@vim.org>
parents: 18842
diff changeset
148 # This creates the directory vim/vim82 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
149 # 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
150 # - 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
151 # - 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
152 # > cd src
c6dc5d62cf5e patch 8.0.1183: MS-Windows build instructions are outdated
Christian Brabandt <cb@256bit.org>
parents: 11042
diff changeset
153 # > msvc2015.bat
c6dc5d62cf5e patch 8.0.1183: MS-Windows build instructions are outdated
Christian Brabandt <cb@256bit.org>
parents: 11042
diff changeset
154 # - Build the console binary:
7439
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
155 # > 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
156 # - 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
157 # > 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
158 # > 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
159 # - Rename (using ../tools/rename.bat):
10032
f0b1cbf9467e commit https://github.com/vim/vim/commit/cb03397abae22e7237511db2e19ad5ef3e5e5f4e
Christian Brabandt <cb@256bit.org>
parents: 10028
diff changeset
160 # vim.exe to vimw32.exe
f0b1cbf9467e commit https://github.com/vim/vim/commit/cb03397abae22e7237511db2e19ad5ef3e5e5f4e
Christian Brabandt <cb@256bit.org>
parents: 10028
diff changeset
161 # 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
162 # 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
163 # vim.pdb to vimw32.pdb
f0b1cbf9467e commit https://github.com/vim/vim/commit/cb03397abae22e7237511db2e19ad5ef3e5e5f4e
Christian Brabandt <cb@256bit.org>
parents: 10028
diff changeset
164 # 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
165 # uninstall.exe to uninstallw32.exe
7439
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
166 # Win32 GUI version build:
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
167 # - > cd src
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
168 # > 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
169 # - 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
170 # > 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
171 # > nmake -f Make_mvc.mak testgvim
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172 # - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
1118
2b8ff9e3c520 updated for version 7.1a
vimboss
parents: 874
diff changeset
173 # - Move gvim.pdb to here.
7439
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
174 # - 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
175 # - 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
176 # 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
177 # - 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
178 # 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
179 # - Build:
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
180 # > cd src
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
181 # > bigvim.bat
7382
58958b8c9881 commit https://github.com/vim/vim/commit/e292d80bede5cb0b9b1ca95176ad6c3fbaae2e0a
Christian Brabandt <cb@256bit.org>
parents: 5294
diff changeset
182 # - Run the tests:
10032
f0b1cbf9467e commit https://github.com/vim/vim/commit/cb03397abae22e7237511db2e19ad5ef3e5e5f4e
Christian Brabandt <cb@256bit.org>
parents: 10028
diff changeset
183 # > 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
184 # > 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
185 # - check the output.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
186 # - Rename "gvim.exe" to "gvim_ole.exe".
1118
2b8ff9e3c520 updated for version 7.1a
vimboss
parents: 874
diff changeset
187 # - 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
188 # - Delete install.exe and uninstall.exe.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 # Create the archives:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
190 # - Copy all the "*.exe" files to where this Makefile is.
834
5117153003bd updated for version 7.0e
vimboss
parents: 825
diff changeset
191 # - 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
192 # - in this directory:
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
193 # > make dosbin
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194 # NSIS self installing exe:
2217
120502692d82 Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents: 2176
diff changeset
195 # - 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
196 # - 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
197 # 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
198 # above.
2217
120502692d82 Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents: 2176
diff changeset
199 # - 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
200 # gvimext.dll in src/GvimExt
120502692d82 Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents: 2176
diff changeset
201 # gvimext64.dll in src/GvimExt
120502692d82 Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents: 2176
diff changeset
202 # VisVim.dll in src/VisVim
810
9f345c48220b updated for version 7.0c
vimboss
parents: 799
diff changeset
203 # 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
204 # 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
205 # https://github.com/vim/vim-win32-installer/releases
18879
af69c9335223 Vim 8.2 release
Bram Moolenaar <Bram@vim.org>
parents: 18842
diff changeset
206 # It is part of gvim_8.2.*_x64.zip as vim/vim82/GvimExt/gvimext64.dll.
7439
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
207 # - 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
208 # 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
209 # - 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
210 # > unzip icons.zip
7439
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
211 # > 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
212 # ignore warning for libwinpthread-1.dll
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213 # - Copy gvim##.exe to the dist directory.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 #
5128
3dafc80e781b updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents: 2705
diff changeset
215 # 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
216 # works just fine on 64 bit systems).
3dafc80e781b updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents: 2705
diff changeset
217 # 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
218 # "..\VC\vcvarsall.bat x86_amd64".
7439
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
219 # - Build the console version:
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
220 # > nmake -f Make_mvc.mak
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
221 # - Build the GUI version:
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
222 # > 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
223 # - Build the OLE version with interfaces:
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
224 # > bigvim64.bat
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
225 #
5128
3dafc80e781b updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents: 2705
diff changeset
226 #
8623
58e749232bd7 commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
227 # 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
228 #
8623
58e749232bd7 commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
229 # 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
230 # 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
231 #
8623
58e749232bd7 commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
232 # 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
233 # that it probably won't build.
5128
3dafc80e781b updated for version 7.3.1307
Bram Moolenaar <bram@vim.org>
parents: 2705
diff changeset
234 #
10028
62b7fb15ff7e commit https://github.com/vim/vim/commit/fec246d2c595164ac3b7e9fe9677053d3739b834
Christian Brabandt <cb@256bit.org>
parents: 9546
diff changeset
235 # 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
236 #
8623
58e749232bd7 commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
237 # 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
238 # 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
239 # instructions.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
240
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
241 VIMVER = vim-$(MAJOR).$(MINOR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
242 VERSION = $(MAJOR)$(MINOR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
243 VDOT = $(MAJOR).$(MINOR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
244 VIMRTDIR = vim$(VERSION)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
245
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
246 # Vim used for conversion from "unix" to "dos"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
247 VIM = vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
248
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249 # How to include Filelist depends on the version of "make" you have.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 # If the current choice doesn't work, try the other one.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
251
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252 include Filelist
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
253 #.include "Filelist"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
254
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
255
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
256 # All output is put in the "dist" directory.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
257 dist:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258 mkdir dist
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
259
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
260 # 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
261 # Copy README files to the top directory.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
262 prepare:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
263 if test -f runtime/doc/uganda.nsis.txt; then \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
264 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
265 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
266 cp READMEdir/"$$name" .; \
58e749232bd7 commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
267 done
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
268
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
269 # For the zip files we need to create a file with the comment line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
270 dist/comment:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
271 mkdir dist/comment
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
272
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
273 COMMENT_RT = comment/$(VERSION)-rt
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274 COMMENT_W32 = comment/$(VERSION)-bin-w32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
275 COMMENT_GVIM = comment/$(VERSION)-bin-gvim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
276 COMMENT_OLE = comment/$(VERSION)-bin-ole
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
277 COMMENT_SRC = comment/$(VERSION)-src
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
278 COMMENT_HTML = comment/$(VERSION)-html
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 COMMENT_FARSI = comment/$(VERSION)-farsi
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
280
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
281 dist/$(COMMENT_RT): dist/comment
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
282 echo "Vim - Vi IMproved - v$(VDOT) runtime files for MS-DOS and MS-Windows" > dist/$(COMMENT_RT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
283
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
284 dist/$(COMMENT_W32): dist/comment
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
285 echo "Vim - Vi IMproved - v$(VDOT) binaries for MS-Windows NT/95" > dist/$(COMMENT_W32)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
286
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
287 dist/$(COMMENT_GVIM): dist/comment
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288 echo "Vim - Vi IMproved - v$(VDOT) GUI binaries for MS-Windows NT/95" > dist/$(COMMENT_GVIM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
289
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
290 dist/$(COMMENT_OLE): dist/comment
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
291 echo "Vim - Vi IMproved - v$(VDOT) MS-Windows GUI binaries with OLE support" > dist/$(COMMENT_OLE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
292
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
293 dist/$(COMMENT_SRC): dist/comment
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
294 echo "Vim - Vi IMproved - v$(VDOT) sources for MS-DOS and MS-Windows" > dist/$(COMMENT_SRC)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
295
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296 dist/$(COMMENT_HTML): dist/comment
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
297 echo "Vim - Vi IMproved - v$(VDOT) documentation in HTML" > dist/$(COMMENT_HTML)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
298
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
299 dist/$(COMMENT_FARSI): dist/comment
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
300 echo "Vim - Vi IMproved - v$(VDOT) Farsi language files" > dist/$(COMMENT_FARSI)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
301
573
c85bf6a4999b updated for version 7.0163
vimboss
parents: 570
diff changeset
302 unixall: dist prepare
c85bf6a4999b updated for version 7.0163
vimboss
parents: 570
diff changeset
303 -rm -f dist/$(VIMVER).tar.bz2
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
304 -rm -rf dist/$(VIMRTDIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
305 mkdir dist/$(VIMRTDIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
306 tar cf - \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
307 $(RT_ALL) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
308 $(RT_ALL_BIN) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
309 $(RT_UNIX) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
310 $(RT_UNIX_DOS_BIN) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
311 $(RT_SCRIPTS) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
312 $(LANG_GEN) \
240
693800033ceb updated for version 7.0067
vimboss
parents: 23
diff changeset
313 $(LANG_GEN_BIN) \
573
c85bf6a4999b updated for version 7.0163
vimboss
parents: 570
diff changeset
314 $(SRC_ALL) \
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
315 $(SRC_UNIX) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
316 $(SRC_DOS_UNIX) \
2160
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
317 $(EXTRA) \
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
318 $(LANG_SRC) \
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
319 | (cd dist/$(VIMRTDIR); tar xf -)
8623
58e749232bd7 commit https://github.com/vim/vim/commit/818c9e7edfce339eff7cb357f2ec29a72afd1977
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
320 -rm $(IN_README_DIR)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
321 # 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
322 # 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
323 # OK to put it in the archive.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
324 cp -f src/config.mk.dist dist/$(VIMRTDIR)/src/auto/config.mk
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
325 # Create an empty config.h file, make dependencies require it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
326 touch dist/$(VIMRTDIR)/src/auto/config.h
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
327 # Make sure configure is newer than config.mk to force it to be generated
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
328 touch dist/$(VIMRTDIR)/src/configure
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
329 # Make sure ja.sjis.po is newer than ja.po to avoid it being regenerated.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
330 # Same for cs.cp1250.po, pl.cp1250.po and sk.cp1250.po.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
331 touch dist/$(VIMRTDIR)/src/po/ja.sjis.po
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
332 touch dist/$(VIMRTDIR)/src/po/cs.cp1250.po
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
333 touch dist/$(VIMRTDIR)/src/po/pl.cp1250.po
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
334 touch dist/$(VIMRTDIR)/src/po/sk.cp1250.po
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
335 touch dist/$(VIMRTDIR)/src/po/zh_CN.cp936.po
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
336 touch dist/$(VIMRTDIR)/src/po/ru.cp1251.po
23
3f44e9abe4ec updated for version 7.0015
vimboss
parents: 7
diff changeset
337 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
338 # Create the archive.
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
339 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
340 bzip2 dist/$(VIMVER).tar
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
341
2160
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
342 # Amiga runtime - OBSOLETE
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
343 amirt: dist prepare
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
344 -rm -f dist/vim$(VERSION)rt.tar.gz
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
345 -rm -rf dist/Vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
346 mkdir dist/Vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
347 mkdir dist/Vim/$(VIMRTDIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
348 tar cf - \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
349 $(ROOT_AMI) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
350 $(RT_ALL) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
351 $(RT_ALL_BIN) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
352 $(RT_SCRIPTS) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
353 $(RT_AMI) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
354 $(RT_NO_UNIX) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
355 $(RT_AMI_DOS) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
356 | (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
357 -rm $(IN_README_DIR)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
358 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
359 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
360 mv dist/Vim/$(VIMRTDIR)/runtime/* dist/Vim/$(VIMRTDIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
361 rmdir dist/Vim/$(VIMRTDIR)/runtime
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
362 cd dist && tar cf vim$(VERSION)rt.tar Vim Vim.info
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
363 gzip -9 dist/vim$(VERSION)rt.tar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
364 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
365
2160
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
366 # Amiga binaries - OBSOLETE
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367 amibin: dist prepare
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
368 -rm -f dist/vim$(VERSION)bin.tar.gz
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
369 -rm -rf dist/Vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370 mkdir dist/Vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
371 mkdir dist/Vim/$(VIMRTDIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
372 tar cf - \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
373 $(ROOT_AMI) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
374 $(BIN_AMI) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
375 Vim \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
376 Xxd \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
377 | (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
378 -rm $(IN_README_DIR)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
379 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
380 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
381 cd dist && tar cf vim$(VERSION)bin.tar Vim Vim.info
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
382 gzip -9 dist/vim$(VERSION)bin.tar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
383 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
384
2160
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
385 # Amiga sources - OBSOLETE
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
386 amisrc: dist prepare
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
387 -rm -f dist/vim$(VERSION)src.tar.gz
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
388 -rm -rf dist/Vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
389 mkdir dist/Vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
390 mkdir dist/Vim/$(VIMRTDIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
391 tar cf - \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
392 $(ROOT_AMI) \
573
c85bf6a4999b updated for version 7.0163
vimboss
parents: 570
diff changeset
393 $(SRC_ALL) \
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
394 $(SRC_AMI) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
395 $(SRC_AMI_DOS) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
396 | (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
397 -rm $(IN_README_DIR)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
398 mv dist/Vim/$(VIMRTDIR)/vimdir.info dist/Vim.info
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
399 mv dist/Vim/$(VIMRTDIR)/runtime.info dist/Vim/$(VIMRTDIR).info
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
400 cd dist && tar cf vim$(VERSION)src.tar Vim Vim.info
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
401 gzip -9 dist/vim$(VERSION)src.tar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
402 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
403
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
404 no_title.vim: Makefile
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
405 echo "set notitle noicon nocp nomodeline viminfo=" >no_title.vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
406
2217
120502692d82 Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents: 2176
diff changeset
407 # MS-DOS sources
7443
357b7bd8d612 commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents: 7439
diff changeset
408 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
409 runtime/doc/uganda.nsis.txt \
357b7bd8d612 commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents: 7439
diff changeset
410 nsis/gvim_version.nsh
2217
120502692d82 Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents: 2176
diff changeset
411 -rm -rf dist/vim$(VERSION)src.zip
120502692d82 Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents: 2176
diff changeset
412 -rm -rf dist/vim
120502692d82 Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents: 2176
diff changeset
413 mkdir dist/vim
120502692d82 Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents: 2176
diff changeset
414 mkdir dist/vim/$(VIMRTDIR)
120502692d82 Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents: 2176
diff changeset
415 tar cf - \
120502692d82 Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents: 2176
diff changeset
416 $(SRC_ALL) \
120502692d82 Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents: 2176
diff changeset
417 $(SRC_DOS) \
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 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
7443
357b7bd8d612 commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents: 7439
diff changeset
435 nsis/gvim_version.nsh: Makefile
357b7bd8d612 commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents: 7439
diff changeset
436 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
437 echo "!ifndef __GVIM_VER__NSH__" >> $@
357b7bd8d612 commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents: 7439
diff changeset
438 echo "!define __GVIM_VER__NSH__" >> $@
357b7bd8d612 commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents: 7439
diff changeset
439 echo "!define VER_MAJOR $(MAJOR)" >> $@
357b7bd8d612 commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents: 7439
diff changeset
440 echo "!define VER_MINOR $(MINOR)" >> $@
357b7bd8d612 commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents: 7439
diff changeset
441 echo "!endif" >> $@
357b7bd8d612 commit https://github.com/vim/vim/commit/6c7b44472f7055c78d996e1b626bd2932502212f
Christian Brabandt <cb@256bit.org>
parents: 7439
diff changeset
442
7439
63a96fadf679 commit https://github.com/vim/vim/commit/2c15f6aa8fd057721e35d03523577b41cf7aaad5
Christian Brabandt <cb@256bit.org>
parents: 7382
diff changeset
443 dosrt: dist dist/$(COMMENT_RT) dosrt_files
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
444 -rm -rf dist/vim$(VERSION)rt.zip
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
445 cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
446
2217
120502692d82 Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents: 2176
diff changeset
447 # 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
448 # 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
449 dosrt_files: dist prepare no_title.vim
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
450 -rm -rf dist/vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
451 mkdir dist/vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
452 mkdir dist/vim/$(VIMRTDIR)
2160
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
453 mkdir dist/vim/$(VIMRTDIR)/lang
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
454 cd src && MAKEMO=yes $(MAKE) languages
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
455 tar cf - \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
456 $(RT_ALL) \
557
862863033fdd updated for version 7.0158
vimboss
parents: 240
diff changeset
457 | (cd dist/vim/$(VIMRTDIR); tar xf -)
862863033fdd updated for version 7.0158
vimboss
parents: 240
diff changeset
458 tar cf - \
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
459 $(RT_SCRIPTS) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
460 $(RT_DOS) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
461 $(RT_NO_UNIX) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
462 $(RT_AMI_DOS) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
463 $(LANG_GEN) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
464 | (cd dist/vim/$(VIMRTDIR); tar xf -)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
465 tar cf - \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
466 $(RT_UNIX_DOS_BIN) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
467 $(RT_ALL_BIN) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
468 $(RT_DOS_BIN) \
240
693800033ceb updated for version 7.0067
vimboss
parents: 23
diff changeset
469 $(LANG_GEN_BIN) \
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
470 | (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
471 -rm $(IN_README_DIR)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
472 mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
473 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
474 # 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
475 # 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
476 # 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
477 # ru.mo / ru.cp1251.mo.
2160
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
478 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
479 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
480 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
481 mkdir dist/vim/$(VIMRTDIR)/lang/$$n; \
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
482 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
483 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
484 fi \
c1d31f774a03 Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents: 2154
diff changeset
485 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
486 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
487 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
488 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
489 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
490 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
491 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
492 cp gettext64/libiconv-2.dll dist/vim/$(VIMRTDIR)/gettext64/
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
493
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
494
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
495 # 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
496 runtime_unix2dos: dosrt_files
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
497 -rm -rf `find runtime/dos -type f -print | sed -e /AAPDIR/d`
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
498 cd dist/vim/$(VIMRTDIR); tar cf - * \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
499 | (cd ../../../runtime/dos; tar xf -)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
500
10028
62b7fb15ff7e commit https://github.com/vim/vim/commit/fec246d2c595164ac3b7e9fe9677053d3739b834
Christian Brabandt <cb@256bit.org>
parents: 9546
diff changeset
501 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
502 -rm $(IN_README_DIR)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
503
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
504 # make Win32 gvim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
505 dosbin_gvim: dist no_title.vim dist/$(COMMENT_GVIM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
506 -rm -rf dist/gvim$(VERSION).zip
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
507 -rm -rf dist/vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
508 mkdir dist/vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
509 mkdir dist/vim/$(VIMRTDIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
510 tar cf - \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
511 $(BIN_DOS) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
512 | (cd dist/vim/$(VIMRTDIR); tar xf -)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
513 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
514 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
515 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
516 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
517 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
518 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
519 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
520 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
521 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
522 cp gvimext64.dll dist/vim/$(VIMRTDIR)/GvimExt64/gvimext.dll
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
523 cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM)
714
0f9f4761ad9c updated for version 7.0216
vimboss
parents: 573
diff changeset
524 cp gvim.pdb dist/gvim$(VERSION).pdb
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
525
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
526 # make Win32 console
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
527 dosbin_w32: dist no_title.vim dist/$(COMMENT_W32)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
528 -rm -rf dist/vim$(VERSION)w32.zip
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
529 -rm -rf dist/vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
530 mkdir dist/vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
531 mkdir dist/vim/$(VIMRTDIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
532 tar cf - \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
533 $(BIN_DOS) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
534 | (cd dist/vim/$(VIMRTDIR); tar xf -)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
535 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
536 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
537 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
538 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
539 cp uninstallw32.exe dist/vim/$(VIMRTDIR)/uninstall.exe
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
540 cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32)
714
0f9f4761ad9c updated for version 7.0216
vimboss
parents: 573
diff changeset
541 cp vimw32.pdb dist/vim$(VERSION)w32.pdb
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
542
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
543 # make Win32 gvim with OLE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
544 dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
545 -rm -rf dist/gvim$(VERSION)ole.zip
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
546 -rm -rf dist/vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
547 mkdir dist/vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
548 mkdir dist/vim/$(VIMRTDIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
549 tar cf - \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
550 $(BIN_DOS) \
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
551 | (cd dist/vim/$(VIMRTDIR); tar xf -)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552 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
553 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
554 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
555 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
556 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
557 cp uninstallw32.exe dist/vim/$(VIMRTDIR)/uninstall.exe
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
558 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
559 cp README_ole.txt dist/vim/$(VIMRTDIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
560 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
561 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
562 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE)
714
0f9f4761ad9c updated for version 7.0216
vimboss
parents: 573
diff changeset
563 cp gvim_ole.pdb dist/gvim$(VERSION)ole.pdb
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
564
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
565 html: dist dist/$(COMMENT_HTML)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
566 -rm -rf dist/vim$(VERSION)html.zip
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
567 cd runtime/doc && zip -9 -z ../../dist/vim$(VERSION)html.zip *.html <../../dist/$(COMMENT_HTML)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
568
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
569 farsi: dist dist/$(COMMENT_FARSI)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
570 -rm -f dist/farsi$(VERSION).zip
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
571 zip -9 -rD -z dist/farsi$(VERSION).zip farsi < dist/$(COMMENT_FARSI)