From 2325a40fb5f1be4380e7976a896e39b5df540a3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Hord=C3=A9?= Date: Mon, 2 Apr 2007 13:04:21 +0000 Subject: [PATCH] build: ajout de nouvelles compilations --- lib/makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/makefile b/lib/makefile index 6348347..451ad18 100644 --- a/lib/makefile +++ b/lib/makefile @@ -1,6 +1,6 @@ FREEC=gcc -O2 -nostdinc -ffreestanding -fno-builtin -fomit-frame-pointer -Wall -I ../Include -c PARTIAL=-r -OBJS= string.o vgatxt.o +OBJS= memory.o port.o vgatxt.o all: makeall @@ -10,7 +10,10 @@ makeall: $(OBJS) vgatxt.o:vgatxt.c $(FREEC) $^ -string.o:string.c +memory.o:memory.c + $(FREEC) $^ + +port.o:port.c $(FREEC) $^ clean: rm -f *.o