2022-06-03 19:15:11 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-11-01 20:26:26 +00:00
|
|
|
# Copyright (C) 2016 Intel Corporation.
|
2016-11-22 19:47:04 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
2017-06-24 00:05:41 +00:00
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../../..)
|
2016-11-22 19:47:04 +00:00
|
|
|
|
2019-12-10 05:21:33 +00:00
|
|
|
SPDK_LIB_LIST = conf util
|
2016-11-22 19:47:04 +00:00
|
|
|
|
2017-05-03 19:41:55 +00:00
|
|
|
SCSI_OBJS = port
|
2017-07-21 21:44:43 +00:00
|
|
|
ISCSI_OBJS = md5 param
|
2018-02-13 15:46:23 +00:00
|
|
|
LIBS += $(SCSI_OBJS:%=$(SPDK_ROOT_DIR)/lib/scsi/%.o)
|
|
|
|
LIBS += $(ISCSI_OBJS:%=$(SPDK_ROOT_DIR)/lib/iscsi/%.o)
|
2018-11-21 10:03:52 +00:00
|
|
|
LIBS += -lcunit
|
2016-11-22 19:47:04 +00:00
|
|
|
|
2018-02-13 15:46:23 +00:00
|
|
|
TEST_FILE = iscsi_ut.c
|
2016-11-22 19:47:04 +00:00
|
|
|
|
2018-02-13 15:46:23 +00:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.unittest.mk
|