diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /fs/Makefile |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'fs/Makefile')
-rw-r--r-- | fs/Makefile | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/fs/Makefile b/fs/Makefile new file mode 100644 index 000000000000..443f2bc56ccf --- /dev/null +++ b/fs/Makefile | |||
@@ -0,0 +1,97 @@ | |||
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 | |||
8 | obj-y := open.o read_write.o file_table.o buffer.o bio.o super.o \ | ||
9 | block_dev.o char_dev.o stat.o exec.o pipe.o namei.o fcntl.o \ | ||
10 | ioctl.o readdir.o select.o fifo.o locks.o dcache.o inode.o \ | ||
11 | attr.o bad_inode.o file.o filesystems.o namespace.o aio.o \ | ||
12 | seq_file.o xattr.o libfs.o fs-writeback.o mpage.o direct-io.o \ | ||
13 | |||
14 | obj-$(CONFIG_EPOLL) += eventpoll.o | ||
15 | obj-$(CONFIG_COMPAT) += compat.o | ||
16 | |||
17 | nfsd-$(CONFIG_NFSD) := nfsctl.o | ||
18 | obj-y += $(nfsd-y) $(nfsd-m) | ||
19 | |||
20 | obj-$(CONFIG_BINFMT_AOUT) += binfmt_aout.o | ||
21 | obj-$(CONFIG_BINFMT_EM86) += binfmt_em86.o | ||
22 | obj-$(CONFIG_BINFMT_MISC) += binfmt_misc.o | ||
23 | |||
24 | # binfmt_script is always there | ||
25 | obj-y += binfmt_script.o | ||
26 | |||
27 | obj-$(CONFIG_BINFMT_ELF) += binfmt_elf.o | ||
28 | obj-$(CONFIG_BINFMT_ELF_FDPIC) += binfmt_elf_fdpic.o | ||
29 | obj-$(CONFIG_BINFMT_SOM) += binfmt_som.o | ||
30 | obj-$(CONFIG_BINFMT_FLAT) += binfmt_flat.o | ||
31 | |||
32 | obj-$(CONFIG_FS_MBCACHE) += mbcache.o | ||
33 | obj-$(CONFIG_FS_POSIX_ACL) += posix_acl.o xattr_acl.o | ||
34 | |||
35 | obj-$(CONFIG_QUOTA) += dquot.o | ||
36 | obj-$(CONFIG_QFMT_V1) += quota_v1.o | ||
37 | obj-$(CONFIG_QFMT_V2) += quota_v2.o | ||
38 | obj-$(CONFIG_QUOTACTL) += quota.o | ||
39 | |||
40 | obj-$(CONFIG_DNOTIFY) += dnotify.o | ||
41 | |||
42 | obj-$(CONFIG_PROC_FS) += proc/ | ||
43 | obj-y += partitions/ | ||
44 | obj-$(CONFIG_SYSFS) += sysfs/ | ||
45 | obj-y += devpts/ | ||
46 | |||
47 | obj-$(CONFIG_PROFILING) += dcookies.o | ||
48 | |||
49 | # Do not add any filesystems before this line | ||
50 | obj-$(CONFIG_REISERFS_FS) += reiserfs/ | ||
51 | obj-$(CONFIG_EXT3_FS) += ext3/ # Before ext2 so root fs can be ext3 | ||
52 | obj-$(CONFIG_JBD) += jbd/ | ||
53 | obj-$(CONFIG_EXT2_FS) += ext2/ | ||
54 | obj-$(CONFIG_CRAMFS) += cramfs/ | ||
55 | obj-$(CONFIG_RAMFS) += ramfs/ | ||
56 | obj-$(CONFIG_HUGETLBFS) += hugetlbfs/ | ||
57 | obj-$(CONFIG_CODA_FS) += coda/ | ||
58 | obj-$(CONFIG_MINIX_FS) += minix/ | ||
59 | obj-$(CONFIG_FAT_FS) += fat/ | ||
60 | obj-$(CONFIG_MSDOS_FS) += msdos/ | ||
61 | obj-$(CONFIG_VFAT_FS) += vfat/ | ||
62 | obj-$(CONFIG_BFS_FS) += bfs/ | ||
63 | obj-$(CONFIG_ISO9660_FS) += isofs/ | ||
64 | obj-$(CONFIG_DEVFS_FS) += devfs/ | ||
65 | obj-$(CONFIG_HFSPLUS_FS) += hfsplus/ # Before hfs to find wrapped HFS+ | ||
66 | obj-$(CONFIG_HFS_FS) += hfs/ | ||
67 | obj-$(CONFIG_VXFS_FS) += freevxfs/ | ||
68 | obj-$(CONFIG_NFS_FS) += nfs/ | ||
69 | obj-$(CONFIG_EXPORTFS) += exportfs/ | ||
70 | obj-$(CONFIG_NFSD) += nfsd/ | ||
71 | obj-$(CONFIG_LOCKD) += lockd/ | ||
72 | obj-$(CONFIG_NLS) += nls/ | ||
73 | obj-$(CONFIG_SYSV_FS) += sysv/ | ||
74 | obj-$(CONFIG_SMB_FS) += smbfs/ | ||
75 | obj-$(CONFIG_CIFS) += cifs/ | ||
76 | obj-$(CONFIG_NCP_FS) += ncpfs/ | ||
77 | obj-$(CONFIG_HPFS_FS) += hpfs/ | ||
78 | obj-$(CONFIG_NTFS_FS) += ntfs/ | ||
79 | obj-$(CONFIG_UFS_FS) += ufs/ | ||
80 | obj-$(CONFIG_EFS_FS) += efs/ | ||
81 | obj-$(CONFIG_JFFS_FS) += jffs/ | ||
82 | obj-$(CONFIG_JFFS2_FS) += jffs2/ | ||
83 | obj-$(CONFIG_AFFS_FS) += affs/ | ||
84 | obj-$(CONFIG_ROMFS_FS) += romfs/ | ||
85 | obj-$(CONFIG_QNX4FS_FS) += qnx4/ | ||
86 | obj-$(CONFIG_AUTOFS_FS) += autofs/ | ||
87 | obj-$(CONFIG_AUTOFS4_FS) += autofs4/ | ||
88 | obj-$(CONFIG_ADFS_FS) += adfs/ | ||
89 | obj-$(CONFIG_UDF_FS) += udf/ | ||
90 | obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/ | ||
91 | obj-$(CONFIG_JFS_FS) += jfs/ | ||
92 | obj-$(CONFIG_XFS_FS) += xfs/ | ||
93 | obj-$(CONFIG_AFS_FS) += afs/ | ||
94 | obj-$(CONFIG_BEFS_FS) += befs/ | ||
95 | obj-$(CONFIG_HOSTFS) += hostfs/ | ||
96 | obj-$(CONFIG_HPPFS) += hppfs/ | ||
97 | obj-$(CONFIG_DEBUG_FS) += debugfs/ | ||