URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [fs/] [Makefile] - Rev 1774
Go to most recent revision | Compare with Previous | Blame | View Log
## Makefile for the Linux filesystems.## 14 Sep 2000, Christoph Hellwig <hch@infradead.org># Rewritten to use lists instead of if-statements.#O_TARGET := fs.oexport-objs := filesystems.o open.o dcache.o buffer.o dquot.omod-subdirs := nlsobj-y := open.o read_write.o devices.o file_table.o buffer.o \super.o block_dev.o char_dev.o stat.o exec.o pipe.o namei.o \fcntl.o ioctl.o readdir.o select.o fifo.o locks.o \dcache.o inode.o attr.o bad_inode.o file.o iobuf.o dnotify.o \filesystems.o namespace.o seq_file.o xattr.o quota.oobj-$(CONFIG_QUOTA) += dquot.o quota_v1.oobj-$(CONFIG_QFMT_V2) += quota_v2.osubdir-$(CONFIG_PROC_FS) += procsubdir-y += partitions# Do not add any filesystems before this linesubdir-$(CONFIG_EXT3_FS) += ext3 # Before ext2 so root fs can be ext3subdir-$(CONFIG_JBD) += jbdsubdir-$(CONFIG_EXT2_FS) += ext2subdir-$(CONFIG_CRAMFS) += cramfssubdir-$(CONFIG_RAMFS) += ramfssubdir-$(CONFIG_CODA_FS) += codasubdir-$(CONFIG_INTERMEZZO_FS) += intermezzosubdir-$(CONFIG_MINIX_FS) += minixsubdir-$(CONFIG_FAT_FS) += fatsubdir-$(CONFIG_UMSDOS_FS) += umsdossubdir-$(CONFIG_MSDOS_FS) += msdossubdir-$(CONFIG_VFAT_FS) += vfatsubdir-$(CONFIG_BFS_FS) += bfssubdir-$(CONFIG_ISO9660_FS) += isofssubdir-$(CONFIG_DEVFS_FS) += devfssubdir-$(CONFIG_HFSPLUS_FS) += hfsplus # Before hfs to find wrapped HFS+subdir-$(CONFIG_HFS_FS) += hfssubdir-$(CONFIG_VXFS_FS) += freevxfssubdir-$(CONFIG_NFS_FS) += nfssubdir-$(CONFIG_NFSD) += nfsdsubdir-$(CONFIG_LOCKD) += lockdsubdir-$(CONFIG_NLS) += nlssubdir-$(CONFIG_SYSV_FS) += sysvsubdir-$(CONFIG_SMB_FS) += smbfssubdir-$(CONFIG_NCP_FS) += ncpfssubdir-$(CONFIG_HPFS_FS) += hpfssubdir-$(CONFIG_NTFS_FS) += ntfssubdir-$(CONFIG_UFS_FS) += ufssubdir-$(CONFIG_EFS_FS) += efssubdir-$(CONFIG_JFFS_FS) += jffssubdir-$(CONFIG_JFFS2_FS) += jffs2subdir-$(CONFIG_AFFS_FS) += affssubdir-$(CONFIG_ROMFS_FS) += romfssubdir-$(CONFIG_QNX4FS_FS) += qnx4subdir-$(CONFIG_UDF_FS) += udfsubdir-$(CONFIG_AUTOFS_FS) += autofssubdir-$(CONFIG_AUTOFS4_FS) += autofs4subdir-$(CONFIG_ADFS_FS) += adfssubdir-$(CONFIG_REISERFS_FS) += reiserfssubdir-$(CONFIG_DEVPTS_FS) += devptssubdir-$(CONFIG_SUN_OPENPROMFS) += openpromfssubdir-$(CONFIG_BEFS_FS) += befssubdir-$(CONFIG_JFS_FS) += jfssubdir-$(CONFIG_XFS_FS) += xfsobj-$(CONFIG_BINFMT_AOUT) += binfmt_aout.oobj-$(CONFIG_BINFMT_EM86) += binfmt_em86.oobj-$(CONFIG_BINFMT_MISC) += binfmt_misc.o# binfmt_script is always thereobj-y += binfmt_script.oobj-$(CONFIG_BINFMT_ELF) += binfmt_elf.o# persistent filesystemsobj-y += $(join $(subdir-y),$(subdir-y:%=/%.o))include $(TOPDIR)/Rules.make
Go to most recent revision | Compare with Previous | Blame | View Log
