blob: 008a531956d67bf92edd7da01f716501115c540c [file] [log] [blame]
Khen Nursimulu3869d8d2016-11-28 20:44:28 -05001#
2# Copyright 2016 the original author or authors.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17# Makefile to build all protobuf and gRPC related artifacts
18
19ifeq ($(VOLTHA_BASE)_set,_set)
20 $(error To get started, please source the env.sh file from Voltha top level directory)
21endif
22
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -050023default: build
Khen Nursimulu3869d8d2016-11-28 20:44:28 -050024
25PB2_FILES := \
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -050026 voltha_pb2.py
Khen Nursimulu3869d8d2016-11-28 20:44:28 -050027
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -050028TARGET_PROTO_DIR := $(VOLTHA_BASE)/netconf/protos
Khen Nursimulu3869d8d2016-11-28 20:44:28 -050029SOURCE_PROTO_DIR := $(VOLTHA_BASE)/voltha/protos
30
31build: copyfiles
32
33copyfiles:
34 rsync -av --include '*/' --exclude='third_party/__init__.py' --include '*.py' --exclude='*' $(SOURCE_PROTO_DIR)/ $(TARGET_PROTO_DIR)
35
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -050036
37PROTO_FILES := $(wildcard *.proto) $(wildcard third_party/google/api/*proto)
38PROTO_PB2_FILES := $(foreach f,$(PROTO_FILES),$(subst .proto,_pb2.py,$(f)))
39PROTO_DESC_FILES := $(foreach f,$(PROTO_FILES),$(subst .proto,.desc,$(f)))
40
41PROTOC_PREFIX := /usr/local
42PROTOC_LIBDIR := $(PROTOC_PREFIX)/lib
43
44build: $(PROTO_PB2_FILES)
45
46%_pb2.py: %.proto Makefile
47 @echo "Building protocol buffer artifacts from $<"
48 env LD_LIBRARY_PATH=$(PROTOC_LIBDIR) python -m grpc.tools.protoc \
49 -I. \
50 -I./third_party \
51 --python_out=. \
52 --grpc_python_out=. \
53 $<
54
55clean:
56 rm -f $(PROTO_PB2_FILES) $(PROTO_DESC_FILES)
57