17 lines
401 B
Makefile
Raw Normal View History

2026-01-21 18:59:54 +08:00
# SPDX-License-Identifier: GPL-2.0
#
# Makefile for the linux sw_64-specific parts of the memory manager.
#
#ccflags-y := -Werror
2026-01-29 22:25:33 +08:00
obj-y := init.o fault.o physaddr.o mmap.o extable.o
2026-01-21 18:59:54 +08:00
obj-$(CONFIG_NUMA) += numa.o
2026-01-29 22:25:33 +08:00
ifeq ($(CONFIG_SUBARCH_C4),y)
obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage_c4.o
else
2026-01-21 18:59:54 +08:00
obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o
2026-01-29 22:25:33 +08:00
endif
2026-01-21 18:59:54 +08:00
obj-$(CONFIG_TRANSPARENT_HUGEPAGE) += thp.o