.PHONY: clean
all: bootsect.bin

bootsect.bin: bootsect.asm
	nasm -f bin -o $@ $^
	
clean:
	-rm -f bootsect.bin
