2022-06-03 19:15:11 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-11-01 20:26:26 +00:00
|
|
|
# Copyright (C) 2017 Intel Corporation.
|
2021-01-04 15:00:58 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.modules.mk
|
|
|
|
|
|
|
|
APP = scheduler
|
|
|
|
C_SRCS := scheduler.c
|
|
|
|
|
2021-08-06 09:17:16 +00:00
|
|
|
SPDK_LIB_LIST = $(ALL_MODULES_LIST) event event_bdev conf event_scheduler
|
2021-01-04 15:00:58 +00:00
|
|
|
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.app.mk
|