Added stubs for the kernel memory manager

This commit is contained in:
2022-12-28 23:04:09 +00:00
parent fac31086f5
commit e922a776c3
6 changed files with 58 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ ARCH_OBJ := $(addprefix $(BUILD_DIR)/,$(ARCH_C_FILES:.c=.o) $(ARCH_ASM_FILES:.S=
# Platform-independent kernel source files
####################################
KERNEL_SRC_DIRS := init kernel
KERNEL_SRC_DIRS := init kernel vm
KERNEL_C_FILES := $(foreach dir,$(KERNEL_SRC_DIRS),$(wildcard $(dir)/*.c))
KERNEL_OBJ := $(addprefix $(BUILD_DIR)/,$(KERNEL_C_FILES:.c=.o))