annotate src/xxd/Make_mvc.mak @ 30659:ea16b081493d v9.0.0664

patch 9.0.0664: bad redrawing with spell checking, using "C" and "$" in 'cpo' Commit: https://github.com/vim/vim/commit/f3ef026c9897f1d2e3fba47166a4771d507dae91 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Oct 5 13:29:15 2022 +0100 patch 9.0.0664: bad redrawing with spell checking, using "C" and "$" in 'cpo' Problem: Bad redrawing with spell checking, using "C" and "$" in 'cpo'. Solution: Do not redraw the next line when "$" is in 'cpo'. (closes https://github.com/vim/vim/issues/11285)
author Bram Moolenaar <Bram@vim.org>
date Wed, 05 Oct 2022 14:30:04 +0200
parents 590424e87b65
children
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 # The most simplistic Makefile for Win32 using Microsoft Visual C++
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 # (NT and Windows 95)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3
12600
590424e87b65 patch 8.0.1178: using old compiler on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 714
diff changeset
4 SUBSYSTEM = console
590424e87b65 patch 8.0.1178: using old compiler on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 714
diff changeset
5 !if "$(SUBSYSTEM_VER)" != ""
590424e87b65 patch 8.0.1178: using old compiler on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 714
diff changeset
6 SUBSYSTEM = $(SUBSYSTEM),$(SUBSYSTEM_VER)
590424e87b65 patch 8.0.1178: using old compiler on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 714
diff changeset
7 !endif
590424e87b65 patch 8.0.1178: using old compiler on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 714
diff changeset
8
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 xxd: xxd.exe
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 xxd.exe: xxd.c
12600
590424e87b65 patch 8.0.1178: using old compiler on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 714
diff changeset
12 cl /nologo -DWIN32 xxd.c -link -subsystem:$(SUBSYSTEM)
714
0f9f4761ad9c updated for version 7.0216
vimboss
parents: 7
diff changeset
13
0f9f4761ad9c updated for version 7.0216
vimboss
parents: 7
diff changeset
14 # This was for an older compiler
0f9f4761ad9c updated for version 7.0216
vimboss
parents: 7
diff changeset
15 # cl /nologo -DWIN32 xxd.c /link setargv.obj
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 clean:
12600
590424e87b65 patch 8.0.1178: using old compiler on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 714
diff changeset
18 - if exist xxd.obj del xxd.obj
590424e87b65 patch 8.0.1178: using old compiler on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 714
diff changeset
19 - if exist xxd.exe del xxd.exe