2022-06-03 19:15:11 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-11-01 20:26:26 +00:00
|
|
|
# Copyright (C) 2015 Intel Corporation.
|
2016-05-24 18:04:20 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
2016-07-18 23:12:51 +00:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
2016-05-24 18:04:20 +00:00
|
|
|
|
2022-01-31 09:55:58 +00:00
|
|
|
SO_VER := 11
|
2021-09-02 17:11:33 +00:00
|
|
|
SO_MINOR := 0
|
2020-02-28 20:47:11 +00:00
|
|
|
|
2022-08-17 22:09:09 +00:00
|
|
|
CFLAGS += $(ENV_CFLAGS) -Wno-address-of-packed-member
|
2020-09-03 08:45:06 +00:00
|
|
|
|
2016-05-24 18:04:20 +00:00
|
|
|
LIBNAME = event
|
2021-03-02 19:34:25 +00:00
|
|
|
C_SRCS = app.c reactor.c log_rpc.c \
|
2021-02-26 22:00:03 +00:00
|
|
|
app_rpc.c scheduler_static.c
|
2016-05-24 18:04:20 +00:00
|
|
|
|
2020-04-07 08:41:21 +00:00
|
|
|
SPDK_MAP_FILE = $(abspath $(CURDIR)/spdk_event.map)
|
|
|
|
|
2016-05-24 18:04:20 +00:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk
|