anattos/Makefile

16 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