#
# $Id$
#

PROG=   hellorom.bin
SRCS=   hellorom.asm
NOMAN=  defined

CLEANFILES+=	hellorom.lst

NASM=   nasm
#
# orphan-labels is really annoying.
#
NASMFLAGS=      -w+macro-params -w-orphan-labels -w+number-overflow
NASMFLAGS+=     -O0 -s -g
NASMFLAGS+=     -i ${.CURDIR}

hellorom.bin: hellorom.asm
	${NASM} ${NASMFLAGS} -f bin -o hellorom.bin \
				    -l hellorom.lst \
				       hellorom.asm 

.include <bsd.prog.mk>
