Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Makefile
Package: linux-2.4.20.tar.gz [view]
Upload User: jlfgdled
Upload Date: 2013-04-10
Package Size: 33168k
Code Size: 2k
Category:
Linux-Unix program
Development Platform:
Unix_Linux
- #
- # 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.65 2002/03/22 07:10:34 dwmw2 Exp $
- obj-y += chips/chipslink.o maps/mapslink.o
- devices/devlink.o nand/nandlink.o
- obj-m :=
- obj-n :=
- obj- :=
- O_TARGET := mtdlink.o
- export-objs := mtdcore.o mtdpart.o redboot.o bootldr.o afs.o mtdconcat.o
- list-multi := nftl.o
- mod-subdirs :=
- subdir-y := chips maps devices nand
- subdir-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.o
- obj-$(CONFIG_MTD_CONCAT) += mtdconcat.o
- obj-$(CONFIG_MTD_PARTITIONS) += mtdpart.o
- obj-$(CONFIG_MTD_REDBOOT_PARTS) += redboot.o
- obj-$(CONFIG_MTD_BOOTLDR_PARTS) += bootldr.o
- obj-$(CONFIG_MTD_AFS_PARTS) += afs.o
- # 'Users' - code which presents functionality to userspace.
- obj-$(CONFIG_MTD_CHAR) += mtdchar.o
- obj-$(CONFIG_MTD_BLOCK) += mtdblock.o
- obj-$(CONFIG_MTD_BLOCK_RO) += mtdblock_ro.o
- obj-$(CONFIG_FTL) += ftl.o
- obj-$(CONFIG_NFTL) += nftl.o
- nftl-objs := nftlcore.o nftlmount.o
- include $(TOPDIR)/Rules.make
- nftl.o: $(nftl-objs)
- $(LD) -r -o $@ $(nftl-objs)