1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright (c) 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 20SYS_LIBS += -laio 21 22SPDK_LIB_LIST += $(BLOCKDEV_LIST) event 23 24include $(SPDK_ROOT_DIR)/mk/spdk.app.mk 25