15 lines
170 B
Makefile
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
|