Fix makefile dependencies

This commit is contained in:
Nero 2019-09-21 15:26:03 +00:00
parent 7514bd27c3
commit e9b19ce989
1 changed files with 2 additions and 2 deletions

View File

@ -25,10 +25,10 @@ endif
default: kernel.rom
kernel.com: kernel/*.asm lib/*.inc
kernel.com: kernel/*.asm lib/*.asm
nasm -s -o $@ -l kernel.lst -I lib -I kernel kernel/main.asm
debug.rom: debug/*.asm lib/*.inc
debug.rom: debug/*.asm lib/*.asm
nasm -s -o $@ -I lib -I debug debug/main.asm && scripts/fix-rom.sh $@
boot/floppy.bs: boot/fatvbr.asm