1# 2# Makefile for the linux ppc-specific parts of the memory manager. 3# 4# Note! Dependencies are done automagically by 'make dep', which also 5# removes any old dependencies. DON'T put your own dependencies here 6# unless it's something special (ie not a .c file). 7# 8# Note 2! The CFLAGS definition is now in the main makefile... 9 10USE_STANDARD_AS_RULE := true 11 12ifdef CONFIG_PPC64BRIDGE 13EXTRA_AFLAGS := -Wa,-mppc64bridge 14endif 15 16O_TARGET := mm.o 17obj-y := fault.o init.o mem_pieces.o extable.o \ 18 mmu_context.o pgtable.o 19 20obj-$(CONFIG_PPC_STD_MMU) += hashtable.o ppc_mmu.o tlb.o 21obj-$(CONFIG_40x) += 4xx_mmu.o 22obj-$(CONFIG_44x) += 44x_mmu.o 23obj-$(CONFIG_NOT_COHERENT_CACHE) += cachemap.o 24 25include $(TOPDIR)/Rules.make 26