Makefile (a0ab36689a36e583b6e736f1c99ac8c9aebdad59) | Makefile (4d35b93a66e9b87df20784fcf130d2e8760be53f) |
---|---|
1# 2# Makefile for the Linux SuperH-specific parts of the memory manager. 3# 4 5obj-y := alignment.o cache.o init.o consistent.o mmap.o 6 7cacheops-$(CONFIG_CPU_SH2) := cache-sh2.o 8cacheops-$(CONFIG_CPU_SH2A) := cache-sh2a.o --- 21 unchanged lines hidden (view full) --- 30tlb-$(CONFIG_CPU_SH5) := tlb-sh5.o 31tlb-$(CONFIG_CPU_HAS_PTEAEX) := tlb-pteaex.o 32obj-y += $(tlb-y) 33endif 34 35obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o 36obj-$(CONFIG_PMB) += pmb.o 37obj-$(CONFIG_NUMA) += numa.o | 1# 2# Makefile for the Linux SuperH-specific parts of the memory manager. 3# 4 5obj-y := alignment.o cache.o init.o consistent.o mmap.o 6 7cacheops-$(CONFIG_CPU_SH2) := cache-sh2.o 8cacheops-$(CONFIG_CPU_SH2A) := cache-sh2a.o --- 21 unchanged lines hidden (view full) --- 30tlb-$(CONFIG_CPU_SH5) := tlb-sh5.o 31tlb-$(CONFIG_CPU_HAS_PTEAEX) := tlb-pteaex.o 32obj-y += $(tlb-y) 33endif 34 35obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o 36obj-$(CONFIG_PMB) += pmb.o 37obj-$(CONFIG_NUMA) += numa.o |
38obj-$(CONFIG_IOREMAP_FIXED) += ioremap_fixed.o |
|
38 39# Special flags for fault_64.o. This puts restrictions on the number of 40# caller-save registers that the compiler can target when building this file. 41# This is required because the code is called from a context in entry.S where 42# very few registers have been saved in the exception handler (for speed 43# reasons). 44# The caller save registers that have been saved and which can be used are 45# r2,r3,r4,r5 : argument passing --- 19 unchanged lines hidden --- | 39 40# Special flags for fault_64.o. This puts restrictions on the number of 41# caller-save registers that the compiler can target when building this file. 42# This is required because the code is called from a context in entry.S where 43# very few registers have been saved in the exception handler (for speed 44# reasons). 45# The caller save registers that have been saved and which can be used are 46# r2,r3,r4,r5 : argument passing --- 19 unchanged lines hidden --- |