Signed-off-by: Kozlowski Mateusz <mateusz.kozlowski@intel.com> Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Change-Id: I8c40b96f0726d83d6a307e8b9a04b7c210b80255 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13299 Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
36 lines
706 B
Makefile
36 lines
706 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (c) 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_REDUCE) += compress
|
|
|
|
DIRS-$(CONFIG_URING) += uring
|
|
|
|
ifeq ($(OS),Linux)
|
|
DIRS-y += aio ftl
|
|
DIRS-$(CONFIG_ISCSI_INITIATOR) += iscsi
|
|
DIRS-$(CONFIG_VIRTIO) += virtio
|
|
DIRS-$(CONFIG_PMDK) += pmem
|
|
endif
|
|
|
|
DIRS-$(CONFIG_RBD) += rbd
|
|
|
|
.PHONY: all clean $(DIRS-y)
|
|
|
|
all: $(DIRS-y)
|
|
clean: $(DIRS-y)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
|