Fix makefile for updates

This commit is contained in:
Nero 2019-05-02 20:25:35 +00:00
parent e47d107b5f
commit 5516f05fc2
1 changed files with 2 additions and 2 deletions

View File

@ -19,10 +19,10 @@ endif
default: kernel.rom
kernel.rom: kernel/*.asm
kernel.rom: kernel/*.asm kernel/*.inc lib/*.inc
nasm -s -o $@ -I lib -I kernel kernel/main.asm && scripts/fix-rom.sh $@
boot/%.bin: boot/%.asm
boot/%.bin: boot/%.asm lib/*.inc
nasm -s -o $@ -I lib $<
fdimage.img: boot/floppy.bin kernel.rom