build: ajout de nouvelles compilations

This commit is contained in:
Nicolas Hordé 2007-04-02 13:04:21 +00:00
parent d03e3ce1ae
commit 2325a40fb5
1 changed files with 5 additions and 2 deletions

View File

@ -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