comparison Makefile @ 18174:1ec6539cef68 v8.1.2082

patch 8.1.2082: some files have a weird name to fit in 8.3 characters Commit: https://github.com/vim/vim/commit/30e8e73506e4522ef4aebf7d525c0e6ffe8805fd Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 27 13:08:36 2019 +0200 patch 8.1.2082: some files have a weird name to fit in 8.3 characters Problem: Some files have a weird name to fit in 8.3 characters. Solution: Use a nicer names.
author Bram Moolenaar <Bram@vim.org>
date Fri, 27 Sep 2019 13:15:03 +0200
parents e6fb5d39a24c
children 7547b6eb6b5c
comparison
equal deleted inserted replaced
18173:f046fb05b08f 18174:1ec6539cef68
163 # vim.exe to vimw32.exe 163 # vim.exe to vimw32.exe
164 # tee/tee.exe to teew32.exe 164 # tee/tee.exe to teew32.exe
165 # xxd/xxd.exe to xxdw32.exe 165 # xxd/xxd.exe to xxdw32.exe
166 # vim.pdb to vimw32.pdb 166 # vim.pdb to vimw32.pdb
167 # install.exe to installw32.exe 167 # install.exe to installw32.exe
168 # uninstal.exe to uninstalw32.exe 168 # uninstall.exe to uninstallw32.exe
169 # Win32 GUI version build: 169 # Win32 GUI version build:
170 # - > cd src 170 # - > cd src
171 # > nmake -f Make_mvc.mak GUI=yes 171 # > nmake -f Make_mvc.mak GUI=yes
172 # - Run the tests and check the output: 172 # - Run the tests and check the output:
173 # > nmake -f Make_mvc.mak testclean 173 # > nmake -f Make_mvc.mak testclean
174 # > nmake -f Make_mvc.mak testgvim 174 # > nmake -f Make_mvc.mak testgvim
175 # - move "gvim.exe" to here (otherwise the OLE version will overwrite it). 175 # - move "gvim.exe" to here (otherwise the OLE version will overwrite it).
176 # - Move gvim.pdb to here. 176 # - Move gvim.pdb to here.
177 # - Copy "GvimExt/gvimext.dll" to here. 177 # - Copy "GvimExt/gvimext.dll" to here.
178 # - Delete vimrun.exe, install.exe and uninstal.exe. 178 # - Delete vimrun.exe, install.exe and uninstall.exe.
179 # Win32 GUI version with OLE, PERL, Ruby, TCL, PYTHON and dynamic IME: 179 # Win32 GUI version with OLE, PERL, Ruby, TCL, PYTHON and dynamic IME:
180 # - Install the interfaces you want, see src/INSTALLpc.txt 180 # - Install the interfaces you want, see src/INSTALLpc.txt
181 # Adjust bigvim.bat to match the version of each interface you want. 181 # Adjust bigvim.bat to match the version of each interface you want.
182 # - Build: 182 # - Build:
183 # > cd src 183 # > cd src
186 # > nmake -f Make_mvc.mak testclean 186 # > nmake -f Make_mvc.mak testclean
187 # > nmake -f Make_mvc.mak testgvim 187 # > nmake -f Make_mvc.mak testgvim
188 # - check the output. 188 # - check the output.
189 # - Rename "gvim.exe" to "gvim_ole.exe". 189 # - Rename "gvim.exe" to "gvim_ole.exe".
190 # - Rename gvim.pdb to "gvim_ole.pdb". 190 # - Rename gvim.pdb to "gvim_ole.pdb".
191 # - Delete install.exe and uninstal.exe. 191 # - Delete install.exe and uninstall.exe.
192 # Create the archives: 192 # Create the archives:
193 # - Copy all the "*.exe" files to where this Makefile is. 193 # - Copy all the "*.exe" files to where this Makefile is.
194 # - Copy all the "*.pdb" files to where this Makefile is. 194 # - Copy all the "*.pdb" files to where this Makefile is.
195 # - in this directory: 195 # - in this directory:
196 # > make dosbin 196 # > make dosbin
197 # NSIS self installing exe: 197 # NSIS self installing exe:
198 # - To get NSIS see http://nsis.sourceforge.net 198 # - To get NSIS see http://nsis.sourceforge.net
199 # - Make sure gvim_ole.exe, vimw32.exe, installw32.exe, 199 # - Make sure gvim_ole.exe, vimw32.exe, installw32.exe,
200 # uninstalw32.exe, teew32.exe and xxdw32.exe have been build as mentioned 200 # uninstallw32.exe, teew32.exe and xxdw32.exe have been build as mentioned
201 # above. 201 # above.
202 # - copy these files (get them from a binary archive or build them): 202 # - copy these files (get them from a binary archive or build them):
203 # gvimext.dll in src/GvimExt 203 # gvimext.dll in src/GvimExt
204 # gvimext64.dll in src/GvimExt 204 # gvimext64.dll in src/GvimExt
205 # VisVim.dll in src/VisVim 205 # VisVim.dll in src/VisVim
516 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe 516 cp gvim.exe dist/vim/$(VIMRTDIR)/gvim.exe
517 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe 517 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
518 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe 518 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
519 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe 519 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
520 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe 520 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
521 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe 521 cp uninstallw32.exe dist/vim/$(VIMRTDIR)/uninstall.exe
522 mkdir dist/vim/$(VIMRTDIR)/GvimExt32 522 mkdir dist/vim/$(VIMRTDIR)/GvimExt32
523 cp gvimext.dll dist/vim/$(VIMRTDIR)/GvimExt32/gvimext.dll 523 cp gvimext.dll dist/vim/$(VIMRTDIR)/GvimExt32/gvimext.dll
524 mkdir dist/vim/$(VIMRTDIR)/GvimExt64 524 mkdir dist/vim/$(VIMRTDIR)/GvimExt64
525 cp gvimext64.dll dist/vim/$(VIMRTDIR)/GvimExt64/gvimext.dll 525 cp gvimext64.dll dist/vim/$(VIMRTDIR)/GvimExt64/gvimext.dll
526 cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM) 526 cd dist && zip -9 -rD -z gvim$(VERSION).zip vim <$(COMMENT_GVIM)
537 | (cd dist/vim/$(VIMRTDIR); tar xf -) 537 | (cd dist/vim/$(VIMRTDIR); tar xf -)
538 cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe 538 cp vimw32.exe dist/vim/$(VIMRTDIR)/vim.exe
539 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe 539 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
540 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe 540 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
541 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe 541 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
542 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe 542 cp uninstallw32.exe dist/vim/$(VIMRTDIR)/uninstall.exe
543 cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32) 543 cd dist && zip -9 -rD -z vim$(VERSION)w32.zip vim <$(COMMENT_W32)
544 cp vimw32.pdb dist/vim$(VERSION)w32.pdb 544 cp vimw32.pdb dist/vim$(VERSION)w32.pdb
545 545
546 # make Win32 gvim with OLE 546 # make Win32 gvim with OLE
547 dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE) 547 dosbin_ole: dist no_title.vim dist/$(COMMENT_OLE)
555 cp gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe 555 cp gvim_ole.exe dist/vim/$(VIMRTDIR)/gvim.exe
556 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe 556 cp teew32.exe dist/vim/$(VIMRTDIR)/tee.exe
557 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe 557 cp xxdw32.exe dist/vim/$(VIMRTDIR)/xxd.exe
558 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe 558 cp vimrun.exe dist/vim/$(VIMRTDIR)/vimrun.exe
559 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe 559 cp installw32.exe dist/vim/$(VIMRTDIR)/install.exe
560 cp uninstalw32.exe dist/vim/$(VIMRTDIR)/uninstal.exe 560 cp uninstallw32.exe dist/vim/$(VIMRTDIR)/uninstall.exe
561 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll 561 cp gvimext.dll dist/vim/$(VIMRTDIR)/gvimext.dll
562 cp README_ole.txt dist/vim/$(VIMRTDIR) 562 cp README_ole.txt dist/vim/$(VIMRTDIR)
563 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll 563 cp src/VisVim/VisVim.dll dist/vim/$(VIMRTDIR)/VisVim.dll
564 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR) 564 cp src/VisVim/README_VisVim.txt dist/vim/$(VIMRTDIR)
565 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE) 565 cd dist && zip -9 -rD -z gvim$(VERSION)ole.zip vim <$(COMMENT_OLE)