1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright (C) 2015 Intel Corporation. 3# All rights reserved. 4# 5 6SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..) 7include $(SPDK_ROOT_DIR)/mk/spdk.common.mk 8 9SO_VER := 5 10SO_MINOR := 2 11 12C_SRCS = base64.c bit_array.c cpuset.c crc16.c crc32.c crc32c.c crc32_ieee.c \ 13 dif.c fd.c file.c hexlify.c iov.c math.c pipe.c strerror_tls.c string.c uuid.c \ 14 fd_group.c xor.c zipf.c 15LIBNAME = util 16LOCAL_SYS_LIBS = -luuid 17 18ifeq ($(CONFIG_ISAL), y) 19LOCAL_SYS_LIBS += -L$(ISAL_DIR)/.libs -lisal 20endif 21 22SPDK_MAP_FILE = $(abspath $(CURDIR)/spdk_util.map) 23 24include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk 25