Makefile 2.87 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3
#
# Makefile for the Linux filesystems.
#
4
# 14 Sep 2000, Christoph Hellwig <hch@infradead.org>
Linus Torvalds's avatar
Linus Torvalds committed
5 6 7
# Rewritten to use lists instead of if-statements.
# 

Brian Gerst's avatar
Brian Gerst committed
8
obj-y :=	open.o read_write.o file_table.o buffer.o \
Linus Torvalds's avatar
Linus Torvalds committed
9 10
		bio.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 \
Andrew Morton's avatar
Andrew Morton committed
11
		dcache.o inode.o attr.o bad_inode.o file.o dnotify.o \
12
		filesystems.o namespace.o seq_file.o xattr.o libfs.o \
Andrew Morton's avatar
Andrew Morton committed
13 14
		fs-writeback.o mpage.o direct-io.o aio.o

Sam Ravnborg's avatar
Sam Ravnborg committed
15 16
obj-$(CONFIG_EPOLL)		+= eventpoll.o
obj-$(CONFIG_COMPAT)		+= compat.o
Linus Torvalds's avatar
Linus Torvalds committed
17

Sam Ravnborg's avatar
Sam Ravnborg committed
18 19
nfsd-$(CONFIG_NFSD)		:= nfsctl.o
obj-y				+= $(nfsd-y) $(nfsd-m)
Alexander Viro's avatar
Alexander Viro committed
20

Linus Torvalds's avatar
Linus Torvalds committed
21 22 23 24 25 26 27 28
obj-$(CONFIG_BINFMT_AOUT)	+= binfmt_aout.o
obj-$(CONFIG_BINFMT_EM86)	+= binfmt_em86.o
obj-$(CONFIG_BINFMT_MISC)	+= binfmt_misc.o

# binfmt_script is always there
obj-y				+= binfmt_script.o

obj-$(CONFIG_BINFMT_ELF)	+= binfmt_elf.o
Matthew Wilcox's avatar
Matthew Wilcox committed
29
obj-$(CONFIG_BINFMT_SOM)	+= binfmt_som.o
30
obj-$(CONFIG_BINFMT_FLAT)	+= binfmt_flat.o
Linus Torvalds's avatar
Linus Torvalds committed
31

32
obj-$(CONFIG_FS_MBCACHE)	+= mbcache.o
33
obj-$(CONFIG_FS_POSIX_ACL)	+= posix_acl.o xattr_acl.o
34

35 36 37
obj-$(CONFIG_QUOTA)		+= dquot.o
obj-$(CONFIG_QFMT_V1)		+= quota_v1.o
obj-$(CONFIG_QFMT_V2)		+= quota_v2.o
Jan Kara's avatar
Jan Kara committed
38
obj-$(CONFIG_QUOTACTL)		+= quota.o
39

40 41
obj-$(CONFIG_PROC_FS)		+= proc/
obj-y				+= partitions/
Andrew Morton's avatar
Andrew Morton committed
42
obj-$(CONFIG_SYSFS)		+= sysfs/
Alexander Viro's avatar
Alexander Viro committed
43
obj-y				+= devpts/
Linus Torvalds's avatar
Linus Torvalds committed
44

John Levon's avatar
John Levon committed
45 46
obj-$(CONFIG_PROFILING)		+= dcookies.o
 
47
# Do not add any filesystems before this line
48
obj-$(CONFIG_REISERFS_FS)	+= reiserfs/
49 50 51 52 53
obj-$(CONFIG_EXT3_FS)		+= ext3/ # Before ext2 so root fs can be ext3
obj-$(CONFIG_JBD)		+= jbd/
obj-$(CONFIG_EXT2_FS)		+= ext2/
obj-$(CONFIG_CRAMFS)		+= cramfs/
obj-$(CONFIG_RAMFS)		+= ramfs/
54
obj-$(CONFIG_HUGETLBFS)		+= hugetlbfs/
55 56 57 58 59 60 61 62 63
obj-$(CONFIG_CODA_FS)		+= coda/
obj-$(CONFIG_MINIX_FS)		+= minix/
obj-$(CONFIG_FAT_FS)		+= fat/
obj-$(CONFIG_UMSDOS_FS)		+= umsdos/
obj-$(CONFIG_MSDOS_FS)		+= msdos/
obj-$(CONFIG_VFAT_FS)		+= vfat/
obj-$(CONFIG_BFS_FS)		+= bfs/
obj-$(CONFIG_ISO9660_FS)	+= isofs/
obj-$(CONFIG_DEVFS_FS)		+= devfs/
Andrew Morton's avatar
Andrew Morton committed
64
obj-$(CONFIG_HFSPLUS_FS)	+= hfsplus/ # Before hfs to find wrapped HFS+
65 66 67 68 69 70 71 72 73
obj-$(CONFIG_HFS_FS)		+= hfs/
obj-$(CONFIG_VXFS_FS)		+= freevxfs/
obj-$(CONFIG_NFS_FS)		+= nfs/
obj-$(CONFIG_EXPORTFS)		+= exportfs/
obj-$(CONFIG_NFSD)		+= nfsd/
obj-$(CONFIG_LOCKD)		+= lockd/
obj-$(CONFIG_NLS)		+= nls/
obj-$(CONFIG_SYSV_FS)		+= sysv/
obj-$(CONFIG_SMB_FS)		+= smbfs/
Sam Ravnborg's avatar
Sam Ravnborg committed
74
obj-$(CONFIG_CIFS)		+= cifs/
75 76 77 78 79 80 81 82 83 84 85 86 87
obj-$(CONFIG_NCP_FS)		+= ncpfs/
obj-$(CONFIG_HPFS_FS)		+= hpfs/
obj-$(CONFIG_NTFS_FS)		+= ntfs/
obj-$(CONFIG_UFS_FS)		+= ufs/
obj-$(CONFIG_EFS_FS)		+= efs/
obj-$(CONFIG_JFFS_FS)		+= jffs/
obj-$(CONFIG_JFFS2_FS)		+= jffs2/
obj-$(CONFIG_AFFS_FS)		+= affs/
obj-$(CONFIG_ROMFS_FS)		+= romfs/
obj-$(CONFIG_QNX4FS_FS)		+= qnx4/
obj-$(CONFIG_AUTOFS_FS)		+= autofs/
obj-$(CONFIG_AUTOFS4_FS)	+= autofs4/
obj-$(CONFIG_ADFS_FS)		+= adfs/
88
obj-$(CONFIG_UDF_FS)		+= udf/
89 90
obj-$(CONFIG_SUN_OPENPROMFS)	+= openpromfs/
obj-$(CONFIG_JFS_FS)		+= jfs/
91
obj-$(CONFIG_XFS_FS)		+= xfs/
David Howells's avatar
David Howells committed
92
obj-$(CONFIG_AFS_FS)		+= afs/
93
obj-$(CONFIG_BEFS_FS)		+= befs/