This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
portland-os/makefile

12 lines
No EOL
269 B
Makefile

floppy: out bootloader
mkfs.fat -C -f 1 -F 12 -n "PORTLAND OS" -R 2 -S 512 out/floppy.img 1440
dd if=obj/bootloader.bin of=out/floppy.img bs=1 seek=62 conv=notrunc
bootloader: obj
nasm src/bootloader.bin -o obj/bootloader.bin
obj:
mkdir -p obj
out:
mkdir -p out