forked from longhorn/spdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (15 loc) · 679 Bytes
/
Copy pathMakefile
File metadata and controls
22 lines (15 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (C) 2026 Longhorn Authors.
# All rights reserved.
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..)
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
SO_VER := 1
SO_MINOR := 0
C_SRCS = bdev_ec.c bdev_ec_bitmap.c bdev_ec_rpc.c bdev_ec_io.c bdev_ec_rebuild.c \
bdev_ec_resize.c bdev_ec_rmw.c bdev_ec_wib.c bdev_ec_unmap.c
LIBNAME = bdev_ec
# bdev_ec requires ISA-L for Reed-Solomon coding. The isa-l include path and
# -lisal are provided globally by mk/spdk.common.mk when CONFIG_ISAL=y (the
# default), so they are not repeated here.
SPDK_MAP_FILE = $(SPDK_ROOT_DIR)/mk/spdk_blank.map
include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk