2007-03-21 15:12:56 +00:00
|
|
|
ifneq ($(KERNELRELEASE),)
|
|
|
|
# kbuild part of makefile
|
2007-02-02 14:18:22 +00:00
|
|
|
|
2007-03-21 15:12:56 +00:00
|
|
|
obj-m := btrfs.o
|
2007-03-22 16:13:20 +00:00
|
|
|
btrfs-y := super.o ctree.o extent-tree.o print-tree.o root-tree.o dir-item.o \
|
2007-03-26 14:15:30 +00:00
|
|
|
hash.o file-item.o inode-item.o inode-map.o disk-io.o \
|
2007-08-27 20:49:44 +00:00
|
|
|
transaction.o bit-radix.o inode.o file.o tree-defrag.o \
|
2008-01-24 21:13:08 +00:00
|
|
|
extent_map.o sysfs.o struct-funcs.o xattr.o ordered-data.o \
|
2008-03-24 19:01:56 +00:00
|
|
|
extent_io.o volumes.o
|
2007-02-28 14:40:58 +00:00
|
|
|
|
2008-01-17 16:59:48 +00:00
|
|
|
ifeq ($(CONFIG_FS_POSIX_ACL),y)
|
|
|
|
btrfs-y += acl.o
|
|
|
|
endif
|
2007-03-21 15:12:56 +00:00
|
|
|
#btrfs-y := ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o \
|
|
|
|
# root-tree.o dir-item.o hash.o file-item.o inode-item.o \
|
|
|
|
# inode-map.o \
|
2007-02-02 14:18:22 +00:00
|
|
|
|
2007-03-21 15:12:56 +00:00
|
|
|
else
|
2007-01-26 21:38:42 +00:00
|
|
|
|
2007-03-21 15:12:56 +00:00
|
|
|
# Normal Makefile
|
2007-02-26 15:40:21 +00:00
|
|
|
|
2007-03-21 15:12:56 +00:00
|
|
|
KERNELDIR := /lib/modules/`uname -r`/build
|
2007-09-14 14:22:19 +00:00
|
|
|
all:
|
2007-06-12 10:35:45 +00:00
|
|
|
$(MAKE) -C $(KERNELDIR) M=`pwd` modules
|
2007-09-14 14:22:19 +00:00
|
|
|
modules_install:
|
2007-09-14 13:43:53 +00:00
|
|
|
$(MAKE) -C $(KERNELDIR) M=`pwd` modules_install
|
2007-09-14 14:22:19 +00:00
|
|
|
clean:
|
2007-07-25 18:04:51 +00:00
|
|
|
$(MAKE) -C $(KERNELDIR) M=`pwd` clean
|
2007-09-14 14:22:19 +00:00
|
|
|
|
2007-10-15 20:14:19 +00:00
|
|
|
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
|
2007-03-21 15:12:56 +00:00
|
|
|
endif
|