annotate src/xxd/Make_ming.mak @ 17358:d1ea88736ebd v8.1.1678

patch 8.1.1678: using popup_menu() does not scroll to show the selected line commit https://github.com/vim/vim/commit/a901a37bae9f4e2848d6d7ac7b0875d72f43e1eb Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 13 16:38:50 2019 +0200 patch 8.1.1678: using popup_menu() does not scroll to show the selected line Problem: When using popup_menu() does not scroll to show the selected line. Solution: Scroll the text. (Naruhiko Nishino, closes https://github.com/vim/vim/issues/4651)
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Jul 2019 16:45:04 +0200
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