Khen Nursimulu | 3869d8d | 2016-11-28 20:44:28 -0500 | [diff] [blame] | 1 | # |
| 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 | |
| 19 | ifeq ($(VOLTHA_BASE)_set,_set) |
| 20 | $(error To get started, please source the env.sh file from Voltha top level directory) |
| 21 | endif |
| 22 | |
Khen Nursimulu | 74ecd21 | 2017-01-12 16:13:25 -0500 | [diff] [blame] | 23 | PROTO_FILES := $(wildcard *.proto) $(wildcard third_party/google/api/*proto) |
| 24 | PROTO_PB2_FILES := $(foreach f,$(PROTO_FILES),$(subst .proto,_pb2.py,$(f))) |
| 25 | PROTO_DESC_FILES := $(foreach f,$(PROTO_FILES),$(subst .proto,.desc,$(f))) |
| 26 | |
| 27 | PROTOC_PREFIX := /usr/local |
| 28 | PROTOC_LIBDIR := $(PROTOC_PREFIX)/lib |
| 29 | |
Khen Nursimulu | 3676b7c | 2017-01-31 13:48:38 -0500 | [diff] [blame] | 30 | build: copyprotos $(PROTO_PB2_FILES) copypb2files |
Khen Nursimulu | 74ecd21 | 2017-01-12 16:13:25 -0500 | [diff] [blame] | 31 | |
| 32 | %_pb2.py: %.proto Makefile |
| 33 | @echo "Building protocol buffer artifacts from $<" |
| 34 | env LD_LIBRARY_PATH=$(PROTOC_LIBDIR) python -m grpc.tools.protoc \ |
| 35 | -I. \ |
| 36 | -I./third_party \ |
| 37 | --python_out=. \ |
| 38 | --grpc_python_out=. \ |
| 39 | $< |
Khen Nursimulu | 3869d8d | 2016-11-28 20:44:28 -0500 | [diff] [blame] | 40 | |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 41 | TARGET_PROTO_DIR := $(VOLTHA_BASE)/netconf/protos |
Khen Nursimulu | 3869d8d | 2016-11-28 20:44:28 -0500 | [diff] [blame] | 42 | SOURCE_PROTO_DIR := $(VOLTHA_BASE)/voltha/protos |
| 43 | |
Khen Nursimulu | 74ecd21 | 2017-01-12 16:13:25 -0500 | [diff] [blame] | 44 | TARGET_YANG_OPTION_DIR := $(VOLTHA_BASE)/netconf/protoc_plugins |
| 45 | YANG_OPTION_FILE := yang_options_pb2.py |
Khen Nursimulu | 3676b7c | 2017-01-31 13:48:38 -0500 | [diff] [blame] | 46 | YANG_PROTO_FILE := yang_options.proto |
| 47 | SCHEMA_PROTO_FILE := schema.proto |
Khen Nursimulu | 74ecd21 | 2017-01-12 16:13:25 -0500 | [diff] [blame] | 48 | |
Khen Nursimulu | 3676b7c | 2017-01-31 13:48:38 -0500 | [diff] [blame] | 49 | copyprotos: |
| 50 | cp $(SOURCE_PROTO_DIR)/$(SCHEMA_PROTO_FILE) $(TARGET_PROTO_DIR) |
| 51 | cp $(SOURCE_PROTO_DIR)/$(YANG_PROTO_FILE) $(TARGET_PROTO_DIR) |
| 52 | |
| 53 | copypb2files: |
Khen Nursimulu | 3869d8d | 2016-11-28 20:44:28 -0500 | [diff] [blame] | 54 | rsync -av --include '*/' --exclude='third_party/__init__.py' --include '*.py' --exclude='*' $(SOURCE_PROTO_DIR)/ $(TARGET_PROTO_DIR) |
Khen Nursimulu | 74ecd21 | 2017-01-12 16:13:25 -0500 | [diff] [blame] | 55 | cp $(SOURCE_PROTO_DIR)/$(YANG_OPTION_FILE) $(TARGET_YANG_OPTION_DIR) |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 56 | |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 57 | clean: |
| 58 | rm -f $(PROTO_PB2_FILES) $(PROTO_DESC_FILES) |
Khen Nursimulu | 3676b7c | 2017-01-31 13:48:38 -0500 | [diff] [blame] | 59 | rm -f $(TARGET_YANG_OPTION_DIR)/$(YANG_OPTION_FILE) |
| 60 | rm -f $(TARGET_PROTO_DIR)/*.py |
| 61 | rm -f $(TARGET_PROTO_DIR)/*.pyc |
| 62 | rm -f $(TARGET_PROTO_DIR)/*.proto |
Khen Nursimulu | 74ecd21 | 2017-01-12 16:13:25 -0500 | [diff] [blame] | 63 | |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 64 | |