annotate src/xxd/Make_ming.mak @ 24220:a7a9176bb542 v8.2.2651

patch 8.2.2651: Vim9: restoring command modifiers happens after jump Commit: https://github.com/vim/vim/commit/a91a71322dc2e6a1640e73b6da1f1a2f94f39a54 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 25 21:12:15 2021 +0100 patch 8.2.2651: Vim9: restoring command modifiers happens after jump Problem: Vim9: restoring command modifiers happens after jump. Solution: Move the restore instruction to before the jump. (closes https://github.com/vim/vim/issues/8006) Also handle for and while.
author Bram Moolenaar <Bram@vim.org>
date Thu, 25 Mar 2021 21:15:04 +0100
parents a82b2d79e61b
children 3835b742025e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7602
a82b2d79e61b commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents: 3118
diff changeset
1 # The most simplistic Makefile, for MinGW and Cygwin gcc on MS-DOS
3118
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 ifndef USEDLL
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 USEDLL = no
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5 endif
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 ifeq (yes, $(USEDLL))
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8 DEFINES =
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 LIBS = -lc
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10 else
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 DEFINES =
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 LIBS =
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13 endif
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15 CC = gcc
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16 CFLAGS = -O2 -Wall -DWIN32 $(DEFINES)
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
17
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
18 ifneq (sh.exe, $(SHELL))
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
19 DEL = rm
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20 else
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21 DEL = del
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22 endif
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
23
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
24 xxd.exe: xxd.c
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
25 $(CC) $(CFLAGS) -s -o xxd.exe xxd.c $(LIBS)
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
26
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
27 clean:
1b26748fc911 Add files aaded by patch 7.3.326.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
28 -$(DEL) xxd.exe