view src/xxd/Make_djg.mak @ 8105:d6870d311f01

Added tag v7.4.1346 for changeset 1a03abdc4234281d004cded7d74f67d7aa82e9dc
author Christian Brabandt <cb@256bit.org>
date Thu, 18 Feb 2016 20:30:04 +0100
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