Makefile (e8cdfb0509f48d44d95d68d4f42d8d71a9ba4acd) | Makefile (d4f7e513234019a005c4d33477189f2a4e53bb9c) |
---|---|
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 --- 28 unchanged lines hidden (view full) --- 37obj-$(CONFIG_DEBUG_FS) += $(debugfs-y) 38obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o 39obj-$(CONFIG_PMB) += pmb.o 40obj-$(CONFIG_NUMA) += numa.o 41obj-$(CONFIG_IOREMAP_FIXED) += ioremap_fixed.o 42obj-$(CONFIG_UNCACHED_MAPPING) += uncached.o 43obj-$(CONFIG_HAVE_SRAM_POOL) += sram.o 44 | 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 --- 28 unchanged lines hidden (view full) --- 37obj-$(CONFIG_DEBUG_FS) += $(debugfs-y) 38obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o 39obj-$(CONFIG_PMB) += pmb.o 40obj-$(CONFIG_NUMA) += numa.o 41obj-$(CONFIG_IOREMAP_FIXED) += ioremap_fixed.o 42obj-$(CONFIG_UNCACHED_MAPPING) += uncached.o 43obj-$(CONFIG_HAVE_SRAM_POOL) += sram.o 44 |
45GCOV_PROFILE_pmb.o := n 46 |
|
45# Special flags for fault_64.o. This puts restrictions on the number of 46# caller-save registers that the compiler can target when building this file. 47# This is required because the code is called from a context in entry.S where 48# very few registers have been saved in the exception handler (for speed 49# reasons). 50# The caller save registers that have been saved and which can be used are 51# r2,r3,r4,r5 : argument passing 52# r15, r18 : SP and LINK --- 18 unchanged lines hidden --- | 47# Special flags for fault_64.o. This puts restrictions on the number of 48# caller-save registers that the compiler can target when building this file. 49# This is required because the code is called from a context in entry.S where 50# very few registers have been saved in the exception handler (for speed 51# reasons). 52# The caller save registers that have been saved and which can be used are 53# r2,r3,r4,r5 : argument passing 54# r15, r18 : SP and LINK --- 18 unchanged lines hidden --- |