view src/xxd/Make_djg.mak @ 142:0ef5b70c3eaf v7.0045

updated for version 7.0045
author vimboss
date Thu, 27 Jan 2005 14:44:31 +0000
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