2022-06-03 19:15:11 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-01-05 09:32:09 +00:00
|
|
|
# Copyright (c) Intel Corporation.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/..)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
|
|
|
|
define generate_protobuf
|
|
|
|
$(1)/%_pb2.py $(1)/%_pb2_grpc.py: $(1)/%.proto
|
|
|
|
$(Q)python3 -m grpc_tools.protoc -I $(1) --python_out=$(1) \
|
|
|
|
--grpc_python_out=$(1) --proto_path=$(1) $$^
|
|
|
|
endef
|
|
|
|
|
2022-01-05 09:14:39 +00:00
|
|
|
ifeq ($(CONFIG_SMA),y)
|
2022-01-05 09:32:09 +00:00
|
|
|
protodirs = spdk/sma/proto
|
|
|
|
protodefs = $(foreach protodir,$(protodirs),$(wildcard $(protodir)/*.proto))
|
|
|
|
protopy = $(foreach proto,$(basename $(protodefs)),$(addprefix $(proto),_pb2.py _pb2_grpc.py))
|
|
|
|
endif
|
|
|
|
|
|
|
|
all: $(protopy)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$(Q)$(RM) $(protopy)
|
|
|
|
|
|
|
|
# TODO: we should probably write a proper install rule here instead of just blindly copying all
|
|
|
|
# python scripts when building the RPMs
|
|
|
|
install:
|
|
|
|
uninstall:
|
|
|
|
|
|
|
|
$(foreach protodir,$(protodirs),$(eval $(call generate_protobuf,$(protodir))))
|
|
|
|
|
|
|
|
.PHONY: all clean install uninstall
|