Removed bdev pmem implementation and makefiles Removed bdev pmem rpc calls Updated Python scripts Updated match files for tests Updated doc files pkgdep and doc files will be updated when pmem dependency is removed from libreduce Change-Id: Ia1be5046159e04cd933ac13a0d5791e6d28219da Signed-off-by: Marcin Spiewak <marcin.spiewak@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17070 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
37 lines
720 B
Makefile
37 lines
720 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2019 Intel Corporation.
|
|
# All rights reserved.
|
|
#
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
DIRS-y += delay error gpt lvol malloc null nvme passthru raid split zone_block
|
|
|
|
DIRS-$(CONFIG_XNVME) += xnvme
|
|
|
|
DIRS-$(CONFIG_CRYPTO) += crypto
|
|
|
|
DIRS-$(CONFIG_OCF) += ocf
|
|
|
|
DIRS-$(CONFIG_VBDEV_COMPRESS) += compress
|
|
|
|
DIRS-$(CONFIG_URING) += uring
|
|
|
|
ifeq ($(OS),Linux)
|
|
DIRS-y += aio ftl
|
|
DIRS-$(CONFIG_ISCSI_INITIATOR) += iscsi
|
|
DIRS-$(CONFIG_VIRTIO) += virtio
|
|
endif
|
|
|
|
DIRS-$(CONFIG_RBD) += rbd
|
|
|
|
DIRS-$(CONFIG_DAOS) += daos
|
|
|
|
.PHONY: all clean $(DIRS-y)
|
|
|
|
all: $(DIRS-y)
|
|
clean: $(DIRS-y)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
|