Makefile (dfad83cb7193effb6c853a5c7337ac2274a2e2fc) | Makefile (08ee3a009f49ac160cf8df0b65aa7dc299c811b2) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for the Linux/MIPS-specific parts of the memory manager. 4# 5 6obj-y += cache.o 7obj-y += context.o 8obj-y += extable.o --- 8 unchanged lines hidden (view full) --- 17obj-y += tlb-funcs.o 18 19ifdef CONFIG_CPU_MICROMIPS 20obj-y += uasm-micromips.o 21else 22obj-y += uasm-mips.o 23endif 24 | 1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for the Linux/MIPS-specific parts of the memory manager. 4# 5 6obj-y += cache.o 7obj-y += context.o 8obj-y += extable.o --- 8 unchanged lines hidden (view full) --- 17obj-y += tlb-funcs.o 18 19ifdef CONFIG_CPU_MICROMIPS 20obj-y += uasm-micromips.o 21else 22obj-y += uasm-mips.o 23endif 24 |
25ifndef CONFIG_EVA 26obj-y += maccess.o 27endif 28 |
|
25obj-$(CONFIG_32BIT) += ioremap.o pgtable-32.o 26obj-$(CONFIG_64BIT) += ioremap64.o pgtable-64.o 27obj-$(CONFIG_HIGHMEM) += highmem.o 28obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o 29obj-$(CONFIG_DMA_NONCOHERENT) += dma-noncoherent.o 30 31obj-$(CONFIG_CPU_R3K_TLB) += tlb-r3k.o 32obj-$(CONFIG_CPU_R4K_CACHE_TLB) += c-r4k.o cex-gen.o tlb-r4k.o --- 12 unchanged lines hidden --- | 29obj-$(CONFIG_32BIT) += ioremap.o pgtable-32.o 30obj-$(CONFIG_64BIT) += ioremap64.o pgtable-64.o 31obj-$(CONFIG_HIGHMEM) += highmem.o 32obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o 33obj-$(CONFIG_DMA_NONCOHERENT) += dma-noncoherent.o 34 35obj-$(CONFIG_CPU_R3K_TLB) += tlb-r3k.o 36obj-$(CONFIG_CPU_R4K_CACHE_TLB) += c-r4k.o cex-gen.o tlb-r4k.o --- 12 unchanged lines hidden --- |