xref: /spdk/test/lvol/Makefile (revision b3bec07939ebe2ea2e0c43931705d32aa9e06719)
1#  SPDX-License-Identifier: BSD-3-Clause
2#  Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3#
4
5SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
6include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
7
8DIRS-y =
9
10ifeq ($(OS),Linux)
11# Tests in this directory mostly depend upon aio bdevs, which are not widely supported.
12DIRS-y += esnap
13endif
14
15.PHONY: all clean $(DIRS-y)
16
17all: $(DIRS-y)
18clean: $(DIRS-y)
19
20include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
21