Files
xiuos/kernel/memory/Makefile
2021-04-28 17:49:18 +08:00

12 lines
201 B
Makefile

SRC_FILES := byte_manage.c
ifeq ($(CONFIG_KERNEL_MEMBLOCK),y)
SRC_FILES += gatherblock.c
endif
ifeq ($(CONFIG_TASK_ISOLATION),y)
SRC_FILES += isolation.c
endif
include $(KERNEL_ROOT)/compiler.mk