view src/xxd/Make_ming.mak @ 6487:97b2ff29ae3a v7.4.571

updated for version 7.4.571 Problem: Can't build with tiny features. (Ike Devolder) Solution: Add #ifdef.
author Bram Moolenaar <bram@vim.org>
date Wed, 14 Jan 2015 14:08:44 +0100
parents 1b26748fc911
children a82b2d79e61b
line wrap: on
line source

# The most simplistic Makefile, for MinGW 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