makefile
来自「linux 内核源代码」· 代码 · 共 38 行
TXT
38 行
## Makefile for the Linux SuperH-specific parts of the memory manager.#obj-y := init.o extable.o consistent.oifndef CONFIG_CACHE_OFFobj-$(CONFIG_CPU_SH2) += cache-sh2.oobj-$(CONFIG_CPU_SH3) += cache-sh3.oobj-$(CONFIG_CPU_SH4) += cache-sh4.oobj-$(CONFIG_SH7705_CACHE_32KB) += cache-sh7705.oendifmmu-y := tlb-nommu.o pg-nommu.ommu-$(CONFIG_MMU) := fault.o clear_page.o copy_page.o tlb-flush.o \ ioremap.oobj-y += $(mmu-y)ifdef CONFIG_DEBUG_FSobj-$(CONFIG_CPU_SH4) += cache-debugfs.oendififdef CONFIG_MMUobj-$(CONFIG_CPU_SH3) += tlb-sh3.oobj-$(CONFIG_CPU_SH4) += tlb-sh4.oifndef CONFIG_CACHE_OFFobj-$(CONFIG_CPU_SH4) += pg-sh4.oobj-$(CONFIG_SH7705_CACHE_32KB) += pg-sh7705.oendifendifobj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.oobj-$(CONFIG_32BIT) += pmb.oobj-$(CONFIG_NUMA) += numa.oEXTRA_CFLAGS += -Werror
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?