2022-06-03 19:15:11 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-11-01 20:26:26 +00:00
|
|
|
# Copyright (C) 2018 Intel Corporation.
|
|
|
|
# All rights reserved.
|
2018-08-02 16:07:50 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.modules.mk
|
|
|
|
|
|
|
|
APP = hello_sock
|
|
|
|
|
|
|
|
C_SRCS := hello_sock.c
|
|
|
|
|
2018-11-20 21:28:09 +00:00
|
|
|
SPDK_LIB_LIST = $(SOCK_MODULES_LIST)
|
2020-09-17 23:21:21 +00:00
|
|
|
SPDK_LIB_LIST += event sock
|
2018-08-02 16:07:50 +00:00
|
|
|
|
2018-11-20 22:03:15 +00:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.app.mk
|