xref: /spdk/examples/bdev/Makefile (revision 97b01d0966949aba2d3634e454f367e57ea93aee)
1#  SPDX-License-Identifier: BSD-3-Clause
2#  Copyright (C) 2015 Intel Corporation.
3#  Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES
4#  All rights reserved.
5#
6
7SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
8include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
9
10DIRS-y += hello_world bdevperf
11
12.PHONY: all clean $(DIRS-y)
13
14all: $(DIRS-y)
15	@:
16
17clean: $(DIRS-y)
18	@:
19
20include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
21