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.
|
2023-02-07 00:48:05 +00:00
|
|
|
# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
2015-09-21 15:52:41 +00:00
|
|
|
#
|
|
|
|
|
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
|
|
|
|
|
|
|
|
# These directories contain tests.
|
2023-02-07 00:48:05 +00:00
|
|
|
TESTDIRS = app bdev blobfs cpp_headers dma env event lvol nvme rpc_client thread
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2020-03-06 09:08:29 +00:00
|
|
|
DIRS-$(CONFIG_TESTS) += $(TESTDIRS)
|
|
|
|
DIRS-$(CONFIG_UNIT_TESTS) += unit
|
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
|