
NASM ?= nasm

%/:
	@mkdir -vp "$@"

bin/test.com: trans.asm bin/
	$(NASM) -fbin -o "$@" "$<"

clean:
	@$(RM) -v bin/test.com

