xref: /spdk/lib/idxd/Makefile (revision 355312bfcd3751f9af17fbefc90373fb8a269614)
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 := 12
10SO_MINOR := 0
11
12C_SRCS = idxd.c idxd_user.c
13ifeq ($(CONFIG_IDXD_KERNEL),y)
14C_SRCS += idxd_kernel.c
15endif
16
17LIBNAME = idxd
18
19SPDK_MAP_FILE = $(abspath $(CURDIR)/spdk_idxd.map)
20
21include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk
22