Mercurial > vim
view src/xxd/Make_ming.mak @ 30924:ae3970cc28cb v9.0.0796
patch 9.0.0796: mapping test fails in some situations
Commit: https://github.com/vim/vim/commit/060b8384888ce91b1bc194101091d0f9f85d0490
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Oct 19 14:48:14 2022 +0100
patch 9.0.0796: mapping test fails in some situations
Problem: Mapping test fails in some situations.
Solution: Find the line with the verbose information.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 19 Oct 2022 16:00:03 +0200 |
parents | a82b2d79e61b |
children | 3835b742025e |
line wrap: on
line source
# The most simplistic Makefile, for MinGW and Cygwin gcc on MS-DOS ifndef USEDLL USEDLL = no endif ifeq (yes, $(USEDLL)) DEFINES = LIBS = -lc else DEFINES = LIBS = endif CC = gcc CFLAGS = -O2 -Wall -DWIN32 $(DEFINES) ifneq (sh.exe, $(SHELL)) DEL = rm else DEL = del endif xxd.exe: xxd.c $(CC) $(CFLAGS) -s -o xxd.exe xxd.c $(LIBS) clean: -$(DEL) xxd.exe