Skip to content

Commit

Permalink
Net: ceph: Makefile: Remove unnessary code
Browse files Browse the repository at this point in the history
Remove the if and else conditional because the code is in mainline and there
is no need in it being there.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Tdent48227 authored and davem330 committed Nov 28, 2010
1 parent a27e13d commit 4cb6a61
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions net/ceph/Makefile
@@ -1,9 +1,6 @@
#
# 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 \
Expand All @@ -16,22 +13,3 @@ libceph-objs := ceph_common.o messenger.o msgpool.o buffer.o pagelist.o \
ceph_fs.o ceph_strings.o ceph_hash.o \
pagevec.o

else
#Otherwise we were called directly from the command
# line; invoke the kernel build system.

KERNELDIR ?= /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)

default: all

all:
$(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_CEPH_LIB=m modules

modules_install:
$(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_CEPH_LIB=m modules_install

clean:
$(MAKE) -C $(KERNELDIR) M=$(PWD) clean

endif

0 comments on commit 4cb6a61

Please sign in to comment.