2022-06-03 19:15:11 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2019-04-22 09:28:02 +00:00
|
|
|
# Copyright (c) 2018 Broadcom. All Rights Reserved.
|
|
|
|
# The term "Broadcom" refers to Broadcom Limited and/or its subsidiaries.
|
|
|
|
#
|
|
|
|
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../../../)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/config.mk
|
|
|
|
|
2020-12-23 11:56:59 +00:00
|
|
|
CFLAGS += -I$(SPDK_ROOT_DIR)/test/common/lib -I$(SPDK_ROOT_DIR)/lib/nvmf $(ENV_CFLAGS)
|
2019-04-22 09:28:02 +00:00
|
|
|
|
|
|
|
ifneq ($(strip $(CONFIG_FC_PATH)),)
|
|
|
|
CFLAGS += -I$(CONFIG_FC_PATH)
|
|
|
|
endif
|
|
|
|
|
|
|
|
TEST_FILE = fc_ls_ut.c
|
|
|
|
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.unittest.mk
|