Add make dis rule
[pyrit.git] / Makefile
1 all:    pyrit.img
2
3 pyrit.img: pyrit.asm
4         nasm -f bin -o $@ $<
5
6 clean:
7         rm -f *~ pyrit.img
8
9 run: pyrit.img
10         qemu-system-i386 -fda $<
11
12 runbochs: pyrit.img
13         bochs -q 'boot:a' 'floppya: 1_44=$<, status=inserted'
14
15 dis: pyrit.img
16         objdump -D -b binary -m i8086 $<
17
18 .PHONY: run runbochs