2022-06-03 19:15:11 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2016-01-26 17:47:22 +00:00
|
|
|
# Copyright (c) Intel Corporation.
|
2015-09-21 15:52:41 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
2016-05-09 20:56:07 +00:00
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
2016-07-18 23:12:51 +00:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2022-01-31 09:55:58 +00:00
|
|
|
SO_VER := 5
|
2022-05-16 12:02:38 +00:00
|
|
|
SO_MINOR := 1
|
2020-02-28 20:47:11 +00:00
|
|
|
|
2019-08-21 19:15:29 +00:00
|
|
|
C_SRCS = base64.c bit_array.c cpuset.c crc16.c crc32.c crc32c.c crc32_ieee.c \
|
2022-08-24 16:37:51 +00:00
|
|
|
dif.c fd.c file.c hexlify.c iov.c math.c pipe.c strerror_tls.c string.c uuid.c \
|
2021-05-06 21:20:45 +00:00
|
|
|
fd_group.c zipf.c
|
2016-05-09 18:14:04 +00:00
|
|
|
LIBNAME = util
|
2018-09-19 19:15:37 +00:00
|
|
|
LOCAL_SYS_LIBS = -luuid
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2020-05-10 00:53:07 +00:00
|
|
|
SPDK_MAP_FILE = $(abspath $(CURDIR)/spdk_util.map)
|
|
|
|
|
2016-05-09 18:14:04 +00:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk
|