1 2 3 4 5 6 7
BOOTLOADER=./src/boot/bootloader.asm TARGET=./bin/boot.bin all: nasm -f bin $(BOOTLOADER) -o $(TARGET) clean: rm -f $(TARGET)