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.
|
2016-05-24 18:04:20 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
2018-03-22 23:23:30 +00:00
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
2016-05-24 18:04:20 +00:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
|
2017-09-08 22:12:02 +00:00
|
|
|
DIRS-y = event_perf reactor reactor_perf
|
2016-05-24 18:04:20 +00:00
|
|
|
|
2020-05-14 06:40:21 +00:00
|
|
|
ifeq ($(OS),Linux)
|
2021-01-04 15:00:58 +00:00
|
|
|
DIRS-y += app_repeat scheduler
|
2020-05-14 06:40:21 +00:00
|
|
|
endif
|
|
|
|
|
2016-05-24 18:04:20 +00:00
|
|
|
.PHONY: all clean $(DIRS-y)
|
|
|
|
|
|
|
|
all: $(DIRS-y)
|
|
|
|
clean: $(DIRS-y)
|
|
|
|
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
|