view src/xxd/Make_djg.mak @ 2261:06a7438b3ef7 vim73

Avoid compiler warnings on Mac 10.6.
author Bram Moolenaar <bram@vim.org>
date Sat, 12 Jun 2010 06:45:20 +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