AS = nasm


all: boot.bin
	@echo boot.bin built


boot.bin: boot.asm
	@$(AS) -f bin -o boot.bin boot.asm


clean:
	@rm -f boot.bin
	