xnoe-os/Makefile
2021-08-28 07:06:31 +01:00

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 $@