| # Makefile for CEPH filesystem. |
| ifneq ($(KERNELRELEASE),) |
| obj-$(CONFIG_CEPH_LIB) += libceph.o |
| libceph-objs := ceph_common.o messenger.o msgpool.o buffer.o pagelist.o \ |
| osd_client.o osdmap.o crush/crush.o crush/mapper.o crush/hash.o \ |
| ceph_fs.o ceph_strings.o ceph_hash.o \ |
| #Otherwise we were called directly from the command |
| # line; invoke the kernel build system. |
| KERNELDIR ?= /lib/modules/$(shell uname -r)/build |
| $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_CEPH_LIB=m modules |
| $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_CEPH_LIB=m modules_install |
| $(MAKE) -C $(KERNELDIR) M=$(PWD) clean |