Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.29 40 lines 954 B view raw
1# 2# Makefile for the Linux SuperH-specific parts of the memory manager. 3# 4 5obj-y := init.o extable_32.o consistent.o mmap.o 6 7ifndef CONFIG_CACHE_OFF 8cache-$(CONFIG_CPU_SH2) := cache-sh2.o 9cache-$(CONFIG_CPU_SH2A) := cache-sh2a.o 10cache-$(CONFIG_CPU_SH3) := cache-sh3.o 11cache-$(CONFIG_CPU_SH4) := cache-sh4.o 12cache-$(CONFIG_SH7705_CACHE_32KB) += cache-sh7705.o 13endif 14 15obj-y += $(cache-y) 16 17mmu-y := tlb-nommu.o pg-nommu.o 18mmu-$(CONFIG_MMU) := fault_32.o tlbflush_32.o ioremap_32.o 19 20obj-y += $(mmu-y) 21obj-$(CONFIG_DEBUG_FS) += asids-debugfs.o 22 23ifdef CONFIG_DEBUG_FS 24obj-$(CONFIG_CPU_SH4) += cache-debugfs.o 25endif 26 27ifdef CONFIG_MMU 28obj-$(CONFIG_CPU_SH3) += tlb-sh3.o 29obj-$(CONFIG_CPU_SH4) += tlb-sh4.o 30ifndef CONFIG_CACHE_OFF 31obj-$(CONFIG_CPU_SH4) += pg-sh4.o 32obj-$(CONFIG_SH7705_CACHE_32KB) += pg-sh7705.o 33endif 34endif 35 36obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o 37obj-$(CONFIG_PMB) += pmb.o 38obj-$(CONFIG_NUMA) += numa.o 39 40EXTRA_CFLAGS += -Werror