The new API will be used in the next patch to prevent calling metods for the seconds time when subsystem is initialized with config file Signed-off-by: Aleksey Marchuk <alexeymar@nvidia.com> Change-Id: I60ac8196e46ccb3b22b3af0607e1ba35a11a66a6 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/14406 Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
19 lines
416 B
Makefile
19 lines
416 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (c) Intel Corporation.
|
|
# All rights reserved.
|
|
# Copyright (c) 2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
#
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
SO_VER := 4
|
|
SO_MINOR := 1
|
|
|
|
C_SRCS = rpc.c
|
|
LIBNAME = rpc
|
|
|
|
SPDK_MAP_FILE = $(abspath $(CURDIR)/spdk_rpc.map)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk
|