Btrfs: Create extent_buffer interface for large blocksizes
[linux-2.6-block.git] / fs / btrfs / Makefile
CommitLineData
2e635a27
CM
1ifneq ($(KERNELRELEASE),)
2# kbuild part of makefile
eb60ceac 3
2e635a27 4obj-m := btrfs.o
e20d96d6 5btrfs-y := super.o ctree.o extent-tree.o print-tree.o root-tree.o dir-item.o \
8ef97622 6 hash.o file-item.o inode-item.o inode-map.o disk-io.o \
a52d9a80 7 transaction.o bit-radix.o inode.o file.o tree-defrag.o \
58176a96 8 extent_map.o sysfs.o
af86d07e 9
2e635a27
CM
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 \
eb60ceac 13
2e635a27 14else
4920c9ac 15
2e635a27 16# Normal Makefile
fec577fb 17
2e635a27 18KERNELDIR := /lib/modules/`uname -r`/build
432eba08 19all:
39279cc3 20 $(MAKE) -C $(KERNELDIR) M=`pwd` modules
432eba08 21modules_install:
84a5d5ee 22 $(MAKE) -C $(KERNELDIR) M=`pwd` modules_install
432eba08 23clean:
8578f0f1 24 $(MAKE) -C $(KERNELDIR) M=`pwd` clean
432eba08 25
5f39d397
CM
26tester:
27 $(MAKE) -C $(KERNELDIR) M=`pwd` tree-defrag.o transaction.o sysfs.o super.o root-tree.o inode-map.o inode-item.o inode.o file-item.o file.o extent_map.o disk-io.o ctree.o dir-item.o extent-tree.o
2e635a27 28endif