1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright (C) 2015 Intel Corporation. 3# All rights reserved. 4# 5 6SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../..) 7include $(SPDK_ROOT_DIR)/mk/spdk.common.mk 8 9DIRS-y = tcp.c ctrlr.c subsystem.c ctrlr_discovery.c ctrlr_bdev.c nvmf.c auth.c 10 11DIRS-$(CONFIG_RDMA) += rdma.c transport.c 12 13DIRS-$(CONFIG_FC) += fc.c fc_ls.c 14 15DIRS-$(CONFIG_VFIO_USER) += vfio_user.c 16 17.PHONY: all clean $(DIRS-y) 18 19all: $(DIRS-y) 20clean: $(DIRS-y) 21 22include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk 23