diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2014-12-16 22:35:09 +0100 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2014-12-16 22:35:09 +0100 |
commit | 8c247352543c50204314efeb988f9f59d84f5019 (patch) | |
tree | ef7d8775c9c51eddbc1e14e57e0e654b350efe7c /kernel/Makefile | |
parent | 0cafda1270f765e98c6ab5b298d28fd820b0e68c (diff) | |
download | kogata-8c247352543c50204314efeb988f9f59d84f5019.tar.gz kogata-8c247352543c50204314efeb988f9f59d84f5019.zip |
Add simple reference counted buffer structure.
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index a981c72..1764764 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -9,7 +9,8 @@ CFLAGS = -ffreestanding -O2 -std=gnu99 -Wall -Wextra -I . -I ./include -g -Wno-u LD = i586-elf-gcc LDFLAGS = -T linker.ld -ffreestanding -O2 -nostdlib -lgcc -Xlinker -Map=kernel.map -OBJ = lib/string.o lib/printf.o lib/slab_alloc.o lib/mutex.o lib/hashtbl.o \ +OBJ = lib/string.o lib/printf.o lib/slab_alloc.o lib/mutex.o \ + lib/hashtbl.o lib/buffer.o\ l0/loader.o l0/kmain.o l0/dbglog.o l0/sys.o \ l0/gdt.o l0/idt.o l0/interrupt.o l0/context_switch.o l0/thread.o \ l0/frame.o l0/paging.o l0/region.o l0/kmalloc.o |