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