comparison src/Make_mvc.mak @ 19431:9800e126eaa2 v8.2.0273

patch 8.2.0273: MS-Windows uninstall may delete wrong batch file Commit: https://github.com/vim/vim/commit/1fa8d2c33d7290eda7dc2a94d4ec6a599a2d61dd Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 17 22:53:14 2020 +0100 patch 8.2.0273: MS-Windows uninstall may delete wrong batch file Problem: MS-Windows uninstall may delete wrong batch file. Solution: Add specific marker in the generated batch file. (Ken Takata, closes #5654)
author Bram Moolenaar <Bram@vim.org>
date Mon, 17 Feb 2020 23:00:04 +0100
parents a961efb326e5
children 3e4c401a652f
comparison
equal deleted inserted replaced
19430:f08b2ab4e1d0 19431:9800e126eaa2
1357 $(VIM): $(VIM).exe 1357 $(VIM): $(VIM).exe
1358 1358
1359 $(OUTDIR): 1359 $(OUTDIR):
1360 if not exist $(OUTDIR)/nul mkdir $(OUTDIR) 1360 if not exist $(OUTDIR)/nul mkdir $(OUTDIR)
1361 1361
1362 CFLAGS_INST = /nologo -DNDEBUG -DWIN32 -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) $(CFLAGS_DEPR) 1362 CFLAGS_INST = /nologo /O2 -DNDEBUG -DWIN32 -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) $(CFLAGS_DEPR)
1363 1363
1364 install.exe: dosinst.c dosinst.h version.h 1364 install.exe: dosinst.c dosinst.h version.h
1365 $(CC) $(CFLAGS_INST) dosinst.c kernel32.lib shell32.lib \ 1365 $(CC) $(CFLAGS_INST) dosinst.c kernel32.lib shell32.lib \
1366 user32.lib ole32.lib advapi32.lib uuid.lib \ 1366 user32.lib ole32.lib advapi32.lib uuid.lib \
1367 -link -subsystem:$(SUBSYSTEM_TOOLS) 1367 -link -subsystem:$(SUBSYSTEM_TOOLS)