#
# Makefile for small minesweeper
#

PRG = msweep

$(PRG).com:	$(PRG).asm
	nasm -f bin -l $(PRG).lst -o $@ $?
	@wc -c $(PRG).com

clean:
	rm -f $(PRG).lst $(PRG).o $(PRG).com
