Makefile
377 Bytes
TARGETS = boot_floppy.bin boot_usb.bin
boot_floppy.bin: boot_floppy.asm floppy.img
nasm boot_floppy.asm -f bin -o boot_floppy.bin
dd if=boot_floppy.bin of=floppy.img bs=512 count=1 conv=notrunc
boot_usb.bin: boot_usb.asm
nasm boot_usb.asm -f bin -o boot_usb.bin
floppy.img:
dd if=/dev/zero of=floppy.img bs=512 count=2880
clean:
rm -rf $(TARGETS)
all: $(TARGETS)