view src/xxd/Make_ming.mak @ 7602:a82b2d79e61b

commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 15 22:34:45 2016 +0100 patch 7.4.1100 Problem: Cygwin makefiles are unused. Solution: Remove them.
author Christian Brabandt <cb@256bit.org>
date Fri, 15 Jan 2016 22:45:04 +0100
parents 1b26748fc911
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