1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright (c) Intel Corporation. 3# All rights reserved. 4# 5 6SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..) 7include $(SPDK_ROOT_DIR)/mk/spdk.common.mk 8include $(SPDK_ROOT_DIR)/mk/spdk.modules.mk 9 10APP = spdk_trace 11SPDK_NO_LINK_ENV = 1 12 13SPDK_LIB_LIST += json trace_parser 14 15CXX_SRCS := trace.cpp 16 17include $(SPDK_ROOT_DIR)/mk/spdk.app_cxx.mk 18 19install: $(APP) 20 $(INSTALL_APP) 21 22uninstall: 23 $(UNINSTALL_APP) 24