⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 microwindows移植到S3C44B0的源码
💻
字号:
## Makefile for the linux arm-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...USE_STANDARD_AS_RULE := trueO_TARGET	:= mm.o# Object file lists.obj-y		:= init.oobj-m		:=obj-n		:=obj-		:=export-objs	:= proc-syms.o discontig.ocpu32-y		:= consistent.o fault-armv.o ioremap.o mm-armv.ocpu32-$(CONFIG_MODULES) += proc-syms.oobj-y		+= extable.o fault-common.oobj-$(CONFIG_CPU_26) += fault-armo.o mm-armo.o small_page.oobj-$(CONFIG_CPU_32) += $(cpu32-y)obj-$(CONFIG_DISCONTIGMEM) += discontig.oobj-$(MAGIC_ROM_PTR) += memory.o# Select the processor-specific filesp-$(CONFIG_CPU_26)	+= proc-arm2,3.op-$(CONFIG_CPU_ARM7V3)	+= proc-arm6,7.op-$(CONFIG_CPU_ARM610)	+= proc-arm6,7.op-$(CONFIG_CPU_ARM710)	+= proc-arm6,7.op-$(CONFIG_CPU_ARM720T)	+= proc-arm720.op-$(CONFIG_CPU_ARM740T) += proc-arm740.op-$(CONFIG_CPU_ARM920T)	+= proc-arm920.op-$(CONFIG_CPU_ARM940T)	+= proc-arm940.op-$(CONFIG_CPU_ARM1020)	+= proc-arm1020.op-$(CONFIG_CPU_SA110)	+= proc-sa110.op-$(CONFIG_CPU_SA1100)	+= proc-sa110.o# Integrator follows "new style"# Soon, others will do too, and we can get rid of thisMMMACH		:= mm-$(MACHINE).cifeq ($(MMMACH),$(wildcard $(MMMACH)))obj-$(CONFIG_CPU_32)	+= $(MMMACH:.c=.o)endifobj-y		+= $(sort $(p-y))include $(TOPDIR)/Rules.make# Special dependencies$(p-y):	$(TOPDIR)/include/asm/constants.h

⌨️ 快捷键说明

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