xref: /spdk/examples/blob/cli/Makefile (revision 7fc8a7dd45113bb7d403de3a8ac794c682fac938)
1#  SPDX-License-Identifier: BSD-3-Clause
2#  Copyright (C) 2017 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 = blobcli
11
12C_SRCS := blobcli.c
13
14# Don't link bdev_lvol in blobcli - otherwise this utility cannot operate on an lvolstore
15SPDK_LIB_LIST = $(filter-out bdev_lvol,$(ALL_MODULES_LIST)) event event_bdev
16
17include $(SPDK_ROOT_DIR)/mk/spdk.app.mk
18