nor86/Makefile

16 lines
182 B
Makefile
Raw Normal View History

2021-06-28 18:33:23 +00:00
.SUFFIXES:
.SUFFIXES: .bin .asm
all: bootsector.bin
.asm.bin:
nasm -fbin -o $@ $<
clean:
rm -f *.bin *.img
run: bootsector.bin
qemu-system-i386 -fda $<
.PHONY: all clean run