build: mise a jour des modules a compiler

This commit is contained in:
Nicolas Hordé 2007-04-02 13:44:25 +00:00
parent 550d622a4a
commit c1e4dbd597
1 changed files with 13 additions and 1 deletions

View File

@ -1,6 +1,6 @@
FREEC=gcc -O2 -nostdinc -ffreestanding -fno-builtin -fomit-frame-pointer -Wall -I ../Include -c FREEC=gcc -O2 -nostdinc -ffreestanding -fno-builtin -fomit-frame-pointer -Wall -I ../Include -c
PARTIAL=ld -r -o PARTIAL=ld -r -o
OBJS= memory.o vga.o port.o video.o OBJS= memory.o vga.o port.o video.o idt.o timer.o keyboard.o types.o
all: makeall all: makeall
@ -11,6 +11,18 @@ libs.o:$(OBJS)
vga.o:vga.c vga.o:vga.c
$(FREEC) $^ $(FREEC) $^
types.o:types.c
$(FREEC) $^
idt.o:idt.c
$(FREEC) $^
keyboard.o:keyboard.c
$(FREEC) $^
timer.o:timer.c
$(FREEC) $^
video.o:video.c video.o:video.c
$(FREEC) $^ $(FREEC) $^