14 lines
148 B
Makefile
14 lines
148 B
Makefile
|
NASM = nasm
|
||
|
QEMU = qemu-system-i386
|
||
|
|
||
|
default: mon8086.bs
|
||
|
|
||
|
%.bs: %.asm
|
||
|
$(NASM) -o $@ $<
|
||
|
|
||
|
qemu: mon8086.bs
|
||
|
$(QEMU) -hda mon8086.bs
|
||
|
|
||
|
clean:
|
||
|
rm *.bs
|