7 lines
108 B
Makefile
7 lines
108 B
Makefile
MM_SRCS := \
|
|
mm/heap.c \
|
|
mm/page_alloc.c
|
|
|
|
MM_OBJS := \
|
|
$(patsubst mm/%.c,$(BUILD_DIR)/mm/%.o,$(MM_SRCS))
|