aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/Makefile
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2006-01-16 11:50:04 -0500
committerSteven Whitehouse <swhiteho@redhat.com>2006-01-16 11:50:04 -0500
commitb3b94faa5fe5968827ba0640ee9fba4b3e7f736e (patch)
tree70bd6068b050d2c46e338484f8b03fae4365c6c3 /fs/gfs2/Makefile
parentf7825dcf8c7301cfd3724eb40c5b443cc85ab7b8 (diff)
[GFS2] The core of GFS2
This patch contains all the core files for GFS2. Signed-off-by: David Teigland <teigland@redhat.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/Makefile')
-rw-r--r--fs/gfs2/Makefile44
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 @@
1obj-$(CONFIG_GFS2_FS) += gfs2.o
2gfs2-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
42obj-$(CONFIG_GFS2_LOCKING_NOLOCK) += locking/nolock/
43obj-$(CONFIG_GFS2_LOCKING_DLM) += locking/dlm/
44