aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/Makefile
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2007-03-22 12:13:20 -0400
committerDavid Woodhouse <dwmw2@hera.kernel.org>2007-03-22 12:13:20 -0400
commite20d96d64f9cf9288ffecc9ad4714e91c3b97ca8 (patch)
treefbe07d48bc7997226075169118ffa2a2e63f5d51 /fs/btrfs/Makefile
parent2e635a278354a1a7951e16cfea4c247d6d0e7c99 (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/Makefile5
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
4obj-m := btrfs.o 4obj-m := btrfs.o
5btrfs-y := super.o 5btrfs-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
15KERNELDIR := /lib/modules/`uname -r`/build 16KERNELDIR := /lib/modules/`uname -r`/build
16all:: 17all::
17 $(MAKE) -C $(KERNELDIR) M=`pwd` modules 18 $(MAKE) C=1 -C $(KERNELDIR) M=`pwd` modules
18clean:: 19clean::
19 rm *.o btrfs.ko 20 rm *.o btrfs.ko
20endif 21endif