build: mise à jour du code pour compilation de disque.asm (DISQUE)

This commit is contained in:
Nicolas Hordé 2007-03-14 11:11:18 +00:00
parent b0cf779a88
commit 4d03b78533
1 changed files with 7 additions and 5 deletions

View File

@ -3,12 +3,14 @@ lnk= elink
all: systeme.sys boot.bin
systeme.sys: video.obj systeme.obj
systeme.sys: video.obj disque.obj systeme.obj
$(lnk) systeme.obj systeme.sys
systeme.obj: ../lib/detect.lib ../lib/video.lib video.sys
systeme.obj: ..\lib\detect.lib ..\lib\video.lib video.sys disque.sys
$(asm) systeme.asm
disque.sys:
$(lnk) disque.obj disque.sys
video.sys:
$(lnk) video.obj video.sys
@ -16,12 +18,12 @@ video.sys:
boot.bin: boot.obj
$(lnk) boot.obj boot.bin /bs
detect.obj:
$(asm) detect.asm
video.obj:
$(asm) video.asm
disque.obj:
$(asm) disque.asm
boot.obj:
$(asm) boot.asm