swh:1:snp:c2847dfd741eae21606027cf29250d1ebcd63fb4
Raw File
Tip revision: 18558cae0272f8fd9647e69d3fec1565a7949865 authored by Linus Torvalds on 14 February 2016, 21:05:20 UTC
Linux 4.5-rc4
Tip revision: 18558ca
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