kernel: add initial object manager definitions

This commit is contained in:
2023-02-17 19:36:14 +00:00
parent ff19915466
commit ef10ed5cd2
6 changed files with 243 additions and 11 deletions

View File

@@ -19,7 +19,7 @@ include arch/$(ARCH)/config.mk
# Platform-independent kernel source files
####################################
KERNEL_SRC_DIRS := init kernel vm ds util
KERNEL_SRC_DIRS := init kernel vm ds util obj
KERNEL_C_FILES := $(foreach dir,$(KERNEL_SRC_DIRS),$(wildcard $(dir)/*.c))
KERNEL_OBJ := $(addprefix $(BUILD_DIR)/,$(KERNEL_C_FILES:.c=.o))