Signed-off-by: Kozlowski Mateusz <mateusz.kozlowski@intel.com> Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Change-Id: I0837028fbe349e8df7f05fb3c9db1f4682f04679 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13301 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com>
24 lines
468 B
Makefile
24 lines
468 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
|
|
|
|
SO_VER := 4
|
|
SO_MINOR := 0
|
|
|
|
CFLAGS += -I$(SPDK_ROOT_DIR)/lib/ftl/
|
|
|
|
ifdef SPDK_FTL_VSS_EMU
|
|
CFLAGS += -DSPDK_FTL_VSS_EMU
|
|
endif
|
|
|
|
C_SRCS += bdev_ftl.c bdev_ftl_rpc.c
|
|
LIBNAME = bdev_ftl
|
|
|
|
SPDK_MAP_FILE = $(SPDK_ROOT_DIR)/mk/spdk_blank.map
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk
|