blob: 2301bfe8adcc82141ecb02244bfd60c3d180ba1c [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 Nursimulu74ecd212017-01-12 16:13:25 -050023PROTOC_PREFIX := /usr/local
24PROTOC_LIBDIR := $(PROTOC_PREFIX)/lib
25
khenaidoo079a7762017-10-26 21:42:05 -040026build: copyprotos copypb2files
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
khenaidoo079a7762017-10-26 21:42:05 -040030TARGET_GOOGLE_API_DIR := $(TARGET_PROTO_DIR)/third_party/google/api
31SOURCE_GOOGLE_API_DIR := $(SOURCE_PROTO_DIR)/third_party/google/api
Khen Nursimulu3869d8d2016-11-28 20:44:28 -050032
Khen Nursimulu74ecd212017-01-12 16:13:25 -050033TARGET_YANG_OPTION_DIR := $(VOLTHA_BASE)/netconf/protoc_plugins
34YANG_OPTION_FILE := yang_options_pb2.py
Khen Nursimulu3676b7c2017-01-31 13:48:38 -050035YANG_PROTO_FILE := yang_options.proto
36SCHEMA_PROTO_FILE := schema.proto
Khen Nursimulu74ecd212017-01-12 16:13:25 -050037
Khen Nursimulu3676b7c2017-01-31 13:48:38 -050038copyprotos:
39 cp $(SOURCE_PROTO_DIR)/$(SCHEMA_PROTO_FILE) $(TARGET_PROTO_DIR)
40 cp $(SOURCE_PROTO_DIR)/$(YANG_PROTO_FILE) $(TARGET_PROTO_DIR)
41
42copypb2files:
Khen Nursimulu3869d8d2016-11-28 20:44:28 -050043 rsync -av --include '*/' --exclude='third_party/__init__.py' --include '*.py' --exclude='*' $(SOURCE_PROTO_DIR)/ $(TARGET_PROTO_DIR)
khenaidoo079a7762017-10-26 21:42:05 -040044 rsync -av --include '*/' --exclude='third_party/__init__.py' --include '*.py' --include '*.desc' --include '*.proto' --exclude='*' $(SOURCE_GOOGLE_API_DIR)/ $(TARGET_GOOGLE_API_DIR)
Khen Nursimulu74ecd212017-01-12 16:13:25 -050045 cp $(SOURCE_PROTO_DIR)/$(YANG_OPTION_FILE) $(TARGET_YANG_OPTION_DIR)
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -050046
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -050047clean:
Khen Nursimulu3676b7c2017-01-31 13:48:38 -050048 rm -f $(TARGET_YANG_OPTION_DIR)/$(YANG_OPTION_FILE)
khenaidoo079a7762017-10-26 21:42:05 -040049 rm -f $(TARGET_PROTO_DIR)/*_pb2*.py
50 rm -f $(TARGET_PROTO_DIR)/*_pb2*.pyc
Khen Nursimulu3676b7c2017-01-31 13:48:38 -050051 rm -f $(TARGET_PROTO_DIR)/*.proto
khenaidoo079a7762017-10-26 21:42:05 -040052 rm -f $(TARGET_GOOGLE_API_DIR)/*_pb2*.py
53 rm -f $(TARGET_GOOGLE_API_DIR)/*_pb2*.pyc
54 rm -f $(TARGET_GOOGLE_API_DIR)/*.desc
55 rm -f $(TARGET_GOOGLE_API_DIR)/*.proto
56
Khen Nursimulu74ecd212017-01-12 16:13:25 -050057
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -050058