Btrfs: Add per-root block accounting and sysfs entries
[safe/jmp/linux-2.6] / fs / btrfs / Makefile
1 ifneq ($(KERNELRELEASE),)
2 # kbuild part of makefile
3
4 obj-m  := btrfs.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 \
7            transaction.o bit-radix.o inode.o file.o tree-defrag.o \
8            extent_map.o sysfs.o
9
10 #btrfs-y := ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o \
11 #         root-tree.o dir-item.o hash.o file-item.o inode-item.o \
12 #         inode-map.o \
13
14 else
15
16 # Normal Makefile
17
18 KERNELDIR := /lib/modules/`uname -r`/build
19 all::
20         $(MAKE) -C $(KERNELDIR) M=`pwd` modules
21 clean::
22         $(MAKE) -C $(KERNELDIR) M=`pwd` clean
23 endif