build: mise à jour du code pour compilation de disque.asm (DISQUE)
This commit is contained in:
parent
b0cf779a88
commit
4d03b78533
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue