diff options
author | Chris Mason <chris.mason@oracle.com> | 2007-03-22 12:13:20 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@hera.kernel.org> | 2007-03-22 12:13:20 -0400 |
commit | e20d96d64f9cf9288ffecc9ad4714e91c3b97ca8 (patch) | |
tree | fbe07d48bc7997226075169118ffa2a2e63f5d51 /fs/btrfs/Makefile | |
parent | 2e635a278354a1a7951e16cfea4c247d6d0e7c99 (diff) |
Mountable btrfs, with readdir
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/Makefile')
-rw-r--r-- | fs/btrfs/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/btrfs/Makefile b/fs/btrfs/Makefile index 99e45a54ebd6..1a0fb7422393 100644 --- a/fs/btrfs/Makefile +++ b/fs/btrfs/Makefile | |||
@@ -2,7 +2,8 @@ ifneq ($(KERNELRELEASE),) | |||
2 | # kbuild part of makefile | 2 | # kbuild part of makefile |
3 | 3 | ||
4 | obj-m := btrfs.o | 4 | obj-m := btrfs.o |
5 | btrfs-y := super.o | 5 | btrfs-y := super.o ctree.o extent-tree.o print-tree.o root-tree.o dir-item.o \ |
6 | hash.o file-item.o inode-item.o inode-map.o disk-io.o | ||
6 | 7 | ||
7 | #btrfs-y := ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o \ | 8 | #btrfs-y := ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o \ |
8 | # root-tree.o dir-item.o hash.o file-item.o inode-item.o \ | 9 | # root-tree.o dir-item.o hash.o file-item.o inode-item.o \ |
@@ -14,7 +15,7 @@ else | |||
14 | 15 | ||
15 | KERNELDIR := /lib/modules/`uname -r`/build | 16 | KERNELDIR := /lib/modules/`uname -r`/build |
16 | all:: | 17 | all:: |
17 | $(MAKE) -C $(KERNELDIR) M=`pwd` modules | 18 | $(MAKE) C=1 -C $(KERNELDIR) M=`pwd` modules |
18 | clean:: | 19 | clean:: |
19 | rm *.o btrfs.ko | 20 | rm *.o btrfs.ko |
20 | endif | 21 | endif |