#
# Makefile for the DOS target, using Turbo C v2.01
#

all: uhex.com

uhex.com: uhex.c file.c io.c
	tcc -mt -lt -f- -O -Z -d uhex.c file.c io.c
	upx --8086 -9 uhex.com

clean:
	del uhex.com
