Shad Ansari | 1924958 | 2018-04-30 04:31:00 +0000 | [diff] [blame] | 1 | # 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 | |
| 15 | HOST_SYSTEM = $(shell uname | cut -f 1 -d_) |
| 16 | SYSTEM ?= $(HOST_SYSTEM) |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 17 | |
| 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 Huang | 09b73ea | 2020-01-08 17:52:05 +0800 | [diff] [blame^] | 22 | OPENOLT_PROTO_VER ?= v3.1.0 |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 23 | |
Craig Lutgen | f040dba | 2018-09-27 11:21:43 -0500 | [diff] [blame] | 24 | CXX ?= g++ |
| 25 | #powerpc64-fsl-linux-g++ |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 26 | CPPFLAGS += `pkg-config --cflags protobuf grpc` -I googleapis/gens -I./ |
Shad Ansari | 1924958 | 2018-04-30 04:31:00 +0000 | [diff] [blame] | 27 | CXXFLAGS += -std=c++11 |
Shad Ansari | 563ea82 | 2018-06-28 14:56:27 +0000 | [diff] [blame] | 28 | #LDFLAGS += -L/usr/local/lib `pkg-config --libs protobuf grpc++ grpc` -ldl |
Shad Ansari | 1924958 | 2018-04-30 04:31:00 +0000 | [diff] [blame] | 29 | PROTOC = protoc |
| 30 | GRPC_CPP_PLUGIN = grpc_cpp_plugin |
| 31 | GRPC_CPP_PLUGIN_PATH ?= `which $(GRPC_CPP_PLUGIN)` |
| 32 | |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 33 | OBJS = 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 Ansari | 1924958 | 2018-04-30 04:31:00 +0000 | [diff] [blame] | 34 | |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 35 | .DEFAULT_GOAL := all |
| 36 | |
| 37 | all: googleapis get_openolt_proto libopenoltapi.a |
Shad Ansari | 1924958 | 2018-04-30 04:31:00 +0000 | [diff] [blame] | 38 | |
| 39 | libopenoltapi.a: $(OBJS) |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 40 | ar cr $@ $^ |
Shad Ansari | 1924958 | 2018-04-30 04:31:00 +0000 | [diff] [blame] | 41 | ranlib $@ |
| 42 | |
| 43 | googleapis: |
| 44 | if [ ! -e "googleapis" ]; then \ |
nick | 6fa8073 | 2018-05-22 14:47:10 -0400 | [diff] [blame] | 45 | git clone https://github.com/googleapis/googleapis.git; \ |
Nicolas Palpacuer | 59f72ba | 2018-07-16 15:16:18 -0400 | [diff] [blame] | 46 | cd googleapis; \ |
| 47 | git checkout 475d72b7405c92f06d7f2d4aba866278eb5ad8e9; \ |
| 48 | cd ..; \ |
Craig Lutgen | f040dba | 2018-09-27 11:21:43 -0500 | [diff] [blame] | 49 | make -C googleapis LANGUAGE=cpp GRPCPLUGIN=$(GRPC_CPP_PLUGIN_PATH) all; \ |
Shad Ansari | 1924958 | 2018-04-30 04:31:00 +0000 | [diff] [blame] | 50 | fi; |
| 51 | |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 52 | get_openolt_proto: |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 53 | if [ ! -e "voltha_protos/openolt.proto" ]; then \ |
| 54 | wget -O voltha_protos/openolt.proto https://raw.githubusercontent.com/opencord/voltha-protos/$(OPENOLT_PROTO_VER)/protos/voltha_protos/openolt.proto; \ |
| 55 | fi; \ |
Girish Gowdra | d0b6b4f | 2019-11-01 13:01:22 +0530 | [diff] [blame] | 56 | if [ ! -e "voltha_protos/tech_profile.proto" ]; then \ |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 57 | wget -O voltha_protos/tech_profile.proto https://raw.githubusercontent.com/opencord/voltha-protos/$(OPENOLT_PROTO_VER)/protos/voltha_protos/tech_profile.proto; \ |
| 58 | fi; |
| 59 | |
| 60 | .PRECIOUS: voltha_protos/%.grpc.pb.cc |
| 61 | voltha_protos/%.grpc.pb.cc: voltha_protos/%.proto |
Shad Ansari | 1924958 | 2018-04-30 04:31:00 +0000 | [diff] [blame] | 62 | $(PROTOC) --proto_path=. -I./googleapis --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) $< |
| 63 | |
Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 64 | .PRECIOUS: voltha_protos/%.pb.cc |
| 65 | voltha_protos/%.pb.cc: voltha_protos/%.proto |
| 66 | $(PROTOC) --proto_path=. -I./googleapis -I./ --cpp_out=. $< |
Shad Ansari | 1924958 | 2018-04-30 04:31:00 +0000 | [diff] [blame] | 67 | |
| 68 | clean: |
Girish Gowdra | d0b6b4f | 2019-11-01 13:01:22 +0530 | [diff] [blame] | 69 | rm -f *.a && cd voltha_protos/ && rm -f *.o *.pb.cc *.pb.h |
Shad Ansari | 1924958 | 2018-04-30 04:31:00 +0000 | [diff] [blame] | 70 | |
| 71 | distclean: clean |
| 72 | rm -rf googleapis |