view src/xxd/Make_ming.mak @ 21224:7509aea3a671 v8.2.1163

patch 8.2.1163: build error Commit: https://github.com/vim/vim/commit/6e13530ca03dd9cad245221177dd65f712211448 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 8 22:36:17 2020 +0200 patch 8.2.1163: build error Problem: Build error. Solution: Add missing change to globals.
author Bram Moolenaar <Bram@vim.org>
date Wed, 08 Jul 2020 22:45:03 +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