blob: 2505f05bd6632d022cfff41660148f22073adee0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#
# Makefile for the Linux/MIPS-specific parts of the memory manager.
#
O_TARGET := mm.o
obj-y := extable.o init.o fault.o loadmmu.o
obj-$(CONFIG_CPU_R4300) += r4xx0.o
obj-$(CONFIG_CPU_R4X00) += r4xx0.o
obj-$(CONFIG_CPU_R5000) += r4xx0.o
obj-$(CONFIG_CPU_NEVADA) += r4xx0.o
obj-$(CONFIG_CPU_R10000) += andes.o
obj-$(CONFIG_SGI_IP22) += umap.o
O_OBJS := $(filter-out $(export-objs), $(obj-y))
include $(TOPDIR)/Rules.make
|