Makefile 415 字节
Newer Older
1 2 3 4
#
# Makefile for the MN10300-specific memory management code
#

5 6 7
cacheflush-y	:= cache.o
cacheflush-$(CONFIG_MN10300_CACHE_INV_BY_TAG) += cache-inv-by-tag.o
cacheflush-$(CONFIG_MN10300_CACHE_FLUSH_BY_TAG) += cache-flush-by-tag.o
8 9 10

cacheflush-$(CONFIG_MN10300_CACHE_DISABLED) := cache-disabled.o

11 12
obj-y := \
	init.o fault.o pgtable.o extable.o tlb-mn10300.o mmu-context.o \
13
	misalignment.o dma-alloc.o $(cacheflush-y)