swh:1:snp:c2847dfd741eae21606027cf29250d1ebcd63fb4
Raw File
Tip revision: caca6a03d365883564885f2c1da3e88dcf65d139 authored by Linus Torvalds on 24 November 2011, 04:20:28 UTC
Linux 3.2-rc3
Tip revision: caca6a0
Makefile
#
# Makefile for the Linux M32R-specific parts of the memory manager.
#

ifdef CONFIG_MMU
obj-y	:= init.o fault.o mmu.o extable.o ioremap.o cache.o page.o
else
obj-y 	:= init.o fault-nommu.o mmu.o extable.o ioremap-nommu.o cache.o page.o
endif

obj-$(CONFIG_DISCONTIGMEM)	+= discontig.o

back to top