summaryrefslogtreecommitdiff
path: root/drivers/block/rnbd/Makefile
diff options
context:
space:
mode:
authorJack Wang <jinpu.wang@cloud.ionos.com>2020-05-11 16:51:29 +0300
committerJason Gunthorpe <jgg@mellanox.com>2020-05-18 00:57:17 +0300
commitbc01885342e193e7943d86ccbd7bc3e8fee50a68 (patch)
treed377d22a724aaab21fcc696b83dbbcc463685312 /drivers/block/rnbd/Makefile
parent8cee532f469bbcdb6ac0ab161ebff36fbc6439d7 (diff)
downloadlinux-bc01885342e193e7943d86ccbd7bc3e8fee50a68.tar.xz
block/rnbd: include client and server modules into kernel compilation
Add rnbd Makefile, Kconfig and also corresponding lines into upper block layer files. Link: https://lore.kernel.org/r/20200511135131.27580-24-danil.kipnis@cloud.ionos.com Signed-off-by: Danil Kipnis <danil.kipnis@cloud.ionos.com> Signed-off-by: Jack Wang <jinpu.wang@cloud.ionos.com> Reviewed-by: Bart Van Assche <bvanassche@acm.org> Acked-by: Jens Axboe <axboe@kernel.dk> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'drivers/block/rnbd/Makefile')
-rw-r--r--drivers/block/rnbd/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/block/rnbd/Makefile b/drivers/block/rnbd/Makefile
new file mode 100644
index 000000000000..5bb1a7ad1ada
--- /dev/null
+++ b/drivers/block/rnbd/Makefile
@@ -0,0 +1,15 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+ccflags-y := -I$(srctree)/drivers/infiniband/ulp/rtrs
+
+rnbd-client-y := rnbd-clt.o \
+ rnbd-clt-sysfs.o \
+ rnbd-common.o
+
+rnbd-server-y := rnbd-common.o \
+ rnbd-srv.o \
+ rnbd-srv-dev.o \
+ rnbd-srv-sysfs.o
+
+obj-$(CONFIG_BLK_DEV_RNBD_CLIENT) += rnbd-client.o
+obj-$(CONFIG_BLK_DEV_RNBD_SERVER) += rnbd-server.o