]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/Makefile
Squashfs: header files
[net-next-2.6.git] / fs / Makefile
CommitLineData
1da177e4
LT
1#
2# Makefile for the Linux filesystems.
3#
4# 14 Sep 2000, Christoph Hellwig <hch@infradead.org>
5# Rewritten to use lists instead of if-statements.
6#
7
9361401e
DH
8obj-y := open.o read_write.o file_table.o super.o \
9 char_dev.o stat.o exec.o pipe.o namei.o fcntl.o \
bfcd17a6 10 ioctl.o readdir.o select.o fifo.o dcache.o inode.o \
ebf3f09c 11 attr.o bad_inode.o file.o filesystems.o namespace.o \
9361401e 12 seq_file.o xattr.o libfs.o fs-writeback.o \
42cf1193
JJS
13 pnode.o drop_caches.o splice.o sync.o utimes.o \
14 stack.o
9361401e
DH
15
16ifeq ($(CONFIG_BLOCK),y)
17obj-y += buffer.o bio.o block_dev.o direct-io.o mpage.o ioprio.o
18else
19obj-y += no-block.o
20endif
1da177e4 21
7ba1ba12 22obj-$(CONFIG_BLK_DEV_INTEGRITY) += bio-integrity.o
272eb014 23obj-y += notify/
1da177e4 24obj-$(CONFIG_EPOLL) += eventpoll.o
5dc8bf81 25obj-$(CONFIG_ANON_INODES) += anon_inodes.o
fba2afaa 26obj-$(CONFIG_SIGNALFD) += signalfd.o
b215e283 27obj-$(CONFIG_TIMERFD) += timerfd.o
e1ad7468 28obj-$(CONFIG_EVENTFD) += eventfd.o
ebf3f09c 29obj-$(CONFIG_AIO) += aio.o
bfcd17a6 30obj-$(CONFIG_FILE_LOCKING) += locks.o
e6a6d2ef 31obj-$(CONFIG_COMPAT) += compat.o compat_ioctl.o
1da177e4
LT
32
33nfsd-$(CONFIG_NFSD) := nfsctl.o
34obj-y += $(nfsd-y) $(nfsd-m)
35
36obj-$(CONFIG_BINFMT_AOUT) += binfmt_aout.o
37obj-$(CONFIG_BINFMT_EM86) += binfmt_em86.o
38obj-$(CONFIG_BINFMT_MISC) += binfmt_misc.o
39
40# binfmt_script is always there
41obj-y += binfmt_script.o
42
43obj-$(CONFIG_BINFMT_ELF) += binfmt_elf.o
b9d36d5d 44obj-$(CONFIG_COMPAT_BINFMT_ELF) += compat_binfmt_elf.o
1da177e4
LT
45obj-$(CONFIG_BINFMT_ELF_FDPIC) += binfmt_elf_fdpic.o
46obj-$(CONFIG_BINFMT_SOM) += binfmt_som.o
47obj-$(CONFIG_BINFMT_FLAT) += binfmt_flat.o
48
49obj-$(CONFIG_FS_MBCACHE) += mbcache.o
50obj-$(CONFIG_FS_POSIX_ACL) += posix_acl.o xattr_acl.o
a257cdd0 51obj-$(CONFIG_NFS_COMMON) += nfs_common/
f0c8bd16 52obj-$(CONFIG_GENERIC_ACL) += generic_acl.o
1da177e4
LT
53
54obj-$(CONFIG_QUOTA) += dquot.o
55obj-$(CONFIG_QFMT_V1) += quota_v1.o
56obj-$(CONFIG_QFMT_V2) += quota_v2.o
57obj-$(CONFIG_QUOTACTL) += quota.o
58
1da177e4
LT
59obj-$(CONFIG_PROC_FS) += proc/
60obj-y += partitions/
61obj-$(CONFIG_SYSFS) += sysfs/
cef0893d 62obj-$(CONFIG_CONFIGFS_FS) += configfs/
1da177e4
LT
63obj-y += devpts/
64
65obj-$(CONFIG_PROFILING) += dcookies.o
e7fd4179 66obj-$(CONFIG_DLM) += dlm/
1da177e4
LT
67
68# Do not add any filesystems before this line
69obj-$(CONFIG_REISERFS_FS) += reiserfs/
70obj-$(CONFIG_EXT3_FS) += ext3/ # Before ext2 so root fs can be ext3
cab893d9 71obj-$(CONFIG_EXT4_FS) += ext4/ # Before ext2 so root fs can be ext4
1da177e4 72obj-$(CONFIG_JBD) += jbd/
dab291af 73obj-$(CONFIG_JBD2) += jbd2/
1da177e4
LT
74obj-$(CONFIG_EXT2_FS) += ext2/
75obj-$(CONFIG_CRAMFS) += cramfs/
8e3f715a 76obj-y += ramfs/
1da177e4
LT
77obj-$(CONFIG_HUGETLBFS) += hugetlbfs/
78obj-$(CONFIG_CODA_FS) += coda/
79obj-$(CONFIG_MINIX_FS) += minix/
80obj-$(CONFIG_FAT_FS) += fat/
1da177e4
LT
81obj-$(CONFIG_BFS_FS) += bfs/
82obj-$(CONFIG_ISO9660_FS) += isofs/
1da177e4
LT
83obj-$(CONFIG_HFSPLUS_FS) += hfsplus/ # Before hfs to find wrapped HFS+
84obj-$(CONFIG_HFS_FS) += hfs/
237fead6 85obj-$(CONFIG_ECRYPT_FS) += ecryptfs/
1da177e4
LT
86obj-$(CONFIG_VXFS_FS) += freevxfs/
87obj-$(CONFIG_NFS_FS) += nfs/
88obj-$(CONFIG_EXPORTFS) += exportfs/
89obj-$(CONFIG_NFSD) += nfsd/
90obj-$(CONFIG_LOCKD) += lockd/
91obj-$(CONFIG_NLS) += nls/
92obj-$(CONFIG_SYSV_FS) += sysv/
93obj-$(CONFIG_SMB_FS) += smbfs/
94obj-$(CONFIG_CIFS) += cifs/
95obj-$(CONFIG_NCP_FS) += ncpfs/
96obj-$(CONFIG_HPFS_FS) += hpfs/
97obj-$(CONFIG_NTFS_FS) += ntfs/
98obj-$(CONFIG_UFS_FS) += ufs/
99obj-$(CONFIG_EFS_FS) += efs/
1da177e4 100obj-$(CONFIG_JFFS2_FS) += jffs2/
0d7eff87 101obj-$(CONFIG_UBIFS_FS) += ubifs/
1da177e4
LT
102obj-$(CONFIG_AFFS_FS) += affs/
103obj-$(CONFIG_ROMFS_FS) += romfs/
104obj-$(CONFIG_QNX4FS_FS) += qnx4/
105obj-$(CONFIG_AUTOFS_FS) += autofs/
106obj-$(CONFIG_AUTOFS4_FS) += autofs4/
107obj-$(CONFIG_ADFS_FS) += adfs/
04578f17 108obj-$(CONFIG_FUSE_FS) += fuse/
1da177e4
LT
109obj-$(CONFIG_UDF_FS) += udf/
110obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/
63ca8ce2 111obj-$(CONFIG_OMFS_FS) += omfs/
1da177e4
LT
112obj-$(CONFIG_JFS_FS) += jfs/
113obj-$(CONFIG_XFS_FS) += xfs/
93fa58cb 114obj-$(CONFIG_9P_FS) += 9p/
1da177e4
LT
115obj-$(CONFIG_AFS_FS) += afs/
116obj-$(CONFIG_BEFS_FS) += befs/
117obj-$(CONFIG_HOSTFS) += hostfs/
118obj-$(CONFIG_HPPFS) += hppfs/
119obj-$(CONFIG_DEBUG_FS) += debugfs/
b4e40a51 120obj-$(CONFIG_OCFS2_FS) += ocfs2/
f7825dcf 121obj-$(CONFIG_GFS2_FS) += gfs2/