BOOTLOADER=./src/boot/bootloader.asm TARGET=./bin/boot.bin all: nasm -f bin $(BOOTLOADER) -o $(TARGET) clean: rm -f $(TARGET)