aboutsummaryrefslogtreecommitdiff
path: root/fs/btrfs/Makefile
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2008-09-25 15:32:36 -0400
committerChris Mason <chris.mason@oracle.com>2008-09-25 15:33:18 -0400
commitaef8755711a28bb0ecde7780ae6613fcb62cf6f7 (patch)
tree407909172c536be3336e8f3c9ec39a3003c29c3f /fs/btrfs/Makefile
parent72d31053f62c4bc464c2783974926969614a8649 (diff)
parent34353029534a08e41cfb8be647d734b9ce9ebff8 (diff)
Merge Btrfs into fs/btrfs
Diffstat (limited to 'fs/btrfs/Makefile')
-rw-r--r--fs/btrfs/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/fs/btrfs/Makefile b/fs/btrfs/Makefile
new file mode 100644
index 00000000000..eb36ae981bd
--- /dev/null
+++ b/fs/btrfs/Makefile
@@ -0,0 +1,29 @@
+ifneq ($(KERNELRELEASE),)
+# kbuild part of makefile
+
+obj-m := btrfs.o
+btrfs-y := super.o ctree.o extent-tree.o print-tree.o root-tree.o dir-item.o \
+ file-item.o inode-item.o inode-map.o disk-io.o \
+ transaction.o bit-radix.o inode.o file.o tree-defrag.o \
+ extent_map.o sysfs.o struct-funcs.o xattr.o ordered-data.o \
+ extent_io.o volumes.o async-thread.o ioctl.o locking.o orphan.o \
+ ref-cache.o export.o tree-log.o acl.o free-space-cache.o
+else
+
+# Normal Makefile
+
+KERNELDIR := /lib/modules/`uname -r`/build
+all: version
+ $(MAKE) -C $(KERNELDIR) M=`pwd` modules
+
+version:
+ bash version.sh
+
+modules_install:
+ $(MAKE) -C $(KERNELDIR) M=`pwd` modules_install
+clean:
+ $(MAKE) -C $(KERNELDIR) M=`pwd` clean
+
+tester:
+ $(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
+endif