2020-04-17 17:44:23 +02:00

9 lines
112 B
Makefile

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