X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=Makefile;h=500acb6d360cea4a6909e521d84bbe8458f78669;hb=60068d8dc031615c486e458d0426c659f72cb182;hp=d03487663b0f0945c2dd1fff40fe4e359fac05a3;hpb=e5b5905eb3134a409638a5a20462000ef159e1e6;p=bootcensus diff --git a/Makefile b/Makefile index d034876..500acb6 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,10 @@ ifneq ($(shell uname -m), i386) ldarch = -m elf_i386 endif +floppy.img: $(bin) + dd if=/dev/zero of=$@ bs=512 count=2880 + dd if=$< of=$@ conv=notrunc + $(bin): $(elf) objcopy -O binary $< $@ @@ -41,4 +45,4 @@ cleandep: .PHONY: run run: $(bin) - qemu-system-i386 -fda $(bin) + qemu-system-i386 -fda floppy.img -serial file:serial.log