[PATCH] x86-64 - new memory map handling
[linux-2.6/history.git] / fs / Makefile
blob7f349ff168adc86ed7a1e16abb9a93573f4216b2
2 # Makefile for the Linux filesystems.
4 # 14 Sep 2000, Christoph Hellwig <hch@infradead.org>
5 # Rewritten to use lists instead of if-statements.
6 #
8 export-objs := open.o dcache.o buffer.o bio.o inode.o dquot.o mpage.o aio.o \
9 fcntl.o read_write.o
11 obj-y := open.o read_write.o devices.o file_table.o buffer.o \
12 bio.o super.o block_dev.o char_dev.o stat.o exec.o pipe.o \
13 namei.o fcntl.o ioctl.o readdir.o select.o fifo.o locks.o \
14 dcache.o inode.o attr.o bad_inode.o file.o iobuf.o dnotify.o \
15 filesystems.o namespace.o seq_file.o xattr.o libfs.o \
16 fs-writeback.o mpage.o direct-io.o aio.o
18 ifneq ($(CONFIG_NFSD),n)
19 ifneq ($(CONFIG_NFSD),)
20 obj-y += nfsctl.o
21 endif
22 endif
24 obj-$(CONFIG_BINFMT_AOUT) += binfmt_aout.o
25 obj-$(CONFIG_BINFMT_EM86) += binfmt_em86.o
26 obj-$(CONFIG_BINFMT_MISC) += binfmt_misc.o
28 # binfmt_script is always there
29 obj-y += binfmt_script.o
31 obj-$(CONFIG_BINFMT_ELF) += binfmt_elf.o
33 obj-$(CONFIG_QUOTA) += dquot.o
34 obj-$(CONFIG_QFMT_V1) += quota_v1.o
35 obj-$(CONFIG_QFMT_V2) += quota_v2.o
36 obj-$(CONFIG_QUOTACTL) += quota.o
38 obj-$(CONFIG_PROC_FS) += proc/
39 obj-y += partitions/
40 obj-y += driverfs/
41 obj-y += devpts/
43 # Do not add any filesystems before this line
44 obj-$(CONFIG_EXT3_FS) += ext3/ # Before ext2 so root fs can be ext3
45 obj-$(CONFIG_JBD) += jbd/
46 obj-$(CONFIG_EXT2_FS) += ext2/
47 obj-$(CONFIG_CRAMFS) += cramfs/
48 obj-$(CONFIG_RAMFS) += ramfs/
49 obj-$(CONFIG_CODA_FS) += coda/
50 obj-$(CONFIG_INTERMEZZO_FS) += intermezzo/
51 obj-$(CONFIG_MINIX_FS) += minix/
52 obj-$(CONFIG_FAT_FS) += fat/
53 obj-$(CONFIG_UMSDOS_FS) += umsdos/
54 obj-$(CONFIG_MSDOS_FS) += msdos/
55 obj-$(CONFIG_VFAT_FS) += vfat/
56 obj-$(CONFIG_BFS_FS) += bfs/
57 obj-$(CONFIG_ISO9660_FS) += isofs/
58 obj-$(CONFIG_DEVFS_FS) += devfs/
59 obj-$(CONFIG_HFS_FS) += hfs/
60 obj-$(CONFIG_VXFS_FS) += freevxfs/
61 obj-$(CONFIG_NFS_FS) += nfs/
62 obj-$(CONFIG_EXPORTFS) += exportfs/
63 obj-$(CONFIG_NFSD) += nfsd/
64 obj-$(CONFIG_LOCKD) += lockd/
65 obj-$(CONFIG_NLS) += nls/
66 obj-$(CONFIG_SYSV_FS) += sysv/
67 obj-$(CONFIG_SMB_FS) += smbfs/
68 obj-$(CONFIG_CIFS) += cifs/
69 obj-$(CONFIG_NCP_FS) += ncpfs/
70 obj-$(CONFIG_HPFS_FS) += hpfs/
71 obj-$(CONFIG_NTFS_FS) += ntfs/
72 obj-$(CONFIG_UFS_FS) += ufs/
73 obj-$(CONFIG_EFS_FS) += efs/
74 obj-$(CONFIG_JFFS_FS) += jffs/
75 obj-$(CONFIG_JFFS2_FS) += jffs2/
76 obj-$(CONFIG_AFFS_FS) += affs/
77 obj-$(CONFIG_ROMFS_FS) += romfs/
78 obj-$(CONFIG_QNX4FS_FS) += qnx4/
79 obj-$(CONFIG_UDF_FS) += udf/
80 obj-$(CONFIG_AUTOFS_FS) += autofs/
81 obj-$(CONFIG_AUTOFS4_FS) += autofs4/
82 obj-$(CONFIG_ADFS_FS) += adfs/
83 obj-$(CONFIG_REISERFS_FS) += reiserfs/
84 obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/
85 obj-$(CONFIG_JFS_FS) += jfs/
86 obj-$(CONFIG_XFS_FS) += xfs/
88 include $(TOPDIR)/Rules.make