Mercurial > vim
view src/xxd/Make_ming.mak @ 25686:838a0108a92d v8.2.3379
patch 8.2.3379: crash when using NULL job
Commit: https://github.com/vim/vim/commit/271906bc067a8f25422016665001d2e44cf618e2
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 28 12:30:12 2021 +0200
patch 8.2.3379: crash when using NULL job
Problem: Crash when using NULL job.
Solution: Copy static string into buffer. (issue https://github.com/vim/vim/issues/8260)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 28 Aug 2021 12:45:06 +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