]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/btrfs/Makefile
Btrfs: Create orphan inode records to prevent lost files after a crash
[net-next-2.6.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 \
d1310b2e 8 extent_map.o sysfs.o struct-funcs.o xattr.o ordered-data.o \
7b128766 9 extent_io.o volumes.o async-thread.o ioctl.o locking.o orphan.o
af86d07e 10
95c9eb17 11btrfs-$(CONFIG_FS_POSIX_ACL) += acl.o
2e635a27 12else
4920c9ac 13
2e635a27 14# Normal Makefile
fec577fb 15
2e635a27 16KERNELDIR := /lib/modules/`uname -r`/build
b3c3da71 17all: version
39279cc3 18 $(MAKE) -C $(KERNELDIR) M=`pwd` modules
b3c3da71
CM
19
20version:
21 bash version.sh
22
432eba08 23modules_install:
84a5d5ee 24 $(MAKE) -C $(KERNELDIR) M=`pwd` modules_install
432eba08 25clean:
8578f0f1 26 $(MAKE) -C $(KERNELDIR) M=`pwd` clean
432eba08 27
5f39d397
CM
28tester:
29 $(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 30endif