1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright (C) 2015 Intel Corporation. 3# Copyright (c) 2020 Mellanox Technologies LTD 4# All rights reserved. 5# 6 7SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..) 8include $(SPDK_ROOT_DIR)/mk/spdk.common.mk 9 10SO_VER := 8 11SO_MINOR := 0 12 13C_SRCS = sock.c sock_rpc.c 14 15LIBNAME = sock 16 17CFLAGS += -Wpointer-arith 18 19SPDK_MAP_FILE = $(abspath $(CURDIR)/spdk_sock.map) 20 21include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk 22