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.
|
2015-09-21 15:52:41 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
2016-05-09 20:56:07 +00:00
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
2015-09-21 15:52:41 +00:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
|
2020-06-02 00:42:50 +00:00
|
|
|
DIRS-y += hello_world identify perf reconnect nvme_manage arbitration \
|
2021-11-19 10:02:07 +00:00
|
|
|
hotplug cmb_copy abort pmr_persistence discovery_aer
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2016-04-13 00:58:29 +00:00
|
|
|
DIRS-$(CONFIG_FIO_PLUGIN) += fio_plugin
|
|
|
|
|
2015-09-21 15:52:41 +00:00
|
|
|
.PHONY: all clean $(DIRS-y)
|
|
|
|
|
|
|
|
all: $(DIRS-y)
|
|
|
|
clean: $(DIRS-y)
|
|
|
|
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
|