blob: 99e45a54ebd66f9827a93a91032770dadac03455 [file] [log] [blame]
Chris Mason2e635a22007-03-21 11:12:56 -04001ifneq ($(KERNELRELEASE),)
2# kbuild part of makefile
Chris Masoneb60cea2007-02-02 09:18:22 -05003
Chris Mason2e635a22007-03-21 11:12:56 -04004obj-m := btrfs.o
5btrfs-y := super.o
Chris Masonaf86d072007-02-28 09:40:58 -05006
Chris Mason2e635a22007-03-21 11:12:56 -04007#btrfs-y := ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o \
8# root-tree.o dir-item.o hash.o file-item.o inode-item.o \
9# inode-map.o \
Chris Masoneb60cea2007-02-02 09:18:22 -050010
Chris Mason2e635a22007-03-21 11:12:56 -040011else
Chris Mason1261ec42007-03-20 20:35:03 -040012
Chris Mason2e635a22007-03-21 11:12:56 -040013# Normal Makefile
Chris Masonfec577f2007-02-26 10:40:21 -050014
Chris Mason2e635a22007-03-21 11:12:56 -040015KERNELDIR := /lib/modules/`uname -r`/build
16all::
17 $(MAKE) -C $(KERNELDIR) M=`pwd` modules
18clean::
19 rm *.o btrfs.ko
20endif