From 4d03b78533a9efd075379c3cf7de7eaa776cfc1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Hord=C3=A9?= Date: Wed, 14 Mar 2007 11:11:18 +0000 Subject: [PATCH] =?UTF-8?q?build:=20mise=20=C3=A0=20jour=20du=20code=20pou?= =?UTF-8?q?r=20compilation=20de=20disque.asm=20(DISQUE)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- noyau/MAKEFILE | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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