blob: 9b042e929b4b98d1a28552c1ab7080a067a2e477 [file] [log] [blame]
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -07001#
Zsolt Haraszti3eb27a52017-01-03 21:56:48 -08002# Copyright 2017 the original author or authors.
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -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
23# This makefile is used only to copy relevant *_pb2.py files from Voltha
24# to allow ofagent to function properly.
25
26PB2_FILES := \
27 voltha_pb2.py \
28 openflow_13_pb2.py
29
30TARGET_PROTO_DIR := $(VOLTHA_BASE)/ofagent/protos
31SOURCE_PROTO_DIR := $(VOLTHA_BASE)/voltha/protos
32
33build: copyfiles
34
35copyfiles:
Zsolt Haraszti1edb8282016-11-08 10:57:19 -080036 rsync -av --include '*/' --exclude='third_party/__init__.py' --include '*.py' --exclude='*' $(SOURCE_PROTO_DIR)/ $(TARGET_PROTO_DIR)
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -070037