view src/xxd/Make_ming.mak @ 29401:23f44007f65d v9.0.0043

patch 9.0.0043: insufficient testing for bracket commands Commit: https://github.com/vim/vim/commit/cf34434b5e840dda4a21cd9c0bee24e3e43a674d Author: zeertzjq <zeertzjq@outlook.com> Date: Wed Jul 6 12:57:31 2022 +0100 patch 9.0.0043: insufficient testing for bracket commands Problem: Insufficient testing for bracket commands. Solution: Add a few more tests. (closes https://github.com/vim/vim/issues/10668)
author Bram Moolenaar <Bram@vim.org>
date Wed, 06 Jul 2022 14:00:05 +0200
parents a82b2d79e61b
children
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