anattos/Makefile

16 lines
170 B
Makefile
Raw Permalink Normal View History

2021-08-14 07:22:53 +00:00
.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