📄 makefile
字号:
## 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.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.oifeq ($(CONFIG_QUOTA),y)obj-y += dquot.oelseobj-y += noquot.oendifsubdir-$(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_ZLIB_FS_INFLATE) += inflate_fssubdir-$(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_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_YAFFS_FS) += yaffssubdir-$(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) += openpromfsobj-$(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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -