diff --git a/noyau/MAKEFILE b/noyau/MAKEFILE index b328844..10bc017 100644 --- a/noyau/MAKEFILE +++ b/noyau/MAKEFILE @@ -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