mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-05-16 01:11:28 -07:00
9 lines
230 B
Makefile
9 lines
230 B
Makefile
IMG_SIZE = 1440k
|
|
BOOT_BIN = ../build/boot.bin
|
|
KERNEL_BIN = ../build/kernel.bin
|
|
DISK_IMG = ../build/disk.img
|
|
|
|
$(DISK_IMG): $(BOOT_BIN) $(KERNEL_BIN)
|
|
dd if=$(BOOT_BIN) of=$@ bs=512 seek=4
|
|
dd if=$(KERNEL_BIN) of=$@ bs=512 seek=200
|