anattos/Makefile
Juhani Krekelä b434e826fe First commit
2021-08-14 10:22:53 +03:00

15 lines
170 B
Makefile

.SUFFIXES:
.SUFFIXES: .asm .bin
all: anattos.bin
.asm.bin:
nasm -fbin -o $@ $<
clean:
rm -f *.bin
run: anattos.bin
qemu-system-i386 -fda $<
.PHONY: all clean run