9 lines
146 B
Makefile
9 lines
146 B
Makefile
disk.img: boot kernel
|
|
cat boot.bin kernel.bin > disk.img
|
|
|
|
boot.bin: boot.asm
|
|
nasm boot.asm -o $@
|
|
|
|
kernel.bin: kernel.asm
|
|
nasm kernel.asm -o $@
|