view src/xxd/Make_djg.mak @ 3090:6838fcfbd037

Added tag v7-3-316 for changeset 33c140e4664d
author Bram Moolenaar <bram@vim.org>
date Wed, 21 Sep 2011 13:40:17 +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