build: mise a jour des modules a compiler
This commit is contained in:
parent
550d622a4a
commit
c1e4dbd597
14
lib/makefile
14
lib/makefile
|
@ -1,6 +1,6 @@
|
|||
FREEC=gcc -O2 -nostdinc -ffreestanding -fno-builtin -fomit-frame-pointer -Wall -I ../Include -c
|
||||
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
|
||||
|
||||
|
@ -11,6 +11,18 @@ libs.o:$(OBJS)
|
|||
|
||||
vga.o:vga.c
|
||||
$(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
|
||||
$(FREEC) $^
|
||||
|
|
Loading…
Reference in New Issue