makefile

来自「内核linux2.4.20,可跟rtlinux3.2打补丁 组成实时linux系」· 代码 · 共 29 行

TXT
29
字号
## Makefile for the Linux/MIPS-specific parts of the memory manager.## Note! Dependencies are done automagically by 'make dep', which also# removes any old dependencies. DON'T put your own dependencies here# unless it's something special (ie not a .c file).## Note 2! The CFLAGS definition is now in the main makefile...O_TARGET := mm.oexport-objs			+= ioremap.o umap.oobj-y				+= extable.o init.o ioremap.o fault.o loadmmu.oobj-$(CONFIG_CPU_R3000)		+= r2300.oobj-$(CONFIG_CPU_R4300)		+= r4xx0.oobj-$(CONFIG_CPU_R4X00)		+= r4xx0.oobj-$(CONFIG_CPU_VR41XX)	+= r4xx0.oobj-$(CONFIG_CPU_R5000)		+= r4xx0.oobj-$(CONFIG_CPU_NEVADA)	+= r4xx0.oobj-$(CONFIG_CPU_R5432)		+= r5432.oobj-$(CONFIG_CPU_RM7000)	+= rm7k.oobj-$(CONFIG_CPU_MIPS32)	+= mips32.oobj-$(CONFIG_CPU_MIPS64)	+= mips32.oobj-$(CONFIG_SGI_IP22)		+= umap.oobj-$(CONFIG_BAGET_MIPS)	+= umap.oinclude $(TOPDIR)/Rules.make

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?