summaryrefslogtreecommitdiff
path: root/Makefile
blob: 4df65dd35af454880eef3c028232c4e67d3592ea (plain)
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)