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.
|
|
|
|
#
|
|
|
|
|
2018-03-22 22:18:32 +00:00
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
2015-09-21 15:52:41 +00:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
|
2022-08-17 17:30:20 +00:00
|
|
|
DIRS-y = aer reset sgl e2edp overhead err_injection \
|
2021-09-23 14:06:55 +00:00
|
|
|
startup reserve simple_copy connect_stress boot_partition \
|
2022-03-12 16:06:09 +00:00
|
|
|
compliance fused_ordering
|
2020-02-11 18:48:05 +00:00
|
|
|
DIRS-$(CONFIG_NVME_CUSE) += cuse
|
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
|