# Makefile # Written by, Sohail Qayum Malik all : .\bootblok.img .\bootblok.img : .\bootblok.asm nasm -o bootblok.img -f bin bootblok.asm .\boot.img : .\boot.img nasm -o boot.img -f bin boot.asm lists : .\bootblok.asm nasm -l bootblok.lst bootblok.asm write : .\encode .\bootblok.img .\block.bin clean : del *.img del *.lst