2022-06-03 19:15:11 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2017-06-06 17:24:07 +00:00
|
|
|
# Copyright (c) Intel Corporation.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
|
|
|
|
DIRS-$(CONFIG_FIO_PLUGIN) = fio_plugin
|
2018-04-10 00:13:40 +00:00
|
|
|
DIRS-y += hello_world
|
2017-06-06 17:24:07 +00:00
|
|
|
|
|
|
|
.PHONY: all clean $(DIRS-y)
|
|
|
|
|
|
|
|
all: $(DIRS-y)
|
2018-02-14 02:35:28 +00:00
|
|
|
@:
|
|
|
|
|
2017-06-06 17:24:07 +00:00
|
|
|
clean: $(DIRS-y)
|
2018-03-07 15:28:35 +00:00
|
|
|
@:
|
2017-06-06 17:24:07 +00:00
|
|
|
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
|