Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4cb6a614 authored by Tracey Dent's avatar Tracey Dent Committed by David S. Miller
Browse files

Net: ceph: Makefile: Remove unnessary code



Remove the if and else conditional because the code is in mainline and there
is no need in it being there.

Signed-off-by: default avatarTracey Dent <tdent48227@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a27e13d3
Loading
Loading
Loading
Loading
+0 −22
Original line number Original line Diff line number Diff line
#
#
# Makefile for CEPH filesystem.
# Makefile for CEPH filesystem.
#
#

ifneq ($(KERNELRELEASE),)

obj-$(CONFIG_CEPH_LIB) += libceph.o
obj-$(CONFIG_CEPH_LIB) += libceph.o


libceph-objs := ceph_common.o messenger.o msgpool.o buffer.o pagelist.o \
libceph-objs := ceph_common.o messenger.o msgpool.o buffer.o pagelist.o \
@@ -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 \
	ceph_fs.o ceph_strings.o ceph_hash.o \
	pagevec.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