blob: 7f5394f8a553f39cdd9867a820d9120a6afaffd1 [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
21# openolt.proto and tech_profile.proto
Jason Huang09b73ea2020-01-08 17:52:05 +080022OPENOLT_PROTO_VER ?= v3.1.0
Girish Gowdraddf9a162020-01-27 12:56:27 +053023GRPC_VER ?= v1.10.x
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000024
Craig Lutgenf040dba2018-09-27 11:21:43 -050025CXX ?= g++
Girish Gowdra489425a2020-02-22 13:07:42 +053026CPPFLAGS += `pkg-config --cflags protobuf grpc` -I googleapis/gens -I./
Shad Ansari19249582018-04-30 04:31:00 +000027CXXFLAGS += -std=c++11
Shad Ansari563ea822018-06-28 14:56:27 +000028#LDFLAGS += -L/usr/local/lib `pkg-config --libs protobuf grpc++ grpc` -ldl
Girish Gowdra489425a2020-02-22 13:07:42 +053029PROTOC = $(shell which protoc)
Shad Ansari19249582018-04-30 04:31:00 +000030GRPC_CPP_PLUGIN = grpc_cpp_plugin
Girish Gowdra489425a2020-02-22 13:07:42 +053031GRPC_CPP_PLUGIN_PATH ?= $(shell which grpc_cpp_plugin)
Shad Ansari19249582018-04-30 04:31:00 +000032
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000033OBJS = voltha_protos/tech_profile.pb.o voltha_protos/tech_profile.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 +000034
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000035.DEFAULT_GOAL := all
36
Zack Williams7edc6f92020-04-08 10:37:09 -070037all: googleapis voltha_protos grpc-target protobuf-target libopenoltapi.a
Shad Ansari19249582018-04-30 04:31:00 +000038
39libopenoltapi.a: $(OBJS)
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000040 ar cr $@ $^
Shad Ansari19249582018-04-30 04:31:00 +000041 ranlib $@
42
43googleapis:
44 if [ ! -e "googleapis" ]; then \
nick6fa80732018-05-22 14:47:10 -040045 git clone https://github.com/googleapis/googleapis.git; \
Nicolas Palpacuer59f72ba2018-07-16 15:16:18 -040046 cd googleapis; \
47 git checkout 475d72b7405c92f06d7f2d4aba866278eb5ad8e9; \
48 cd ..; \
Craig Lutgenf040dba2018-09-27 11:21:43 -050049 make -C googleapis LANGUAGE=cpp GRPCPLUGIN=$(GRPC_CPP_PLUGIN_PATH) all; \
Shad Ansari19249582018-04-30 04:31:00 +000050 fi;
51
Zack Williams7edc6f92020-04-08 10:37:09 -070052voltha_protos:
53 mkdir voltha_protos
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000054 if [ ! -e "voltha_protos/openolt.proto" ]; then \
55 wget -O voltha_protos/openolt.proto https://raw.githubusercontent.com/opencord/voltha-protos/$(OPENOLT_PROTO_VER)/protos/voltha_protos/openolt.proto; \
56 fi; \
Girish Gowdrad0b6b4f2019-11-01 13:01:22 +053057 if [ ! -e "voltha_protos/tech_profile.proto" ]; then \
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000058 wget -O voltha_protos/tech_profile.proto https://raw.githubusercontent.com/opencord/voltha-protos/$(OPENOLT_PROTO_VER)/protos/voltha_protos/tech_profile.proto; \
59 fi;
60
Girish Gowdra489425a2020-02-22 13:07:42 +053061grpc-target:
62 $(PROTOC) --proto_path=. -I./googleapis --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) voltha_protos/openolt.proto
63 $(PROTOC) --proto_path=. -I./googleapis --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) voltha_protos/tech_profile.proto
Shad Ansari19249582018-04-30 04:31:00 +000064
Zack Williams7edc6f92020-04-08 10:37:09 -070065protobuf-target: voltha_protos
Girish Gowdra489425a2020-02-22 13:07:42 +053066 $(PROTOC) --proto_path=. -I./googleapis -I./ --cpp_out=. voltha_protos/openolt.proto
67 $(PROTOC) --proto_path=. -I./googleapis -I./ --cpp_out=. voltha_protos/tech_profile.proto
Shad Ansari19249582018-04-30 04:31:00 +000068
69clean:
Zack Williams7edc6f92020-04-08 10:37:09 -070070 rm -rf *.a voltha_protos
Shad Ansari19249582018-04-30 04:31:00 +000071
72distclean: clean
73 rm -rf googleapis
Girish Gowdra489425a2020-02-22 13:07:42 +053074
75.PHONY = grpc-target protobuf-target