Working i386 paging and liballoc

This commit is contained in:
2025-12-07 00:53:33 +01:00
commit de5350010b
75 changed files with 6716 additions and 0 deletions

14
kernel/libk/make.src Normal file
View File

@@ -0,0 +1,14 @@
dir_libk1 := $(patsubst %/,%,$(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
kernel_cflags += -isystem $(dir_libk1) \
-DPRINTF_INCLUDE_CONFIG_H=1
c_files += $(dir_libk1)/string.c \
$(dir_libk1)/printf.c \
$(dir_libk1)/putchar_.c \
$(dir_libk1)/bitmap.c
o_files += $(dir_libk1)/string.o \
$(dir_libk1)/printf.o \
$(dir_libk1)/putchar_.o \
$(dir_libk1)/bitmap.o