blob: e56d45ef7d1d05d7cb45ab522dd34e7fbd8c9f7d [file] [log] [blame]
Shad Ansari19249582018-04-30 04:31:00 +00001# Copyright (c) 2018 Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at:
6#
7# http:#www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15HOST_SYSTEM = $(shell uname | cut -f 1 -d_)
16SYSTEM ?= $(HOST_SYSTEM)
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000017
18# OpenOLT Proto version.
19# This specifies the GIT tag in https://github.com/opencord/voltha-protos
20# repo that we need to refer to, to pick the right version of
Girish Gowdra252f4972020-09-07 21:24:01 -070021# openolt.proto, ext_config.proto and tech_profile.proto
Girish Gowdra5287fde2021-07-31 00:41:45 +000022OPENOLT_PROTO_VER ?= v5.1.0
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000023
Craig Lutgenf040dba2018-09-27 11:21:43 -050024CXX ?= g++
Girish Gowdra489425a2020-02-22 13:07:42 +053025CPPFLAGS += `pkg-config --cflags protobuf grpc` -I googleapis/gens -I./
Shad Ansari19249582018-04-30 04:31:00 +000026CXXFLAGS += -std=c++11
Shad Ansari563ea822018-06-28 14:56:27 +000027#LDFLAGS += -L/usr/local/lib `pkg-config --libs protobuf grpc++ grpc` -ldl
Girish Gowdra489425a2020-02-22 13:07:42 +053028PROTOC = $(shell which protoc)
Shad Ansari19249582018-04-30 04:31:00 +000029GRPC_CPP_PLUGIN = grpc_cpp_plugin
Girish Gowdra489425a2020-02-22 13:07:42 +053030GRPC_CPP_PLUGIN_PATH ?= $(shell which grpc_cpp_plugin)
Shad Ansari19249582018-04-30 04:31:00 +000031
Girish Gowdra5287fde2021-07-31 00:41:45 +000032OBJS = voltha_protos/common.pb.o voltha_protos/common.grpc.pb.o voltha_protos/tech_profile.pb.o voltha_protos/tech_profile.grpc.pb.o voltha_protos/ext_config.pb.o voltha_protos/ext_config.grpc.pb.o voltha_protos/extensions.pb.o voltha_protos/extensions.grpc.pb.o voltha_protos/openolt.pb.o voltha_protos/openolt.grpc.pb.o ./googleapis/gens/google/api/annotations.grpc.pb.o ./googleapis/gens/google/api/annotations.pb.o ./googleapis/gens/google/api/http.pb.o
Shad Ansari19249582018-04-30 04:31:00 +000033
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000034.DEFAULT_GOAL := all
35
Zack Williams8dbb1752020-04-08 10:37:09 -070036all: googleapis voltha_protos grpc-target protobuf-target libopenoltapi.a
Shad Ansari19249582018-04-30 04:31:00 +000037
38libopenoltapi.a: $(OBJS)
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000039 ar cr $@ $^
Shad Ansari19249582018-04-30 04:31:00 +000040 ranlib $@
41
42googleapis:
43 if [ ! -e "googleapis" ]; then \
nick6fa80732018-05-22 14:47:10 -040044 git clone https://github.com/googleapis/googleapis.git; \
Nicolas Palpacuer59f72ba2018-07-16 15:16:18 -040045 cd googleapis; \
46 git checkout 475d72b7405c92f06d7f2d4aba866278eb5ad8e9; \
47 cd ..; \
Craig Lutgenf040dba2018-09-27 11:21:43 -050048 make -C googleapis LANGUAGE=cpp GRPCPLUGIN=$(GRPC_CPP_PLUGIN_PATH) all; \
Shad Ansari19249582018-04-30 04:31:00 +000049 fi;
50
Zack Williams8dbb1752020-04-08 10:37:09 -070051voltha_protos:
52 mkdir voltha_protos
Burak Gurdag30222452020-04-23 20:00:52 +000053 if [ ! -e "voltha_protos/common.proto" ]; then \
54 wget -O voltha_protos/common.proto https://raw.githubusercontent.com/opencord/voltha-protos/$(OPENOLT_PROTO_VER)/protos/voltha_protos/common.proto; \
55 fi; \
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000056 if [ ! -e "voltha_protos/openolt.proto" ]; then \
57 wget -O voltha_protos/openolt.proto https://raw.githubusercontent.com/opencord/voltha-protos/$(OPENOLT_PROTO_VER)/protos/voltha_protos/openolt.proto; \
58 fi; \
Girish Gowdrad0b6b4f2019-11-01 13:01:22 +053059 if [ ! -e "voltha_protos/tech_profile.proto" ]; then \
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000060 wget -O voltha_protos/tech_profile.proto https://raw.githubusercontent.com/opencord/voltha-protos/$(OPENOLT_PROTO_VER)/protos/voltha_protos/tech_profile.proto; \
kesavandc1f2db92020-08-31 15:32:06 +053061 fi; \
62 if [ ! -e "voltha_protos/ext_config.proto" ]; then \
63 wget -O voltha_protos/ext_config.proto https://raw.githubusercontent.com/opencord/voltha-protos/$(OPENOLT_PROTO_VER)/protos/voltha_protos/ext_config.proto; \
64 fi;
Girish Gowdra5287fde2021-07-31 00:41:45 +000065 if [ ! -e "voltha_protos/extensions.proto" ]; then \
66 wget -O voltha_protos/extensions.proto https://raw.githubusercontent.com/opencord/voltha-protos/$(OPENOLT_PROTO_VER)/protos/voltha_protos/extensions.proto; \
67 fi;
kesavandc1f2db92020-08-31 15:32:06 +053068
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000069
Girish Gowdra489425a2020-02-22 13:07:42 +053070grpc-target:
Burak Gurdag30222452020-04-23 20:00:52 +000071 $(PROTOC) --proto_path=. -I./googleapis --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) voltha_protos/common.proto
Girish Gowdra489425a2020-02-22 13:07:42 +053072 $(PROTOC) --proto_path=. -I./googleapis --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) voltha_protos/openolt.proto
73 $(PROTOC) --proto_path=. -I./googleapis --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) voltha_protos/tech_profile.proto
kesavandc1f2db92020-08-31 15:32:06 +053074 $(PROTOC) --proto_path=. -I./googleapis --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) voltha_protos/ext_config.proto
Girish Gowdra5287fde2021-07-31 00:41:45 +000075 $(PROTOC) --proto_path=. -I./googleapis --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) voltha_protos/extensions.proto
Shad Ansari19249582018-04-30 04:31:00 +000076
Zack Williams8dbb1752020-04-08 10:37:09 -070077protobuf-target: voltha_protos
Burak Gurdag30222452020-04-23 20:00:52 +000078 $(PROTOC) --proto_path=. -I./googleapis -I./ --cpp_out=. voltha_protos/common.proto
Girish Gowdra489425a2020-02-22 13:07:42 +053079 $(PROTOC) --proto_path=. -I./googleapis -I./ --cpp_out=. voltha_protos/openolt.proto
80 $(PROTOC) --proto_path=. -I./googleapis -I./ --cpp_out=. voltha_protos/tech_profile.proto
kesavandc1f2db92020-08-31 15:32:06 +053081 $(PROTOC) --proto_path=. -I./googleapis -I./ --cpp_out=. voltha_protos/ext_config.proto
Girish Gowdra5287fde2021-07-31 00:41:45 +000082 $(PROTOC) --proto_path=. -I./googleapis -I./ --cpp_out=. voltha_protos/extensions.proto
Shad Ansari19249582018-04-30 04:31:00 +000083
84clean:
Zack Williams8dbb1752020-04-08 10:37:09 -070085 rm -rf *.a voltha_protos
Shad Ansari19249582018-04-30 04:31:00 +000086
87distclean: clean
88 rm -rf googleapis
Girish Gowdra489425a2020-02-22 13:07:42 +053089
90.PHONY = grpc-target protobuf-target