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.
|
2018-03-14 12:54:30 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
2019-08-16 17:54:47 +00:00
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
2018-03-14 12:54:30 +00:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
|
2019-08-16 17:54:47 +00:00
|
|
|
DIRS-y = posix
|
2019-10-14 23:58:51 +00:00
|
|
|
ifeq ($(OS), Linux)
|
|
|
|
DIRS-$(CONFIG_URING) += uring
|
|
|
|
endif
|
2018-03-14 12:54:30 +00:00
|
|
|
|
2019-08-16 17:54:47 +00:00
|
|
|
.PHONY: all clean $(DIRS-y)
|
|
|
|
|
|
|
|
all: $(DIRS-y)
|
|
|
|
clean: $(DIRS-y)
|
|
|
|
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
|