2007-11-11 09:24:50 +01:00
|
|
|
#
|
|
|
|
# Makefile for the Linux SuperH-specific parts of the memory manager.
|
|
|
|
#
|
|
|
|
|
|
|
|
obj-y := init.o extable_64.o consistent.o
|
|
|
|
|
2007-11-11 10:43:33 +01:00
|
|
|
mmu-y := tlb-nommu.o pg-nommu.o
|
2007-11-20 09:01:55 +01:00
|
|
|
mmu-$(CONFIG_MMU) := fault_64.o ioremap_64.o tlb-flush_64.o
|
2007-11-11 10:43:33 +01:00
|
|
|
|
|
|
|
obj-y += $(mmu-y)
|
|
|
|
|
2007-11-11 09:24:50 +01:00
|
|
|
obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o
|
|
|
|
obj-$(CONFIG_PMB) += pmb.o
|
|
|
|
obj-$(CONFIG_NUMA) += numa.o
|
|
|
|
|
|
|
|
EXTRA_CFLAGS += -Werror
|