diff options
Diffstat (limited to 'fs/gfs2/Makefile')
-rw-r--r-- | fs/gfs2/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/fs/gfs2/Makefile b/fs/gfs2/Makefile new file mode 100644 index 000000000000..b1bac4f199db --- /dev/null +++ b/fs/gfs2/Makefile | |||
@@ -0,0 +1,44 @@ | |||
1 | obj-$(CONFIG_GFS2_FS) += gfs2.o | ||
2 | gfs2-y := \ | ||
3 | acl.o \ | ||
4 | bits.o \ | ||
5 | bmap.o \ | ||
6 | daemon.o \ | ||
7 | dir.o \ | ||
8 | eaops.o \ | ||
9 | eattr.o \ | ||
10 | glock.o \ | ||
11 | glops.o \ | ||
12 | inode.o \ | ||
13 | jdata.o \ | ||
14 | lm.o \ | ||
15 | log.o \ | ||
16 | lops.o \ | ||
17 | locking.o \ | ||
18 | lvb.o \ | ||
19 | main.o \ | ||
20 | meta_io.o \ | ||
21 | mount.o \ | ||
22 | ondisk.o \ | ||
23 | ops_address.o \ | ||
24 | ops_dentry.o \ | ||
25 | ops_export.o \ | ||
26 | ops_file.o \ | ||
27 | ops_fstype.o \ | ||
28 | ops_inode.o \ | ||
29 | ops_super.o \ | ||
30 | ops_vm.o \ | ||
31 | page.o \ | ||
32 | quota.o \ | ||
33 | resize.o \ | ||
34 | recovery.o \ | ||
35 | rgrp.o \ | ||
36 | super.o \ | ||
37 | sys.o \ | ||
38 | trans.o \ | ||
39 | unlinked.o \ | ||
40 | util.o | ||
41 | |||
42 | obj-$(CONFIG_GFS2_LOCKING_NOLOCK) += locking/nolock/ | ||
43 | obj-$(CONFIG_GFS2_LOCKING_DLM) += locking/dlm/ | ||
44 | |||