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.
|
2020-04-14 07:01:41 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
|
|
|
|
APP = spdk_top
|
|
|
|
|
|
|
|
C_SRCS := spdk_top.c
|
|
|
|
|
2020-12-11 20:41:37 +00:00
|
|
|
SPDK_LIB_LIST = rpc
|
2021-07-07 09:22:45 +00:00
|
|
|
LIBS=-lpanel -lmenu -lncurses
|
2020-04-14 07:01:41 +00:00
|
|
|
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.app.mk
|
2022-06-03 13:10:35 +00:00
|
|
|
|
|
|
|
install: $(APP)
|
|
|
|
$(INSTALL_APP)
|
|
|
|
|
|
|
|
uninstall:
|
|
|
|
$(UNINSTALL_APP)
|