summaryrefslogtreecommitdiffstats
path: root/arch/mips/mm/Makefile
blob: c57b9cfa162a7a207de26b66320e541776c4a82d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
# Makefile for the Linux/MIPS-specific parts of the memory manager.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definition is now in the main makefile...

O_TARGET := mm.o
O_OBJS	 := extable.o init.o fault.o loadmmu.o

ifdef CONFIG_CPU_R3000
O_OBJS   += r2300.o
endif

ifdef CONFIG_CPU_R4300
O_OBJS   += r4xx0.o
endif

ifdef CONFIG_CPU_R4X00
O_OBJS   += r4xx0.o
endif

ifdef CONFIG_CPU_R5000
O_OBJS   += r4xx0.o
endif

ifdef CONFIG_CPU_R5432
O_OBJS   += r5432.o
endif

ifdef CONFIG_CPU_RM7000
O_OBJS   += rm7k.o
endif

ifdef CONFIG_CPU_NEVADA
O_OBJS   += r4xx0.o
endif

ifdef CONFIG_SGI_IP22
O_OBJS   += umap.o
endif

ifdef CONFIG_BAGET_MIPS
O_OBJS   += umap.o
endif

include $(TOPDIR)/Rules.make