view src/xxd/Make_djg.mak @ 2367:76b7ba68a098 vim73

Fix build problem when fchown() not available. (Gary Johnson)
author Bram Moolenaar <bram@vim.org>
date Wed, 21 Jul 2010 20:31:07 +0200
parents 3fc0f57ecb91
children
line wrap: on
line source

# The most simplistic Makefile, for DJGPP on MS-DOS

CFLAGS = -O2 -Wall

xxd.exe: xxd.c
	gcc $(CFLAGS) -s -o xxd.exe xxd.c -lpc

clean:
	del xxd.exe