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
|
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
|
||||||
|
|
||||||
|
@ -12,6 +12,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) $^
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue