Files
xiuos/Ubiquitous/XiUOS/kernel/memory/Makefile
2021-06-03 17:38:11 +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