diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2014-12-16 21:21:46 +0100 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2014-12-16 21:21:46 +0100 |
commit | ab35e5fac02f11f0bd742020b112a09e5b1f2de5 (patch) | |
tree | c7b401662f8dabc1f9976cbd387a2b1abc32ac56 /kernel/Makefile | |
parent | bafc8298c68dc1a631ef818710311c01eccec137 (diff) | |
download | macroscope-ab35e5fac02f11f0bd742020b112a09e5b1f2de5.tar.gz macroscope-ab35e5fac02f11f0bd742020b112a09e5b1f2de5.zip |
Add simple hash table implementation.
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 5571543..a981c72 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -9,7 +9,7 @@ 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 \ +OBJ = lib/string.o lib/printf.o lib/slab_alloc.o lib/mutex.o lib/hashtbl.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 |