~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/fs/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /fs/Makefile (Version linux-6.12-rc7) and /fs/Makefile (Version linux-2.4.37.11)


  1 # SPDX-License-Identifier: GPL-2.0             << 
  2 #                                                   1 #
  3 # Makefile for the Linux filesystems.               2 # Makefile for the Linux filesystems.
  4 #                                                   3 #
  5 # 14 Sep 2000, Christoph Hellwig <hch@infradead      4 # 14 Sep 2000, Christoph Hellwig <hch@infradead.org>
  6 # Rewritten to use lists instead of if-stateme      5 # Rewritten to use lists instead of if-statements.
  7 #                                                   6 # 
  8                                                     7 
                                                   >>   8 O_TARGET := fs.o
  9                                                     9 
 10 obj-y :=        open.o read_write.o file_table !!  10 export-objs :=  filesystems.o open.o dcache.o buffer.o dquot.o
 11                 char_dev.o stat.o exec.o pipe. !!  11 mod-subdirs :=  nls
 12                 ioctl.o readdir.o select.o dca !!  12 
 13                 attr.o bad_inode.o file.o file !!  13 obj-y :=        open.o read_write.o devices.o file_table.o buffer.o \
 14                 seq_file.o xattr.o libfs.o fs- !!  14                 super.o block_dev.o char_dev.o stat.o exec.o pipe.o namei.o \
 15                 pnode.o splice.o sync.o utimes !!  15                 fcntl.o ioctl.o readdir.o select.o fifo.o locks.o \
 16                 stack.o fs_struct.o statfs.o f !!  16                 dcache.o inode.o attr.o bad_inode.o file.o iobuf.o dnotify.o \
 17                 fs_types.o fs_context.o fs_par !!  17                 filesystems.o namespace.o seq_file.o xattr.o quota.o
 18                 kernel_read_file.o mnt_idmappi !!  18 
 19                                                !!  19 obj-$(CONFIG_QUOTA)             += dquot.o quota_v1.o
 20 obj-$(CONFIG_BUFFER_HEAD)       += buffer.o mp !!  20 obj-$(CONFIG_QFMT_V2)           += quota_v2.o
 21 obj-$(CONFIG_PROC_FS)           += proc_namesp !!  21 
 22 obj-$(CONFIG_LEGACY_DIRECT_IO)  += direct-io.o !!  22 subdir-$(CONFIG_PROC_FS)        += proc
 23 obj-y                           += notify/     !!  23 subdir-y                        += partitions
 24 obj-$(CONFIG_EPOLL)             += eventpoll.o !!  24 
 25 obj-y                           += anon_inodes !!  25 # Do not add any filesystems before this line
 26 obj-$(CONFIG_SIGNALFD)          += signalfd.o  !!  26 subdir-$(CONFIG_EXT3_FS)        += ext3    # Before ext2 so root fs can be ext3
 27 obj-$(CONFIG_TIMERFD)           += timerfd.o   !!  27 subdir-$(CONFIG_JBD)            += jbd
 28 obj-$(CONFIG_EVENTFD)           += eventfd.o   !!  28 subdir-$(CONFIG_EXT2_FS)        += ext2
 29 obj-$(CONFIG_USERFAULTFD)       += userfaultfd !!  29 subdir-$(CONFIG_CRAMFS)         += cramfs
 30 obj-$(CONFIG_AIO)               += aio.o       !!  30 subdir-$(CONFIG_RAMFS)          += ramfs
 31 obj-$(CONFIG_FS_DAX)            += dax.o       !!  31 subdir-$(CONFIG_CODA_FS)        += coda
 32 obj-$(CONFIG_FS_ENCRYPTION)     += crypto/     !!  32 subdir-$(CONFIG_INTERMEZZO_FS)  += intermezzo
 33 obj-$(CONFIG_FS_VERITY)         += verity/     !!  33 subdir-$(CONFIG_MINIX_FS)       += minix
 34 obj-$(CONFIG_FILE_LOCKING)      += locks.o     !!  34 subdir-$(CONFIG_FAT_FS)         += fat
                                                   >>  35 subdir-$(CONFIG_UMSDOS_FS)      += umsdos
                                                   >>  36 subdir-$(CONFIG_MSDOS_FS)       += msdos
                                                   >>  37 subdir-$(CONFIG_VFAT_FS)        += vfat
                                                   >>  38 subdir-$(CONFIG_BFS_FS)         += bfs
                                                   >>  39 subdir-$(CONFIG_ISO9660_FS)     += isofs
                                                   >>  40 subdir-$(CONFIG_DEVFS_FS)       += devfs
                                                   >>  41 subdir-$(CONFIG_HFSPLUS_FS)     += hfsplus # Before hfs to find wrapped HFS+
                                                   >>  42 subdir-$(CONFIG_HFS_FS)         += hfs
                                                   >>  43 subdir-$(CONFIG_VXFS_FS)        += freevxfs
                                                   >>  44 subdir-$(CONFIG_NFS_FS)         += nfs
                                                   >>  45 subdir-$(CONFIG_NFSD)           += nfsd
                                                   >>  46 subdir-$(CONFIG_LOCKD)          += lockd
                                                   >>  47 subdir-$(CONFIG_NLS)            += nls
                                                   >>  48 subdir-$(CONFIG_SYSV_FS)        += sysv
                                                   >>  49 subdir-$(CONFIG_SMB_FS)         += smbfs
                                                   >>  50 subdir-$(CONFIG_NCP_FS)         += ncpfs
                                                   >>  51 subdir-$(CONFIG_HPFS_FS)        += hpfs
                                                   >>  52 subdir-$(CONFIG_NTFS_FS)        += ntfs
                                                   >>  53 subdir-$(CONFIG_UFS_FS)         += ufs
                                                   >>  54 subdir-$(CONFIG_EFS_FS)         += efs
                                                   >>  55 subdir-$(CONFIG_JFFS_FS)        += jffs
                                                   >>  56 subdir-$(CONFIG_JFFS2_FS)       += jffs2
                                                   >>  57 subdir-$(CONFIG_AFFS_FS)        += affs
                                                   >>  58 subdir-$(CONFIG_ROMFS_FS)       += romfs
                                                   >>  59 subdir-$(CONFIG_QNX4FS_FS)      += qnx4
                                                   >>  60 subdir-$(CONFIG_UDF_FS)         += udf
                                                   >>  61 subdir-$(CONFIG_AUTOFS_FS)      += autofs
                                                   >>  62 subdir-$(CONFIG_AUTOFS4_FS)     += autofs4
                                                   >>  63 subdir-$(CONFIG_ADFS_FS)        += adfs
                                                   >>  64 subdir-$(CONFIG_REISERFS_FS)    += reiserfs
                                                   >>  65 subdir-$(CONFIG_DEVPTS_FS)      += devpts
                                                   >>  66 subdir-$(CONFIG_SUN_OPENPROMFS) += openpromfs
                                                   >>  67 subdir-$(CONFIG_BEFS_FS)        += befs
                                                   >>  68 subdir-$(CONFIG_JFS_FS)         += jfs
                                                   >>  69 subdir-$(CONFIG_XFS_FS)         += xfs
                                                   >>  70 
                                                   >>  71 obj-$(CONFIG_BINFMT_AOUT)       += binfmt_aout.o
                                                   >>  72 obj-$(CONFIG_BINFMT_EM86)       += binfmt_em86.o
 35 obj-$(CONFIG_BINFMT_MISC)       += binfmt_misc     73 obj-$(CONFIG_BINFMT_MISC)       += binfmt_misc.o
 36 obj-$(CONFIG_BINFMT_SCRIPT)     += binfmt_scri !!  74 
                                                   >>  75 # binfmt_script is always there
                                                   >>  76 obj-y                           += binfmt_script.o
                                                   >>  77 
 37 obj-$(CONFIG_BINFMT_ELF)        += binfmt_elf.     78 obj-$(CONFIG_BINFMT_ELF)        += binfmt_elf.o
 38 obj-$(CONFIG_COMPAT_BINFMT_ELF) += compat_binf << 
 39 obj-$(CONFIG_BINFMT_ELF_FDPIC)  += binfmt_elf_ << 
 40 obj-$(CONFIG_BINFMT_FLAT)       += binfmt_flat << 
 41                                                << 
 42 obj-$(CONFIG_FS_STACK)          += backing-fil << 
 43 obj-$(CONFIG_FS_MBCACHE)        += mbcache.o   << 
 44 obj-$(CONFIG_FS_POSIX_ACL)      += posix_acl.o << 
 45 obj-$(CONFIG_NFS_COMMON)        += nfs_common/ << 
 46 obj-$(CONFIG_COREDUMP)          += coredump.o  << 
 47 obj-$(CONFIG_SYSCTL)            += drop_caches << 
 48                                                << 
 49 obj-$(CONFIG_FHANDLE)           += fhandle.o   << 
 50 obj-y                           += iomap/      << 
 51                                                << 
 52 obj-y                           += quota/      << 
 53                                                << 
 54 obj-$(CONFIG_PROC_FS)           += proc/       << 
 55 obj-$(CONFIG_KERNFS)            += kernfs/     << 
 56 obj-$(CONFIG_SYSFS)             += sysfs/      << 
 57 obj-$(CONFIG_CONFIGFS_FS)       += configfs/   << 
 58 obj-y                           += devpts/     << 
 59                                                    79 
 60 obj-$(CONFIG_DLM)               += dlm/        !!  80 # persistent filesystems
 61                                                !!  81 obj-y += $(join $(subdir-y),$(subdir-y:%=/%.o))
 62 # Do not add any filesystems before this line  !!  82 
 63 obj-$(CONFIG_NETFS_SUPPORT)     += netfs/      !!  83 
 64 obj-$(CONFIG_REISERFS_FS)       += reiserfs/   !!  84 include $(TOPDIR)/Rules.make
 65 obj-$(CONFIG_EXT4_FS)           += ext4/       << 
 66 # We place ext4 before ext2 so that clean ext3 << 
 67 # ext2 driver, which doesn't know about journa << 
 68 # by giving the rootfstype= parameter.         << 
 69 obj-$(CONFIG_EXT2_FS)           += ext2/       << 
 70 obj-$(CONFIG_JBD2)              += jbd2/       << 
 71 obj-$(CONFIG_CRAMFS)            += cramfs/     << 
 72 obj-$(CONFIG_SQUASHFS)          += squashfs/   << 
 73 obj-y                           += ramfs/      << 
 74 obj-$(CONFIG_HUGETLBFS)         += hugetlbfs/  << 
 75 obj-$(CONFIG_CODA_FS)           += coda/       << 
 76 obj-$(CONFIG_MINIX_FS)          += minix/      << 
 77 obj-$(CONFIG_FAT_FS)            += fat/        << 
 78 obj-$(CONFIG_EXFAT_FS)          += exfat/      << 
 79 obj-$(CONFIG_BFS_FS)            += bfs/        << 
 80 obj-$(CONFIG_ISO9660_FS)        += isofs/      << 
 81 obj-$(CONFIG_HFSPLUS_FS)        += hfsplus/ #  << 
 82 obj-$(CONFIG_HFS_FS)            += hfs/        << 
 83 obj-$(CONFIG_ECRYPT_FS)         += ecryptfs/   << 
 84 obj-$(CONFIG_VXFS_FS)           += freevxfs/   << 
 85 obj-$(CONFIG_NFS_FS)            += nfs/        << 
 86 obj-$(CONFIG_EXPORTFS)          += exportfs/   << 
 87 obj-$(CONFIG_NFSD)              += nfsd/       << 
 88 obj-$(CONFIG_LOCKD)             += lockd/      << 
 89 obj-$(CONFIG_NLS)               += nls/        << 
 90 obj-y                           += unicode/    << 
 91 obj-$(CONFIG_SYSV_FS)           += sysv/       << 
 92 obj-$(CONFIG_SMBFS)             += smb/        << 
 93 obj-$(CONFIG_HPFS_FS)           += hpfs/       << 
 94 obj-$(CONFIG_NTFS3_FS)          += ntfs3/      << 
 95 obj-$(CONFIG_UFS_FS)            += ufs/        << 
 96 obj-$(CONFIG_EFS_FS)            += efs/        << 
 97 obj-$(CONFIG_JFFS2_FS)          += jffs2/      << 
 98 obj-$(CONFIG_UBIFS_FS)          += ubifs/      << 
 99 obj-$(CONFIG_AFFS_FS)           += affs/       << 
100 obj-$(CONFIG_ROMFS_FS)          += romfs/      << 
101 obj-$(CONFIG_QNX4FS_FS)         += qnx4/       << 
102 obj-$(CONFIG_QNX6FS_FS)         += qnx6/       << 
103 obj-$(CONFIG_AUTOFS_FS)         += autofs/     << 
104 obj-$(CONFIG_ADFS_FS)           += adfs/       << 
105 obj-$(CONFIG_FUSE_FS)           += fuse/       << 
106 obj-$(CONFIG_OVERLAY_FS)        += overlayfs/  << 
107 obj-$(CONFIG_ORANGEFS_FS)       += orangefs/   << 
108 obj-$(CONFIG_UDF_FS)            += udf/        << 
109 obj-$(CONFIG_SUN_OPENPROMFS)    += openpromfs/ << 
110 obj-$(CONFIG_OMFS_FS)           += omfs/       << 
111 obj-$(CONFIG_JFS_FS)            += jfs/        << 
112 obj-$(CONFIG_XFS_FS)            += xfs/        << 
113 obj-$(CONFIG_9P_FS)             += 9p/         << 
114 obj-$(CONFIG_AFS_FS)            += afs/        << 
115 obj-$(CONFIG_NILFS2_FS)         += nilfs2/     << 
116 obj-$(CONFIG_BEFS_FS)           += befs/       << 
117 obj-y                           += hostfs/     << 
118 obj-$(CONFIG_CACHEFILES)        += cachefiles/ << 
119 obj-$(CONFIG_DEBUG_FS)          += debugfs/    << 
120 obj-$(CONFIG_TRACING)           += tracefs/    << 
121 obj-$(CONFIG_OCFS2_FS)          += ocfs2/      << 
122 obj-$(CONFIG_BTRFS_FS)          += btrfs/      << 
123 obj-$(CONFIG_GFS2_FS)           += gfs2/       << 
124 obj-$(CONFIG_F2FS_FS)           += f2fs/       << 
125 obj-$(CONFIG_BCACHEFS_FS)       += bcachefs/   << 
126 obj-$(CONFIG_CEPH_FS)           += ceph/       << 
127 obj-$(CONFIG_PSTORE)            += pstore/     << 
128 obj-$(CONFIG_EFIVAR_FS)         += efivarfs/   << 
129 obj-$(CONFIG_EROFS_FS)          += erofs/      << 
130 obj-$(CONFIG_VBOXSF_FS)         += vboxsf/     << 
131 obj-$(CONFIG_ZONEFS_FS)         += zonefs/     << 
132 obj-$(CONFIG_BPF_LSM)           += bpf_fs_kfun << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php