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-11-22 20:03:26 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
2018-03-22 23:10:42 +00:00
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..)
|
2020-04-20 19:47:03 +00:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.modules.mk
|
2016-11-22 20:03:26 +00:00
|
|
|
|
2020-04-20 19:47:03 +00:00
|
|
|
APP = vtophys
|
|
|
|
C_SRCS := vtophys.c
|
|
|
|
SPDK_LIB_LIST += thread util log
|
2016-11-22 20:03:26 +00:00
|
|
|
|
2020-04-20 19:47:03 +00:00
|
|
|
SYS_LIBS += -lcunit
|
|
|
|
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.app.mk
|