build: ajout de nouvelles compilations
This commit is contained in:
parent
d03e3ce1ae
commit
2325a40fb5
|
@ -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=-r
|
PARTIAL=-r
|
||||||
OBJS= string.o vgatxt.o
|
OBJS= memory.o port.o vgatxt.o
|
||||||
|
|
||||||
all: makeall
|
all: makeall
|
||||||
|
|
||||||
|
@ -10,7 +10,10 @@ makeall: $(OBJS)
|
||||||
vgatxt.o:vgatxt.c
|
vgatxt.o:vgatxt.c
|
||||||
$(FREEC) $^
|
$(FREEC) $^
|
||||||
|
|
||||||
string.o:string.c
|
memory.o:memory.c
|
||||||
|
$(FREEC) $^
|
||||||
|
|
||||||
|
port.o:port.c
|
||||||
$(FREEC) $^
|
$(FREEC) $^
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o
|
rm -f *.o
|
||||||
|
|
Loading…
Reference in New Issue