blob: df82f4688fc527df57a451f70411c1ea91372190 [file] [log] [blame]
Yang Gaod9569372015-02-19 14:22:52 -08001#
Craig Tiller6169d5f2016-03-31 07:46:18 -07002# Copyright 2015, Google Inc.
Yang Gaod9569372015-02-19 14:22:52 -08003# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met:
8#
9# * Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# * Redistributions in binary form must reproduce the above
12# copyright notice, this list of conditions and the following disclaimer
13# in the documentation and/or other materials provided with the
14# distribution.
15# * Neither the name of Google Inc. nor the names of its
16# contributors may be used to endorse or promote products derived from
17# this software without specific prior written permission.
18#
19# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30#
31
Muxi Yancd0d8ae2016-07-26 14:13:46 -070032HOST_SYSTEM = $(shell uname | cut -f 1 -d_)
33SYSTEM ?= $(HOST_SYSTEM)
Nicolas "Pixel" Nobleb7538ee2015-02-20 22:56:43 +010034CXX = g++
Nicolas "Pixel" Noble0118cf02015-03-06 22:42:02 +010035CPPFLAGS += -I/usr/local/include -pthread
36CXXFLAGS += -std=c++11
Muxi Yancd0d8ae2016-07-26 14:13:46 -070037ifeq ($(SYSTEM),Darwin)
Yuchen Zeng1c58bd22016-07-07 14:17:32 -070038LDFLAGS += -L/usr/local/lib `pkg-config --libs grpc++ grpc` \
Muxi Yan4e3df002016-07-26 13:28:54 -070039 -lgrpc++_reflection \
Yuchen Zeng1c58bd22016-07-07 14:17:32 -070040 -lprotobuf -lpthread -ldl
Muxi Yancd0d8ae2016-07-26 14:13:46 -070041else
42LDFLAGS += -L/usr/local/lib `pkg-config --libs grpc++ grpc` \
43 -Wl,--no-as-needed -lgrpc++_reflection -Wl,--as-needed \
44 -lprotobuf -lpthread -ldl
45endif
Nicolas "Pixel" Nobleb7538ee2015-02-20 22:56:43 +010046PROTOC = protoc
47GRPC_CPP_PLUGIN = grpc_cpp_plugin
48GRPC_CPP_PLUGIN_PATH ?= `which $(GRPC_CPP_PLUGIN)`
Yang Gaod9569372015-02-19 14:22:52 -080049
Nicolas "Pixel" Nobleb7538ee2015-02-20 22:56:43 +010050PROTOS_PATH = ../../protos
51
52vpath %.proto $(PROTOS_PATH)
53
Michael Yeh470cbd12016-05-04 12:39:20 -070054all: system-check greeter_client greeter_server greeter_async_client greeter_async_client2 greeter_async_server
Yang Gaod9569372015-02-19 14:22:52 -080055
Yang Gao8d7ce532015-04-13 09:34:53 -070056greeter_client: helloworld.pb.o helloworld.grpc.pb.o greeter_client.o
Nicolas "Pixel" Nobleb7538ee2015-02-20 22:56:43 +010057 $(CXX) $^ $(LDFLAGS) -o $@
Yang Gao72bc5642015-02-19 14:45:41 -080058
Yang Gao8d7ce532015-04-13 09:34:53 -070059greeter_server: helloworld.pb.o helloworld.grpc.pb.o greeter_server.o
Nicolas "Pixel" Nobleb7538ee2015-02-20 22:56:43 +010060 $(CXX) $^ $(LDFLAGS) -o $@
61
Yang Gaobe8ac562015-04-14 00:15:10 -070062greeter_async_client: helloworld.pb.o helloworld.grpc.pb.o greeter_async_client.o
63 $(CXX) $^ $(LDFLAGS) -o $@
64
Michael Yeh470cbd12016-05-04 12:39:20 -070065greeter_async_client2: helloworld.pb.o helloworld.grpc.pb.o greeter_async_client2.o
66 $(CXX) $^ $(LDFLAGS) -o $@
67
Yang Gaobe8ac562015-04-14 00:15:10 -070068greeter_async_server: helloworld.pb.o helloworld.grpc.pb.o greeter_async_server.o
69 $(CXX) $^ $(LDFLAGS) -o $@
70
David Garcia Quintas6bd7b972016-01-27 19:21:12 -080071.PRECIOUS: %.grpc.pb.cc
Nicolas "Pixel" Noble9efc0832015-04-10 00:15:08 +020072%.grpc.pb.cc: %.proto
73 $(PROTOC) -I $(PROTOS_PATH) --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) $<
74
David Garcia Quintas6bd7b972016-01-27 19:21:12 -080075.PRECIOUS: %.pb.cc
Nicolas "Pixel" Nobleb7538ee2015-02-20 22:56:43 +010076%.pb.cc: %.proto
Nicolas "Pixel" Noble9efc0832015-04-10 00:15:08 +020077 $(PROTOC) -I $(PROTOS_PATH) --cpp_out=. $<
Yang Gaod9569372015-02-19 14:22:52 -080078
79clean:
Michael Yeh470cbd12016-05-04 12:39:20 -070080 rm -f *.o *.pb.cc *.pb.h greeter_client greeter_server greeter_async_client greeter_async_client2 greeter_async_server
Yang Gaod9569372015-02-19 14:22:52 -080081
Nicolas "Pixel" Nobleb7538ee2015-02-20 22:56:43 +010082
83# The following is to test your system and ensure a smoother experience.
84# They are by no means necessary to actually compile a grpc-enabled software.
85
86PROTOC_CMD = which $(PROTOC)
87PROTOC_CHECK_CMD = $(PROTOC) --version | grep -q libprotoc.3
88PLUGIN_CHECK_CMD = which $(GRPC_CPP_PLUGIN)
89HAS_PROTOC = $(shell $(PROTOC_CMD) > /dev/null && echo true || echo false)
90ifeq ($(HAS_PROTOC),true)
91HAS_VALID_PROTOC = $(shell $(PROTOC_CHECK_CMD) 2> /dev/null && echo true || echo false)
92endif
93HAS_PLUGIN = $(shell $(PLUGIN_CHECK_CMD) > /dev/null && echo true || echo false)
94
95SYSTEM_OK = false
96ifeq ($(HAS_VALID_PROTOC),true)
97ifeq ($(HAS_PLUGIN),true)
98SYSTEM_OK = true
99endif
100endif
101
102system-check:
103ifneq ($(HAS_VALID_PROTOC),true)
104 @echo " DEPENDENCY ERROR"
105 @echo
106 @echo "You don't have protoc 3.0.0 installed in your path."
107 @echo "Please install Google protocol buffers 3.0.0 and its compiler."
108 @echo "You can find it here:"
109 @echo
Jorge Canizalesf29e3642016-07-01 15:56:57 -0700110 @echo " https://github.com/google/protobuf/releases/tag/v3.0.0-beta-3.3"
Nicolas "Pixel" Nobleb7538ee2015-02-20 22:56:43 +0100111 @echo
112 @echo "Here is what I get when trying to evaluate your version of protoc:"
113 @echo
114 -$(PROTOC) --version
115 @echo
116 @echo
117endif
118ifneq ($(HAS_PLUGIN),true)
119 @echo " DEPENDENCY ERROR"
120 @echo
121 @echo "You don't have the grpc c++ protobuf plugin installed in your path."
122 @echo "Please install grpc. You can find it here:"
123 @echo
124 @echo " https://github.com/grpc/grpc"
125 @echo
126 @echo "Here is what I get when trying to detect if you have the plugin:"
127 @echo
128 -which $(GRPC_CPP_PLUGIN)
129 @echo
130 @echo
131endif
132ifneq ($(SYSTEM_OK),true)
133 @false
134endif