Yang Gao | d956937 | 2015-02-19 14:22:52 -0800 | [diff] [blame] | 1 | # |
Craig Tiller | 6169d5f | 2016-03-31 07:46:18 -0700 | [diff] [blame] | 2 | # Copyright 2015, Google Inc. |
Yang Gao | d956937 | 2015-02-19 14:22:52 -0800 | [diff] [blame] | 3 | # 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 | |
Nicolas "Pixel" Noble | b7538ee | 2015-02-20 22:56:43 +0100 | [diff] [blame] | 32 | CXX = g++ |
Nicolas "Pixel" Noble | 0118cf0 | 2015-03-06 22:42:02 +0100 | [diff] [blame] | 33 | CPPFLAGS += -I/usr/local/include -pthread |
| 34 | CXXFLAGS += -std=c++11 |
chedeti | 3626efb | 2016-05-19 13:01:07 -0700 | [diff] [blame] | 35 | LDFLAGS += -L/usr/local/lib `pkg-config --libs grpc++ grpc` -lprotobuf -lpthread -ldl |
Nicolas "Pixel" Noble | b7538ee | 2015-02-20 22:56:43 +0100 | [diff] [blame] | 36 | PROTOC = protoc |
| 37 | GRPC_CPP_PLUGIN = grpc_cpp_plugin |
| 38 | GRPC_CPP_PLUGIN_PATH ?= `which $(GRPC_CPP_PLUGIN)` |
Yang Gao | d956937 | 2015-02-19 14:22:52 -0800 | [diff] [blame] | 39 | |
Nicolas "Pixel" Noble | b7538ee | 2015-02-20 22:56:43 +0100 | [diff] [blame] | 40 | PROTOS_PATH = ../../protos |
| 41 | |
| 42 | vpath %.proto $(PROTOS_PATH) |
| 43 | |
Michael Yeh | 470cbd1 | 2016-05-04 12:39:20 -0700 | [diff] [blame] | 44 | all: system-check greeter_client greeter_server greeter_async_client greeter_async_client2 greeter_async_server |
Yang Gao | d956937 | 2015-02-19 14:22:52 -0800 | [diff] [blame] | 45 | |
Yang Gao | 8d7ce53 | 2015-04-13 09:34:53 -0700 | [diff] [blame] | 46 | greeter_client: helloworld.pb.o helloworld.grpc.pb.o greeter_client.o |
Nicolas "Pixel" Noble | b7538ee | 2015-02-20 22:56:43 +0100 | [diff] [blame] | 47 | $(CXX) $^ $(LDFLAGS) -o $@ |
Yang Gao | 72bc564 | 2015-02-19 14:45:41 -0800 | [diff] [blame] | 48 | |
Yang Gao | 8d7ce53 | 2015-04-13 09:34:53 -0700 | [diff] [blame] | 49 | greeter_server: helloworld.pb.o helloworld.grpc.pb.o greeter_server.o |
Nicolas "Pixel" Noble | b7538ee | 2015-02-20 22:56:43 +0100 | [diff] [blame] | 50 | $(CXX) $^ $(LDFLAGS) -o $@ |
| 51 | |
Yang Gao | be8ac56 | 2015-04-14 00:15:10 -0700 | [diff] [blame] | 52 | greeter_async_client: helloworld.pb.o helloworld.grpc.pb.o greeter_async_client.o |
| 53 | $(CXX) $^ $(LDFLAGS) -o $@ |
| 54 | |
Michael Yeh | 470cbd1 | 2016-05-04 12:39:20 -0700 | [diff] [blame] | 55 | greeter_async_client2: helloworld.pb.o helloworld.grpc.pb.o greeter_async_client2.o |
| 56 | $(CXX) $^ $(LDFLAGS) -o $@ |
| 57 | |
Yang Gao | be8ac56 | 2015-04-14 00:15:10 -0700 | [diff] [blame] | 58 | greeter_async_server: helloworld.pb.o helloworld.grpc.pb.o greeter_async_server.o |
| 59 | $(CXX) $^ $(LDFLAGS) -o $@ |
| 60 | |
David Garcia Quintas | 6bd7b97 | 2016-01-27 19:21:12 -0800 | [diff] [blame] | 61 | .PRECIOUS: %.grpc.pb.cc |
Nicolas "Pixel" Noble | 9efc083 | 2015-04-10 00:15:08 +0200 | [diff] [blame] | 62 | %.grpc.pb.cc: %.proto |
| 63 | $(PROTOC) -I $(PROTOS_PATH) --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) $< |
| 64 | |
David Garcia Quintas | 6bd7b97 | 2016-01-27 19:21:12 -0800 | [diff] [blame] | 65 | .PRECIOUS: %.pb.cc |
Nicolas "Pixel" Noble | b7538ee | 2015-02-20 22:56:43 +0100 | [diff] [blame] | 66 | %.pb.cc: %.proto |
Nicolas "Pixel" Noble | 9efc083 | 2015-04-10 00:15:08 +0200 | [diff] [blame] | 67 | $(PROTOC) -I $(PROTOS_PATH) --cpp_out=. $< |
Yang Gao | d956937 | 2015-02-19 14:22:52 -0800 | [diff] [blame] | 68 | |
| 69 | clean: |
Michael Yeh | 470cbd1 | 2016-05-04 12:39:20 -0700 | [diff] [blame] | 70 | rm -f *.o *.pb.cc *.pb.h greeter_client greeter_server greeter_async_client greeter_async_client2 greeter_async_server |
Yang Gao | d956937 | 2015-02-19 14:22:52 -0800 | [diff] [blame] | 71 | |
Nicolas "Pixel" Noble | b7538ee | 2015-02-20 22:56:43 +0100 | [diff] [blame] | 72 | |
| 73 | # The following is to test your system and ensure a smoother experience. |
| 74 | # They are by no means necessary to actually compile a grpc-enabled software. |
| 75 | |
| 76 | PROTOC_CMD = which $(PROTOC) |
| 77 | PROTOC_CHECK_CMD = $(PROTOC) --version | grep -q libprotoc.3 |
| 78 | PLUGIN_CHECK_CMD = which $(GRPC_CPP_PLUGIN) |
| 79 | HAS_PROTOC = $(shell $(PROTOC_CMD) > /dev/null && echo true || echo false) |
| 80 | ifeq ($(HAS_PROTOC),true) |
| 81 | HAS_VALID_PROTOC = $(shell $(PROTOC_CHECK_CMD) 2> /dev/null && echo true || echo false) |
| 82 | endif |
| 83 | HAS_PLUGIN = $(shell $(PLUGIN_CHECK_CMD) > /dev/null && echo true || echo false) |
| 84 | |
| 85 | SYSTEM_OK = false |
| 86 | ifeq ($(HAS_VALID_PROTOC),true) |
| 87 | ifeq ($(HAS_PLUGIN),true) |
| 88 | SYSTEM_OK = true |
| 89 | endif |
| 90 | endif |
| 91 | |
| 92 | system-check: |
| 93 | ifneq ($(HAS_VALID_PROTOC),true) |
| 94 | @echo " DEPENDENCY ERROR" |
| 95 | @echo |
| 96 | @echo "You don't have protoc 3.0.0 installed in your path." |
| 97 | @echo "Please install Google protocol buffers 3.0.0 and its compiler." |
| 98 | @echo "You can find it here:" |
| 99 | @echo |
Jorge Canizales | f29e364 | 2016-07-01 15:56:57 -0700 | [diff] [blame^] | 100 | @echo " https://github.com/google/protobuf/releases/tag/v3.0.0-beta-3.3" |
Nicolas "Pixel" Noble | b7538ee | 2015-02-20 22:56:43 +0100 | [diff] [blame] | 101 | @echo |
| 102 | @echo "Here is what I get when trying to evaluate your version of protoc:" |
| 103 | @echo |
| 104 | -$(PROTOC) --version |
| 105 | @echo |
| 106 | @echo |
| 107 | endif |
| 108 | ifneq ($(HAS_PLUGIN),true) |
| 109 | @echo " DEPENDENCY ERROR" |
| 110 | @echo |
| 111 | @echo "You don't have the grpc c++ protobuf plugin installed in your path." |
| 112 | @echo "Please install grpc. You can find it here:" |
| 113 | @echo |
| 114 | @echo " https://github.com/grpc/grpc" |
| 115 | @echo |
| 116 | @echo "Here is what I get when trying to detect if you have the plugin:" |
| 117 | @echo |
| 118 | -which $(GRPC_CPP_PLUGIN) |
| 119 | @echo |
| 120 | @echo |
| 121 | endif |
| 122 | ifneq ($(SYSTEM_OK),true) |
| 123 | @false |
| 124 | endif |