blob: 52e36b0d508698eebca58a24bcfc19f41f3d9db2 [file] [log] [blame]
Zsolt Harasztia9a12dc2016-09-27 13:48:35 -07001#
Zsolt Harasztiaccad4a2017-01-03 21:56:48 -08002# Copyright 2017 the original author or authors.
Zsolt Harasztia9a12dc2016-09-27 13:48:35 -07003#
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
23default: build
24
Zack Williamsf97bf092018-03-22 21:27:28 -070025PROTO_FILES := $(wildcard *.proto)
Zsolt Harasztia9a12dc2016-09-27 13:48:35 -070026PROTO_PB2_FILES := $(foreach f,$(PROTO_FILES),$(subst .proto,_pb2.py,$(f)))
27PROTO_DESC_FILES := $(foreach f,$(PROTO_FILES),$(subst .proto,.desc,$(f)))
28
29PROTOC_PREFIX := /usr/local
30PROTOC_LIBDIR := $(PROTOC_PREFIX)/lib
31
32build: $(PROTO_PB2_FILES)
33
34%_pb2.py: %.proto Makefile
35 @echo "Building protocol buffer artifacts from $<"
36 env LD_LIBRARY_PATH=$(PROTOC_LIBDIR) python -m grpc.tools.protoc \
37 -I. \
Zsolt Harasztia9a12dc2016-09-27 13:48:35 -070038 --python_out=. \
39 --grpc_python_out=. \
40 $<
41
42clean:
43 rm -f $(PROTO_PB2_FILES) $(PROTO_DESC_FILES)
44