xref: /aosp_15_r20/external/grpc-grpc/examples/cpp/route_guide/Makefile (revision cc02d7e222339f7a4f6ba5f422e6413f4bd931f2)
1#
2# Copyright 2015 gRPC authors.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#     http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17# TODO(jtattermusch): Remove the hack to workaround protobuf bug. See https://github.com/protocolbuffers/protobuf/issues/12439
18# Hack: protobuf currently doesn't declare it's absl dependencies when protobuf.pc pkgconfig file is used.
19PROTOBUF_ABSL_DEPS = absl_absl_check absl_absl_log absl_algorithm absl_base absl_bind_front absl_bits absl_btree absl_cleanup absl_cord absl_core_headers absl_debugging absl_die_if_null absl_dynamic_annotations absl_flags absl_flat_hash_map absl_flat_hash_set absl_function_ref absl_hash absl_layout absl_log_initialize absl_log_severity absl_memory absl_node_hash_map absl_node_hash_set absl_optional absl_span absl_status absl_statusor absl_strings absl_synchronization absl_time absl_type_traits absl_utility absl_variant
20# TODO(jtattermusch): Remove the hack to workaround protobuf/utf8_range bug. See https://github.com/protocolbuffers/utf8_range/issues/20
21# Hack: utf8_range (which is protobuf's dependency) currently doesn't have a pkgconfig file, so we need to explicitly
22# tweak the list of libraries to link against to fix the build.
23PROTOBUF_UTF8_RANGE_LINK_LIBS = -lutf8_validity
24
25HOST_SYSTEM = $(shell uname | cut -f 1 -d_)
26SYSTEM ?= $(HOST_SYSTEM)
27CXX = g++
28CPPFLAGS += `pkg-config --cflags protobuf grpc`
29CXXFLAGS += -std=c++14
30ifeq ($(SYSTEM),Darwin)
31LDFLAGS += -L/usr/local/lib `pkg-config --libs --static protobuf grpc++ $(PROTOBUF_ABSL_DEPS)`\
32           $(PROTOBUF_UTF8_RANGE_LINK_LIBS) \
33           -pthread\
34           -lgrpc++_reflection\
35           -ldl
36else
37LDFLAGS += -L/usr/local/lib `pkg-config --libs --static protobuf grpc++ $(PROTOBUF_ABSL_DEPS)`\
38           $(PROTOBUF_UTF8_RANGE_LINK_LIBS) \
39           -pthread\
40           -Wl,--no-as-needed -lgrpc++_reflection -Wl,--as-needed\
41           -ldl
42endif
43PROTOC = protoc
44GRPC_CPP_PLUGIN = grpc_cpp_plugin
45GRPC_CPP_PLUGIN_PATH ?= `which $(GRPC_CPP_PLUGIN)`
46
47PROTOS_PATH = ../../protos
48
49vpath %.proto $(PROTOS_PATH)
50
51all: system-check route_guide_client route_guide_server
52
53route_guide_client: route_guide.pb.o route_guide.grpc.pb.o route_guide_client.o helper.o
54	$(CXX) $^ $(LDFLAGS) -o $@
55
56route_guide_server: route_guide.pb.o route_guide.grpc.pb.o route_guide_server.o helper.o
57	$(CXX) $^ $(LDFLAGS) -o $@
58
59%.grpc.pb.cc: %.proto
60	$(PROTOC) -I $(PROTOS_PATH) --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) $<
61
62%.pb.cc: %.proto
63	$(PROTOC) -I $(PROTOS_PATH) --cpp_out=. $<
64
65clean:
66	rm -f *.o *.pb.cc *.pb.h route_guide_client route_guide_server
67
68
69# The following is to test your system and ensure a smoother experience.
70# They are by no means necessary to actually compile a grpc-enabled software.
71
72PROTOC_CMD = which $(PROTOC)
73PROTOC_CHECK_CMD = $(PROTOC) --version | grep -q 'libprotoc.3\|libprotoc [0-9][0-9]\.'
74PLUGIN_CHECK_CMD = which $(GRPC_CPP_PLUGIN)
75HAS_PROTOC = $(shell $(PROTOC_CMD) > /dev/null && echo true || echo false)
76ifeq ($(HAS_PROTOC),true)
77HAS_VALID_PROTOC = $(shell $(PROTOC_CHECK_CMD) 2> /dev/null && echo true || echo false)
78endif
79HAS_PLUGIN = $(shell $(PLUGIN_CHECK_CMD) > /dev/null && echo true || echo false)
80
81SYSTEM_OK = false
82ifeq ($(HAS_VALID_PROTOC),true)
83ifeq ($(HAS_PLUGIN),true)
84SYSTEM_OK = true
85endif
86endif
87
88system-check:
89ifneq ($(HAS_VALID_PROTOC),true)
90	@echo " DEPENDENCY ERROR"
91	@echo
92	@echo "You don't have protoc 3.0.0 or newer installed in your path."
93	@echo "Please install an up-to-date version of Google protocol buffers."
94	@echo "You can find it here:"
95	@echo
96	@echo "   https://github.com/protocolbuffers/protobuf/releases"
97	@echo
98	@echo "Here is what I get when trying to evaluate your version of protoc:"
99	@echo
100	-$(PROTOC) --version
101	@echo
102	@echo
103endif
104ifneq ($(HAS_PLUGIN),true)
105	@echo " DEPENDENCY ERROR"
106	@echo
107	@echo "You don't have the grpc c++ protobuf plugin installed in your path."
108	@echo "Please install grpc. You can find it here:"
109	@echo
110	@echo "   https://github.com/grpc/grpc"
111	@echo
112	@echo "Here is what I get when trying to detect if you have the plugin:"
113	@echo
114	-which $(GRPC_CPP_PLUGIN)
115	@echo
116	@echo
117endif
118ifneq ($(SYSTEM_OK),true)
119	@false
120endif
121