9 lines
112 B
Makefile
Raw Normal View History

2020-04-17 17:44:23 +02:00
.PHONY: clean
all: bootsect.bin
bootsect.bin: bootsect.asm
nasm -f bin -o $@ $^
clean:
-rm -f bootsect.bin