xref: /spdk/test/event/app_repeat/Makefile (revision 68d213eac63ae5191ef7380ae26d5c8aac447d8b)
1#  SPDX-License-Identifier: BSD-3-Clause
2#  Copyright (C) 2020 Intel Corporation.
3#  All rights reserved.
4#
5
6SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..)
7include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
8include $(SPDK_ROOT_DIR)/mk/spdk.modules.mk
9
10APP = app_repeat
11C_SRCS := app_repeat.c
12
13# Some of the modules and libraries are not repeatable yet, only organize
14# the repeatable ones.
15SPDK_LIB_LIST = event_bdev event_accel event_vmd event_sock
16SPDK_LIB_LIST += event_nbd
17
18BLOCKDEV_LIST = bdev_malloc bdev_null
19BLOCKDEV_LIST += bdev_aio
20
21SOCK_LIST = sock_posix
22ifeq ($(CONFIG_URING),y)
23SOCK_LIST += sock_uring
24endif
25
26SYS_LIBS += -laio
27
28SPDK_LIB_LIST += $(BLOCKDEV_LIST) $(SOCK_LIST) event
29
30include $(SPDK_ROOT_DIR)/mk/spdk.app.mk
31