Mercurial > vim
view src/xxd/Make_ming.mak @ 17091:d30d399139ab v8.1.1545
patch 8.1.1545: when the screen is to small there is no message about that
commit https://github.com/vim/vim/commit/45aa07d3c126e887c614f8a4ebdb88aed673a9f1
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jun 15 18:20:38 2019 +0200
patch 8.1.1545: when the screen is to small there is no message about that
Problem: When the screen is to small there is no message about that.
(Daniel Hahler)
Solution: Do not use :cquit. (closes #4534)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 15 Jun 2019 18:30:07 +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