ALSA: virtuoso: initialize unknown GPIO bits
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / ceph / Makefile
blob9e6c4f2e8ff1f3e2712979d791da9e55fa780982
2 # Makefile for CEPH filesystem.
5 ifneq ($(KERNELRELEASE),)
7 obj-$(CONFIG_CEPH_FS) += ceph.o
9 ceph-objs := super.o inode.o dir.o file.o locks.o addr.o ioctl.o \
10 export.o caps.o snap.o xattr.o \
11 mds_client.o mdsmap.o strings.o ceph_frag.o \
12 debugfs.o
14 else
15 #Otherwise we were called directly from the command
16 # line; invoke the kernel build system.
18 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
19 PWD := $(shell pwd)
21 default: all
23 all:
24 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_CEPH_FS=m modules
26 modules_install:
27 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_CEPH_FS=m modules_install
29 clean:
30 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
32 endif