2005-04-17 00:20:36 +02:00
|
|
|
# Makefile for the linux Sparc-specific parts of the memory manager.
|
|
|
|
#
|
|
|
|
|
2008-11-17 05:08:19 +01:00
|
|
|
asflags-y := -ansi
|
|
|
|
ccflags-y := -Werror
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2011-07-26 02:12:22 +02:00
|
|
|
obj-$(CONFIG_SPARC64) += ultra.o tlb.o tsb.o gup.o
|
2008-11-17 05:08:45 +01:00
|
|
|
obj-y += fault_$(BITS).o
|
2008-11-17 05:08:19 +01:00
|
|
|
obj-y += init_$(BITS).o
|
|
|
|
obj-$(CONFIG_SPARC32) += loadmmu.o
|
|
|
|
obj-y += generic_$(BITS).o
|
|
|
|
obj-$(CONFIG_SPARC32) += extable.o btfixup.o srmmu.o iommu.o io-unit.o
|
|
|
|
obj-$(CONFIG_SPARC32) += hypersparc.o viking.o tsunami.o swift.o
|
2009-08-17 02:13:31 +02:00
|
|
|
obj-$(CONFIG_SPARC_LEON)+= leon_mm.o
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-11-17 05:08:45 +01:00
|
|
|
# Only used by sparc64
|
|
|
|
obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o
|
|
|
|
|
2008-11-17 05:08:19 +01:00
|
|
|
# Only used by sparc32
|
|
|
|
obj-$(CONFIG_HIGHMEM) += highmem.o
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
ifdef CONFIG_SMP
|
2008-11-17 05:08:19 +01:00
|
|
|
obj-$(CONFIG_SPARC32) += nosun4c.o
|
2005-04-17 00:20:36 +02:00
|
|
|
else
|
2008-11-17 05:08:19 +01:00
|
|
|
obj-$(CONFIG_SPARC32) += sun4c.o
|
2005-04-17 00:20:36 +02:00
|
|
|
endif
|