makefile

来自「这是一个SIGMA方案的PMP播放器的UCLINUX程序,可播放DVD,VCD,」· 代码 · 共 66 行

TXT
66
字号
## Makefile for the memory technology device drivers.## 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 definitions are now inherited from the# parent makes..## $Id: Makefile,v 1.63 2001/06/13 09:43:07 dwmw2 Exp $obj-y           += chips/chipslink.o maps/mapslink.o \			devices/devlink.o nand/nandlink.oobj-m           :=obj-n           :=obj-            :=O_TARGET	:= mtdlink.oexport-objs	:= mtdcore.o mtdpart.o redboot.o bootldr.o afs.olist-multi	:= nftl.omod-subdirs	:= subdir-y	:= chips maps devices nandsubdir-m	:= $(subdir-y)#                       *** BIG UGLY NOTE ***## The shiny new inter_module_xxx has introduced yet another ugly link# order dependency, which I'd previously taken great care to avoid.# We now have to ensure that the chip drivers are initialised before the# map drivers, and that the doc200[01] drivers are initialised before# docprobe.## We'll hopefully merge the doc200[01] drivers and docprobe back into# a single driver some time soon, but the CFI drivers are going to have# to stay like that.## Urgh.# # dwmw2 21/11/0# Core functionality.obj-$(CONFIG_MTD)		+= mtdcore.oobj-$(CONFIG_MTD_PARTITIONS)	+= mtdpart.oobj-$(CONFIG_MTD_REDBOOT_PARTS) += redboot.oobj-$(CONFIG_MTD_BOOTLDR_PARTS) += bootldr.oobj-$(CONFIG_MTD_AFS_PARTS)	+= afs.o# 'Users' - code which presents functionality to userspace.obj-$(CONFIG_MTD_CHAR)		+= mtdchar.oobj-$(CONFIG_MTD_BLOCK)		+= mtdblock.oobj-$(CONFIG_MTD_BLOCK_RO)	+= mtdblock_ro.oobj-$(CONFIG_FTL)		+= ftl.oobj-$(CONFIG_NFTL)		+= nftl.onftl-objs	:= nftlcore.o nftlmount.oinclude $(TOPDIR)/Rules.makenftl.o: $(nftl-objs)	$(LD) -r -o $@ $(nftl-objs)

⌨️ 快捷键说明

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