blob: 7f2c78c9ea5d730935d0d759e32aad561b30f3e8 [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
22OPENOLT_PROTO_VER ?= v1.0.3
23
Craig Lutgenf040dba2018-09-27 11:21:43 -050024CXX ?= g++
25#powerpc64-fsl-linux-g++
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000026CPPFLAGS += `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
Shad Ansari19249582018-04-30 04:31:00 +000029PROTOC = protoc
30GRPC_CPP_PLUGIN = grpc_cpp_plugin
31GRPC_CPP_PLUGIN_PATH ?= `which $(GRPC_CPP_PLUGIN)`
32
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
37all: googleapis get_openolt_proto 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
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000052get_openolt_proto:
53 if [ ! -e "voltha_protos" ]; then \
54 mkdir voltha_protos; \
55 fi;\
56 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; \
59 if [ ! -e "tech_profile.proto" ]; then \
60 wget -O voltha_protos/tech_profile.proto https://raw.githubusercontent.com/opencord/voltha-protos/$(OPENOLT_PROTO_VER)/protos/voltha_protos/tech_profile.proto; \
61 fi;
62
63.PRECIOUS: voltha_protos/%.grpc.pb.cc
64voltha_protos/%.grpc.pb.cc: voltha_protos/%.proto
Shad Ansari19249582018-04-30 04:31:00 +000065 $(PROTOC) --proto_path=. -I./googleapis --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) $<
66
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000067.PRECIOUS: voltha_protos/%.pb.cc
68voltha_protos/%.pb.cc: voltha_protos/%.proto
69 $(PROTOC) --proto_path=. -I./googleapis -I./ --cpp_out=. $<
Shad Ansari19249582018-04-30 04:31:00 +000070
71clean:
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +000072 rm *.a && cd voltha_protos/ && rm -f *.o *.pb.cc *.pb.h
Shad Ansari19249582018-04-30 04:31:00 +000073
74distclean: clean
75 rm -rf googleapis