blob: 827629c85768b67506ceadf04c68e2e574145ee0 [file] [log] [blame]
Sage Weil9030aaf2009-10-06 11:31:15 -07001#
2# Makefile for CEPH filesystem.
3#
4
5ifneq ($(KERNELRELEASE),)
6
7obj-$(CONFIG_CEPH_FS) += ceph.o
8
9ceph-objs := super.o inode.o dir.o file.o addr.o ioctl.o \
10 export.o caps.o snap.o xattr.o \
11 messenger.o msgpool.o buffer.o \
12 mds_client.o mdsmap.o \
13 mon_client.o \
Sage Weilc6cf7262009-11-06 16:39:26 -080014 osd_client.o osdmap.o crush/crush.o crush/mapper.o crush/hash.o \
Sage Weil9030aaf2009-10-06 11:31:15 -070015 debugfs.o \
Sage Weil4e7a5dc2009-11-18 16:19:57 -080016 auth.o auth_none.o \
Sage Weil1654dd02009-11-06 21:55:25 -080017 ceph_fs.o ceph_strings.o ceph_hash.o ceph_frag.o
Sage Weil9030aaf2009-10-06 11:31:15 -070018
19else
20#Otherwise we were called directly from the command
21# line; invoke the kernel build system.
22
23KERNELDIR ?= /lib/modules/$(shell uname -r)/build
24PWD := $(shell pwd)
25
26default: all
27
28all:
29 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_CEPH_FS=m modules
30
31modules_install:
32 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_CEPH_FS=m modules_install
33
34clean:
35 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
36
37endif