blob: 046ca499af80244c468d26aae90829cc9a694e09 [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
20ifeq ($(SYSTEM),Darwin)
21LDFLAGS += -L/usr/local/lib `pkg-config --libs protobuf grpc++ grpc`\
22 -lgrpc++_reflection\
23 -ldl
24else
25LDFLAGS += -L/usr/local/lib `pkg-config --libs protobuf grpc++ grpc`\
26 -Wl,--no-as-needed -lgrpc++_reflection -Wl,--as-needed\
27 -ldl
28endif
29PROTOC = protoc
30GRPC_CPP_PLUGIN = grpc_cpp_plugin
31GRPC_CPP_PLUGIN_PATH ?= `which $(GRPC_CPP_PLUGIN)`
32
33OBJS = 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
34
35all: googleapis libopenoltapi.a
36
37libopenoltapi.a: $(OBJS)
38 ar ru $@ $^
39 ranlib $@
40
41googleapis:
42 if [ ! -e "googleapis" ]; then \
nick6fa80732018-05-22 14:47:10 -040043 git clone https://github.com/googleapis/googleapis.git; \
Shad Ansari19249582018-04-30 04:31:00 +000044 make -C googleapis LANGUAGE=cpp all; \
45 fi;
46
47.PRECIOUS: %.grpc.pb.cc
48%.grpc.pb.cc: %.proto
49 $(PROTOC) --proto_path=. -I./googleapis --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) $<
50
51.PRECIOUS: %.pb.cc
52%.pb.cc: %.proto
53 $(PROTOC) --proto_path=. -I./googleapis --cpp_out=. $<
54
55clean:
56 rm -f *.o *.pb.cc *.pb.h *.a
57
58distclean: clean
59 rm -rf googleapis