blob: 17959771ec2910afc61a6df45e5ef338becf8bd7 [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)
17CXX = g++
18CPPFLAGS += `pkg-config --cflags protobuf grpc` -I googleapis/gens
19CXXFLAGS += -std=c++11
Shad Ansari563ea822018-06-28 14:56:27 +000020#LDFLAGS += -L/usr/local/lib `pkg-config --libs protobuf grpc++ grpc` -ldl
Shad Ansari19249582018-04-30 04:31:00 +000021PROTOC = protoc
22GRPC_CPP_PLUGIN = grpc_cpp_plugin
23GRPC_CPP_PLUGIN_PATH ?= `which $(GRPC_CPP_PLUGIN)`
24
25OBJS = openolt.pb.o 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
26
27all: googleapis libopenoltapi.a
28
29libopenoltapi.a: $(OBJS)
30 ar ru $@ $^
31 ranlib $@
32
33googleapis:
34 if [ ! -e "googleapis" ]; then \
nick6fa80732018-05-22 14:47:10 -040035 git clone https://github.com/googleapis/googleapis.git; \
Shad Ansari19249582018-04-30 04:31:00 +000036 make -C googleapis LANGUAGE=cpp all; \
37 fi;
38
39.PRECIOUS: %.grpc.pb.cc
40%.grpc.pb.cc: %.proto
41 $(PROTOC) --proto_path=. -I./googleapis --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) $<
42
43.PRECIOUS: %.pb.cc
44%.pb.cc: %.proto
45 $(PROTOC) --proto_path=. -I./googleapis --cpp_out=. $<
46
47clean:
48 rm -f *.o *.pb.cc *.pb.h *.a
49
50distclean: clean
51 rm -rf googleapis