6063b86ec7891deb137c8bdf5ec2b46a6e4086ad
[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 .PHONY: run runbochs