Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1 | %YAML 1.2 |
| 2 | --- | |
| 3 | # GRPC global makefile |
| 4 | # This currently builds C and C++ code. |
| 5 | # This file has been automatically generated from a template file. |
| 6 | # Please look at the templates directory instead. |
| 7 | # This file can be regenerated from the template by running |
| 8 | # tools/buildgen/generate_projects.sh |
Craig Tiller | 3b93548 | 2015-02-16 12:15:48 -0800 | [diff] [blame] | 9 | |
Craig Tiller | 6169d5f | 2016-03-31 07:46:18 -0700 | [diff] [blame] | 10 | # Copyright 2015, Google Inc. |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 11 | # All rights reserved. |
| 12 | # |
| 13 | # Redistribution and use in source and binary forms, with or without |
| 14 | # modification, are permitted provided that the following conditions are |
| 15 | # met: |
| 16 | # |
| 17 | # * Redistributions of source code must retain the above copyright |
| 18 | # notice, this list of conditions and the following disclaimer. |
| 19 | # * Redistributions in binary form must reproduce the above |
| 20 | # copyright notice, this list of conditions and the following disclaimer |
| 21 | # in the documentation and/or other materials provided with the |
| 22 | # distribution. |
| 23 | # * Neither the name of Google Inc. nor the names of its |
| 24 | # contributors may be used to endorse or promote products derived from |
| 25 | # this software without specific prior written permission. |
| 26 | # |
| 27 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 28 | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 29 | # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 30 | # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 31 | # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 32 | # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 33 | # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 34 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 35 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 36 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 37 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 38 | <%! |
| 39 | import re |
| 40 | import os |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 41 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 42 | proto_re = re.compile('(.*)\\.proto') |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 43 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 44 | def proto_to_cc(filename): |
| 45 | m = proto_re.match(filename) |
| 46 | if not m: |
| 47 | return filename |
| 48 | return '$(GENDIR)/' + m.group(1) + '.pb.cc $(GENDIR)/' + m.group(1) + '.grpc.pb.cc' |
Nicolas "Pixel" Noble | 010f1e7 | 2015-04-23 02:23:49 +0200 | [diff] [blame] | 49 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 50 | sources_that_need_openssl = set() |
| 51 | sources_that_don_t_need_openssl = set() |
Craig Tiller | 78222f7 | 2016-05-10 09:55:38 -0700 | [diff] [blame] | 52 | |
| 53 | # warnings we'd like, but that dont exist in all compilers |
| 54 | PREFERRED_WARNINGS=['shadow', 'extra-semi'] |
| 55 | CHECK_WARNINGS=PREFERRED_WARNINGS + ['no-shift-negative-value'] |
| 56 | |
| 57 | def warning_var(fmt, warning): |
| 58 | return fmt % warning.replace('-', '_').upper() |
| 59 | |
| 60 | def neg_warning(warning): |
| 61 | if warning[0:3] == 'no-': |
| 62 | return warning[3:] |
| 63 | else: |
| 64 | return 'no-' + warning |
Craig Tiller | 38b99e9 | 2016-09-15 16:18:09 -0700 | [diff] [blame] | 65 | |
| 66 | lang_to_var = { |
| 67 | 'c': 'CORE', |
| 68 | 'c++': 'CPP', |
| 69 | 'csharp': 'CSHARP' |
| 70 | } |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 71 | %> |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 72 | |
Craig Tiller | 96b4955 | 2015-01-21 16:29:01 -0800 | [diff] [blame] | 73 | |
Craig Tiller | 71a8604 | 2016-01-15 14:59:58 -0800 | [diff] [blame] | 74 | comma := , |
| 75 | |
| 76 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 77 | # Basic platform detection |
| 78 | HOST_SYSTEM = $(shell uname | cut -f 1 -d_) |
Nicolas "Pixel" Noble | c4e57e3 | 2016-01-30 21:05:35 +0100 | [diff] [blame] | 79 | SYSTEM ?= $(HOST_SYSTEM) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 80 | ifeq ($(SYSTEM),MSYS) |
| 81 | SYSTEM = MINGW32 |
| 82 | endif |
| 83 | ifeq ($(SYSTEM),MINGW64) |
| 84 | SYSTEM = MINGW32 |
| 85 | endif |
Craig Tiller | 96b4955 | 2015-01-21 16:29:01 -0800 | [diff] [blame] | 86 | |
| 87 | |
Nicolas "Pixel" Noble | 6dad9b0 | 2015-09-23 18:32:26 +0200 | [diff] [blame] | 88 | MAKEFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST))) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 89 | ifndef BUILDDIR |
Nicolas "Pixel" Noble | 42b4c28 | 2015-09-17 23:57:08 +0200 | [diff] [blame] | 90 | BUILDDIR_ABSOLUTE = $(patsubst %/,%,$(dir $(MAKEFILE_PATH))) |
| 91 | else |
| 92 | BUILDDIR_ABSOLUTE = $(abspath $(BUILDDIR)) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 93 | endif |
Craig Tiller | 61b910f | 2015-02-15 10:54:07 -0800 | [diff] [blame] | 94 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 95 | HAS_GCC = $(shell which gcc > /dev/null 2> /dev/null && echo true || echo false) |
| 96 | HAS_CC = $(shell which cc > /dev/null 2> /dev/null && echo true || echo false) |
| 97 | HAS_CLANG = $(shell which clang > /dev/null 2> /dev/null && echo true || echo false) |
Nicolas Noble | f868118 | 2015-03-18 14:25:44 -0700 | [diff] [blame] | 98 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 99 | ifeq ($(HAS_CC),true) |
| 100 | DEFAULT_CC = cc |
| 101 | DEFAULT_CXX = c++ |
| 102 | else |
| 103 | ifeq ($(HAS_GCC),true) |
| 104 | DEFAULT_CC = gcc |
| 105 | DEFAULT_CXX = g++ |
| 106 | else |
| 107 | ifeq ($(HAS_CLANG),true) |
| 108 | DEFAULT_CC = clang |
| 109 | DEFAULT_CXX = clang++ |
| 110 | else |
| 111 | DEFAULT_CC = no_c_compiler |
| 112 | DEFAULT_CXX = no_c++_compiler |
| 113 | endif |
| 114 | endif |
| 115 | endif |
Nicolas Noble | f868118 | 2015-03-18 14:25:44 -0700 | [diff] [blame] | 116 | |
| 117 | |
Nicolas "Pixel" Noble | 42b4c28 | 2015-09-17 23:57:08 +0200 | [diff] [blame] | 118 | BINDIR = $(BUILDDIR_ABSOLUTE)/bins |
| 119 | OBJDIR = $(BUILDDIR_ABSOLUTE)/objs |
| 120 | LIBDIR = $(BUILDDIR_ABSOLUTE)/libs |
| 121 | GENDIR = $(BUILDDIR_ABSOLUTE)/gens |
Craig Tiller | 61b910f | 2015-02-15 10:54:07 -0800 | [diff] [blame] | 122 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 123 | # Configurations |
ctiller | 8cfebb9 | 2015-01-06 15:02:12 -0800 | [diff] [blame] | 124 | |
Craig Tiller | a0f8517 | 2016-01-20 15:56:06 -0800 | [diff] [blame] | 125 | % for name, args in configs.iteritems(): |
| 126 | VALID_CONFIG_${name} = 1 |
| 127 | % if args.get('compile_the_world', False): |
| 128 | REQUIRE_CUSTOM_LIBRARIES_${name} = 1 |
| 129 | % endif |
Craig Tiller | aff3d50 | 2016-01-20 15:59:31 -0800 | [diff] [blame] | 130 | % for tool, default in [('CC', 'CC'), ('CXX', 'CXX'), ('LD', 'CC'), ('LDXX', 'CXX')]: |
Craig Tiller | a0f8517 | 2016-01-20 15:56:06 -0800 | [diff] [blame] | 131 | ${tool}_${name} = ${args.get(tool, '$(DEFAULT_%s)' % default)} |
| 132 | % endfor |
| 133 | % for arg in ['CFLAGS', 'CXXFLAGS', 'CPPFLAGS', 'LDFLAGS', 'DEFINES']: |
| 134 | % if args.get(arg, None) is not None: |
| 135 | ${arg}_${name} = ${args.get(arg)} |
| 136 | % endif |
| 137 | % endfor |
ctiller | 8cfebb9 | 2015-01-06 15:02:12 -0800 | [diff] [blame] | 138 | |
Craig Tiller | a0f8517 | 2016-01-20 15:56:06 -0800 | [diff] [blame] | 139 | % endfor |
Craig Tiller | 699ba21 | 2015-01-13 17:02:20 -0800 | [diff] [blame] | 140 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 141 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 142 | # General settings. |
| 143 | # You may want to change these depending on your system. |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 144 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 145 | prefix ?= /usr/local |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 146 | |
Nicolas "Pixel" Noble | 1a8eb85 | 2016-01-26 22:33:19 +0100 | [diff] [blame] | 147 | PROTOC ?= protoc |
| 148 | DTRACE ?= dtrace |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 149 | CONFIG ?= opt |
Nicolas "Pixel" Noble | fba36bc | 2016-01-27 03:24:03 +0100 | [diff] [blame] | 150 | # Doing X ?= Y is the same as: |
| 151 | # ifeq ($(origin X), undefined) |
| 152 | # X = Y |
| 153 | # endif |
| 154 | # but some variables, such as CC, CXX, LD or AR, have defaults. |
| 155 | # So instead of using ?= on them, we need to check their origin. |
| 156 | # See: |
| 157 | # https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html |
| 158 | # https://www.gnu.org/software/make/manual/html_node/Flavors.html#index-_003f_003d |
| 159 | # https://www.gnu.org/software/make/manual/html_node/Origin-Function.html |
| 160 | ifeq ($(origin CC), default) |
| 161 | CC = $(CC_$(CONFIG)) |
| 162 | endif |
| 163 | ifeq ($(origin CXX), default) |
| 164 | CXX = $(CXX_$(CONFIG)) |
| 165 | endif |
| 166 | ifeq ($(origin LD), default) |
| 167 | LD = $(LD_$(CONFIG)) |
| 168 | endif |
Nicolas "Pixel" Noble | 1a8eb85 | 2016-01-26 22:33:19 +0100 | [diff] [blame] | 169 | LDXX ?= $(LDXX_$(CONFIG)) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 170 | ifeq ($(SYSTEM),Linux) |
Nicolas "Pixel" Noble | 6e72dae | 2016-02-03 04:23:08 +0100 | [diff] [blame] | 171 | ifeq ($(origin AR), default) |
| 172 | AR = ar rcs |
| 173 | endif |
Nicolas "Pixel" Noble | 1a8eb85 | 2016-01-26 22:33:19 +0100 | [diff] [blame] | 174 | STRIP ?= strip --strip-unneeded |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 175 | else |
| 176 | ifeq ($(SYSTEM),Darwin) |
Nicolas "Pixel" Noble | 6e72dae | 2016-02-03 04:23:08 +0100 | [diff] [blame] | 177 | ifeq ($(origin AR), default) |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 178 | AR = libtool -no_warning_for_no_symbols -o |
Nicolas "Pixel" Noble | 6e72dae | 2016-02-03 04:23:08 +0100 | [diff] [blame] | 179 | endif |
Nicolas "Pixel" Noble | 1a8eb85 | 2016-01-26 22:33:19 +0100 | [diff] [blame] | 180 | STRIP ?= strip -x |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 181 | else |
Mario Emmenlauer | 1643c04 | 2016-12-12 23:12:47 +0100 | [diff] [blame] | 182 | ifeq ($(SYSTEM),MINGW32) |
| 183 | ifeq ($(origin AR), default) |
| 184 | AR = ar rcs |
| 185 | endif |
| 186 | STRIP ?= strip --strip-unneeded |
| 187 | else |
Nicolas "Pixel" Noble | 6e72dae | 2016-02-03 04:23:08 +0100 | [diff] [blame] | 188 | ifeq ($(origin AR), default) |
| 189 | AR = ar rcs |
| 190 | endif |
Nicolas "Pixel" Noble | 1a8eb85 | 2016-01-26 22:33:19 +0100 | [diff] [blame] | 191 | STRIP ?= strip |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 192 | endif |
| 193 | endif |
Mario Emmenlauer | 1643c04 | 2016-12-12 23:12:47 +0100 | [diff] [blame] | 194 | endif |
Nicolas "Pixel" Noble | 1a8eb85 | 2016-01-26 22:33:19 +0100 | [diff] [blame] | 195 | INSTALL ?= install |
| 196 | RM ?= rm -f |
| 197 | PKG_CONFIG ?= pkg-config |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 198 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 199 | ifndef VALID_CONFIG_$(CONFIG) |
| 200 | $(error Invalid CONFIG value '$(CONFIG)') |
| 201 | endif |
yangg | 102e4fe | 2015-01-06 16:02:50 -0800 | [diff] [blame] | 202 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 203 | ifeq ($(SYSTEM),Linux) |
| 204 | TMPOUT = /dev/null |
| 205 | else |
| 206 | TMPOUT = `mktemp /tmp/test-out-XXXXXX` |
| 207 | endif |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 208 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 209 | # Detect if we can use C++11 |
| 210 | CXX11_CHECK_CMD = $(CXX) -std=c++11 -o $(TMPOUT) -c test/build/c++11.cc |
| 211 | HAS_CXX11 = $(shell $(CXX11_CHECK_CMD) 2> /dev/null && echo true || echo false) |
Craig Tiller | cf133f4 | 2015-02-26 14:05:56 -0800 | [diff] [blame] | 212 | |
Craig Tiller | 78222f7 | 2016-05-10 09:55:38 -0700 | [diff] [blame] | 213 | %for warning in CHECK_WARNINGS: |
| 214 | ${warning_var('CHECK_%s_WORKS_CMD', warning)} = $(CC) -std=c99 -Werror -W${warning} -o $(TMPOUT) -c test/build/${warning}.c |
| 215 | ${warning_var('HAS_WORKING_%s', warning)} = $(shell $(${warning_var('CHECK_%s_WORKS_CMD', warning)}) 2> /dev/null && echo true || echo false) |
| 216 | ifeq ($(${warning_var('HAS_WORKING_%s', warning)}),true) |
| 217 | ${warning_var('W_%s', warning)}=-W${warning} |
| 218 | ${warning_var('NO_W_%s', warning)}=-W${neg_warning(warning)} |
Craig Tiller | 804b855 | 2016-02-23 16:50:24 -0800 | [diff] [blame] | 219 | endif |
Craig Tiller | 78222f7 | 2016-05-10 09:55:38 -0700 | [diff] [blame] | 220 | %endfor |
Craig Tiller | 16872b8 | 2016-01-25 10:55:20 -0800 | [diff] [blame] | 221 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 222 | # The HOST compiler settings are used to compile the protoc plugins. |
| 223 | # In most cases, you won't have to change anything, but if you are |
| 224 | # cross-compiling, you can override these variables from GNU make's |
| 225 | # command line: make CC=cross-gcc HOST_CC=gcc |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 226 | |
Nicolas "Pixel" Noble | 1a8eb85 | 2016-01-26 22:33:19 +0100 | [diff] [blame] | 227 | HOST_CC ?= $(CC) |
| 228 | HOST_CXX ?= $(CXX) |
| 229 | HOST_LD ?= $(LD) |
| 230 | HOST_LDXX ?= $(LDXX) |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 231 | |
Craig Tiller | 78222f7 | 2016-05-10 09:55:38 -0700 | [diff] [blame] | 232 | CFLAGS += -std=c99 -Wsign-conversion -Wconversion ${' '.join(warning_var('$(W_%s)', warning) for warning in PREFERRED_WARNINGS)} |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 233 | ifeq ($(HAS_CXX11),true) |
| 234 | CXXFLAGS += -std=c++11 |
| 235 | else |
| 236 | CXXFLAGS += -std=c++0x |
| 237 | endif |
Nicolas "Pixel" Noble | 51b1aee | 2016-01-28 01:14:58 +0100 | [diff] [blame] | 238 | % for arg in ['CFLAGS', 'CXXFLAGS', 'CPPFLAGS', 'LDFLAGS', 'DEFINES']: |
| 239 | % if defaults.get('global', []).get(arg, None) is not None: |
| 240 | ${arg} += ${defaults.get('global').get(arg)} |
| 241 | % endif |
| 242 | % endfor |
Nicolas Noble | f868118 | 2015-03-18 14:25:44 -0700 | [diff] [blame] | 243 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 244 | CPPFLAGS += $(CPPFLAGS_$(CONFIG)) |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 245 | CFLAGS += $(CFLAGS_$(CONFIG)) |
| 246 | CXXFLAGS += $(CXXFLAGS_$(CONFIG)) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 247 | DEFINES += $(DEFINES_$(CONFIG)) INSTALL_PREFIX=\"$(prefix)\" |
| 248 | LDFLAGS += $(LDFLAGS_$(CONFIG)) |
Nicolas "Pixel" Noble | 482d761 | 2015-07-16 23:43:30 +0200 | [diff] [blame] | 249 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 250 | ifneq ($(SYSTEM),MINGW32) |
| 251 | PIC_CPPFLAGS = -fPIC |
| 252 | CPPFLAGS += -fPIC |
| 253 | LDFLAGS += -fPIC |
| 254 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 255 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 256 | INCLUDES = . include $(GENDIR) |
| 257 | LDFLAGS += -Llibs/$(CONFIG) |
Nicolas "Pixel" Noble | 3adab74 | 2015-06-02 00:33:06 +0200 | [diff] [blame] | 258 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 259 | ifeq ($(SYSTEM),Darwin) |
| 260 | ifneq ($(wildcard /usr/local/ssl/include),) |
| 261 | INCLUDES += /usr/local/ssl/include |
| 262 | endif |
| 263 | ifneq ($(wildcard /opt/local/include),) |
| 264 | INCLUDES += /opt/local/include |
| 265 | endif |
| 266 | ifneq ($(wildcard /usr/local/include),) |
| 267 | INCLUDES += /usr/local/include |
| 268 | endif |
| 269 | LIBS = m z |
| 270 | ifneq ($(wildcard /usr/local/ssl/lib),) |
| 271 | LDFLAGS += -L/usr/local/ssl/lib |
| 272 | endif |
| 273 | ifneq ($(wildcard /opt/local/lib),) |
| 274 | LDFLAGS += -L/opt/local/lib |
| 275 | endif |
| 276 | ifneq ($(wildcard /usr/local/lib),) |
| 277 | LDFLAGS += -L/usr/local/lib |
| 278 | endif |
| 279 | endif |
Nicolas Noble | f868118 | 2015-03-18 14:25:44 -0700 | [diff] [blame] | 280 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 281 | ifeq ($(SYSTEM),Linux) |
Craig Tiller | 1b1e238 | 2016-02-03 07:33:56 -0800 | [diff] [blame] | 282 | LIBS = dl rt m pthread |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 283 | LDFLAGS += -pthread |
| 284 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 285 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 286 | ifeq ($(SYSTEM),MINGW32) |
Nicolas "Pixel" Noble | c4e57e3 | 2016-01-30 21:05:35 +0100 | [diff] [blame] | 287 | LIBS = m pthread ws2_32 |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 288 | LDFLAGS += -pthread |
| 289 | endif |
Nicolas Noble | f868118 | 2015-03-18 14:25:44 -0700 | [diff] [blame] | 290 | |
Vijay Pai | cc7eb8e | 2016-07-19 19:03:55 -0700 | [diff] [blame] | 291 | # |
| 292 | # The steps for cross-compiling are as follows: |
| 293 | # First, clone and make install of grpc using the native compilers for the host. |
| 294 | # Also, install protoc (e.g., from a package like apt-get) |
| 295 | # Then clone a fresh grpc for the actual cross-compiled build |
| 296 | # Set the environment variable GRPC_CROSS_COMPILE to true |
| 297 | # Set CC, CXX, LD, LDXX, AR, and STRIP to the cross-compiling binaries |
| 298 | # Also set PROTOBUF_CONFIG_OPTS to indicate cross-compilation to protobuf (e.g., |
| 299 | # PROTOBUF_CONFIG_OPTS="--host=arm-linux --with-protoc=/usr/local/bin/protoc" ) |
| 300 | # Set HAS_PKG_CONFIG=false |
| 301 | # To build tests, go to third_party/gflags and follow its ccmake instructions |
| 302 | # Make sure that you enable building shared libraries and set your prefix to |
| 303 | # something useful like /usr/local/cross |
| 304 | # You will also need to set GRPC_CROSS_LDOPTS and GRPC_CROSS_AROPTS to hold |
| 305 | # additional required arguments for LD and AR (examples below) |
| 306 | # Then you can do a make from the cross-compiling fresh clone! |
| 307 | # |
| 308 | ifeq ($(GRPC_CROSS_COMPILE),true) |
| 309 | LDFLAGS += $(GRPC_CROSS_LDOPTS) # e.g. -L/usr/local/lib -L/usr/local/cross/lib |
| 310 | AROPTS = $(GRPC_CROSS_AROPTS) # e.g., rc --target=elf32-little |
| 311 | USE_BUILT_PROTOC = false |
| 312 | endif |
| 313 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 314 | GTEST_LIB = -Ithird_party/googletest/include -Ithird_party/googletest third_party/googletest/src/gtest-all.cc |
| 315 | GTEST_LIB += -lgflags |
| 316 | ifeq ($(V),1) |
| 317 | E = @: |
| 318 | Q = |
| 319 | else |
| 320 | E = @echo |
| 321 | Q = @ |
| 322 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 323 | |
Craig Tiller | 38b99e9 | 2016-09-15 16:18:09 -0700 | [diff] [blame] | 324 | CORE_VERSION = ${settings.core_version} |
| 325 | CPP_VERSION = ${settings.cpp_version} |
| 326 | CSHARP_VERSION = ${settings.csharp_version} |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 327 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 328 | CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES)) |
| 329 | CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 330 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 331 | LDFLAGS += $(ARCH_FLAGS) |
| 332 | LDLIBS += $(addprefix -l, $(LIBS)) |
| 333 | LDLIBSXX += $(addprefix -l, $(LIBSXX)) |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 334 | |
murgatroid99 | c36f6ea | 2016-10-03 09:24:09 -0700 | [diff] [blame] | 335 | |
| 336 | % for arg in ['CFLAGS', 'CXXFLAGS', 'CPPFLAGS', 'LDFLAGS', 'DEFINES', 'LDLIBS']: |
| 337 | ${arg} += $(EXTRA_${arg}) |
| 338 | % endfor |
| 339 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 340 | HOST_CPPFLAGS = $(CPPFLAGS) |
| 341 | HOST_CFLAGS = $(CFLAGS) |
| 342 | HOST_CXXFLAGS = $(CXXFLAGS) |
| 343 | HOST_LDFLAGS = $(LDFLAGS) |
| 344 | HOST_LDLIBS = $(LDLIBS) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 345 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 346 | # These are automatically computed variables. |
| 347 | # There shouldn't be any need to change anything from now on. |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 348 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 349 | -include cache.mk |
murgatroid99 | 24e2f4a | 2015-06-29 11:12:01 -0700 | [diff] [blame] | 350 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 351 | CACHE_MK = |
murgatroid99 | aa52157 | 2015-07-10 14:49:12 -0700 | [diff] [blame] | 352 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 353 | HAS_PKG_CONFIG ?= $(shell command -v $(PKG_CONFIG) >/dev/null 2>&1 && echo true || echo false) |
murgatroid99 | aa52157 | 2015-07-10 14:49:12 -0700 | [diff] [blame] | 354 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 355 | ifeq ($(HAS_PKG_CONFIG), true) |
| 356 | CACHE_MK += HAS_PKG_CONFIG = true, |
| 357 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 358 | |
Craig Tiller | 38b99e9 | 2016-09-15 16:18:09 -0700 | [diff] [blame] | 359 | CORE_PC_TEMPLATE = prefix=$(prefix),\ |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 360 | exec_prefix=${'\$${prefix}'},\ |
| 361 | includedir=${'\$${prefix}'}/include,\ |
| 362 | libdir=${'\$${exec_prefix}'}/lib,\ |
| 363 | ,\ |
| 364 | Name: $(PC_NAME),\ |
| 365 | Description: $(PC_DESCRIPTION),\ |
Craig Tiller | 38b99e9 | 2016-09-15 16:18:09 -0700 | [diff] [blame] | 366 | Version: $(CORE_VERSION),\ |
| 367 | Cflags: -I${'\$${includedir}'} $(PC_CFLAGS),\ |
| 368 | Requires.private: $(PC_REQUIRES_PRIVATE),\ |
| 369 | Libs: -L${'\$${libdir}'} $(PC_LIB),\ |
| 370 | Libs.private: $(PC_LIBS_PRIVATE) |
| 371 | |
| 372 | CPP_PC_TEMPLATE = prefix=$(prefix),\ |
| 373 | exec_prefix=${'\$${prefix}'},\ |
| 374 | includedir=${'\$${prefix}'}/include,\ |
| 375 | libdir=${'\$${exec_prefix}'}/lib,\ |
| 376 | ,\ |
| 377 | Name: $(PC_NAME),\ |
| 378 | Description: $(PC_DESCRIPTION),\ |
| 379 | Version: $(CPP_VERSION),\ |
| 380 | Cflags: -I${'\$${includedir}'} $(PC_CFLAGS),\ |
| 381 | Requires.private: $(PC_REQUIRES_PRIVATE),\ |
| 382 | Libs: -L${'\$${libdir}'} $(PC_LIB),\ |
| 383 | Libs.private: $(PC_LIBS_PRIVATE) |
| 384 | |
| 385 | CSHARP_PC_TEMPLATE = prefix=$(prefix),\ |
| 386 | exec_prefix=${'\$${prefix}'},\ |
| 387 | includedir=${'\$${prefix}'}/include,\ |
| 388 | libdir=${'\$${exec_prefix}'}/lib,\ |
| 389 | ,\ |
| 390 | Name: $(PC_NAME),\ |
| 391 | Description: $(PC_DESCRIPTION),\ |
| 392 | Version: $(CSHARP_VERSION),\ |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 393 | Cflags: -I${'\$${includedir}'} $(PC_CFLAGS),\ |
| 394 | Requires.private: $(PC_REQUIRES_PRIVATE),\ |
| 395 | Libs: -L${'\$${libdir}'} $(PC_LIB),\ |
| 396 | Libs.private: $(PC_LIBS_PRIVATE) |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 397 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 398 | ifeq ($(SYSTEM),MINGW32) |
Mario Emmenlauer | 121d289 | 2016-12-12 23:49:27 +0100 | [diff] [blame] | 399 | EXECUTABLE_SUFFIX = .exe |
Craig Tiller | 38b99e9 | 2016-09-15 16:18:09 -0700 | [diff] [blame] | 400 | SHARED_EXT_CORE = dll |
| 401 | SHARED_EXT_CPP = dll |
| 402 | SHARED_EXT_CSHARP = dll |
Nicolas "Pixel" Noble | c4e57e3 | 2016-01-30 21:05:35 +0100 | [diff] [blame] | 403 | SHARED_PREFIX = |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 404 | SHARED_VERSION_CORE = -${settings.core_version.major} |
| 405 | SHARED_VERSION_CPP = -${settings.cpp_version.major} |
| 406 | SHARED_VERSION_CSHARP = -${settings.csharp_version.major} |
Nicolas "Pixel" Noble | c4e57e3 | 2016-01-30 21:05:35 +0100 | [diff] [blame] | 407 | else ifeq ($(SYSTEM),Darwin) |
Mario Emmenlauer | 121d289 | 2016-12-12 23:49:27 +0100 | [diff] [blame] | 408 | EXECUTABLE_SUFFIX = |
Craig Tiller | 38b99e9 | 2016-09-15 16:18:09 -0700 | [diff] [blame] | 409 | SHARED_EXT_CORE = dylib |
| 410 | SHARED_EXT_CPP = dylib |
| 411 | SHARED_EXT_CSHARP = dylib |
Nicolas "Pixel" Noble | c4e57e3 | 2016-01-30 21:05:35 +0100 | [diff] [blame] | 412 | SHARED_PREFIX = lib |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 413 | SHARED_VERSION_CORE = |
| 414 | SHARED_VERSION_CPP = |
| 415 | SHARED_VERSION_CSHARP = |
Nicolas "Pixel" Noble | c4e57e3 | 2016-01-30 21:05:35 +0100 | [diff] [blame] | 416 | else |
Mario Emmenlauer | 121d289 | 2016-12-12 23:49:27 +0100 | [diff] [blame] | 417 | EXECUTABLE_SUFFIX = |
Craig Tiller | 38b99e9 | 2016-09-15 16:18:09 -0700 | [diff] [blame] | 418 | SHARED_EXT_CORE = so.$(CORE_VERSION) |
| 419 | SHARED_EXT_CPP = so.$(CPP_VERSION) |
| 420 | SHARED_EXT_CSHARP = so.$(CSHARP_VERSION) |
Nicolas "Pixel" Noble | c4e57e3 | 2016-01-30 21:05:35 +0100 | [diff] [blame] | 421 | SHARED_PREFIX = lib |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 422 | SHARED_VERSION_CORE = |
| 423 | SHARED_VERSION_CPP = |
| 424 | SHARED_VERSION_CSHARP = |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 425 | endif |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 426 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 427 | ifeq ($(wildcard .git),) |
| 428 | IS_GIT_FOLDER = false |
| 429 | else |
| 430 | IS_GIT_FOLDER = true |
| 431 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 432 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 433 | ifeq ($(HAS_PKG_CONFIG),true) |
| 434 | OPENSSL_ALPN_CHECK_CMD = $(PKG_CONFIG) --atleast-version=1.0.2 openssl |
| 435 | OPENSSL_NPN_CHECK_CMD = $(PKG_CONFIG) --atleast-version=1.0.1 openssl |
| 436 | ZLIB_CHECK_CMD = $(PKG_CONFIG) --exists zlib |
Yuchen Zeng | d4df55e | 2016-08-15 16:41:18 -0700 | [diff] [blame] | 437 | PROTOBUF_CHECK_CMD = $(PKG_CONFIG) --atleast-version=3.0.0 protobuf |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 438 | else # HAS_PKG_CONFIG |
murgatroid99 | 24e2f4a | 2015-06-29 11:12:01 -0700 | [diff] [blame] | 439 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 440 | ifeq ($(SYSTEM),MINGW32) |
| 441 | OPENSSL_LIBS = ssl32 eay32 |
| 442 | else |
| 443 | OPENSSL_LIBS = ssl crypto |
| 444 | endif |
Nicolas Noble | f868118 | 2015-03-18 14:25:44 -0700 | [diff] [blame] | 445 | |
Nicolas "Pixel" Noble | 4500034 | 2016-01-28 05:04:45 +0100 | [diff] [blame] | 446 | OPENSSL_ALPN_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/openssl-alpn.c $(addprefix -l, $(OPENSSL_LIBS)) $(LDFLAGS) |
| 447 | OPENSSL_NPN_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/openssl-npn.c $(addprefix -l, $(OPENSSL_LIBS)) $(LDFLAGS) |
Craig Tiller | b79c1e1 | 2016-02-23 10:00:58 -0800 | [diff] [blame] | 448 | BORINGSSL_COMPILE_CHECK_CMD = $(CC) $(CPPFLAGS) ${defaults.boringssl.CPPFLAGS} $(CFLAGS) ${defaults.boringssl.CFLAGS} -o $(TMPOUT) test/build/boringssl.c $(LDFLAGS) |
Nicolas "Pixel" Noble | 4500034 | 2016-01-28 05:04:45 +0100 | [diff] [blame] | 449 | ZLIB_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/zlib.c -lz $(LDFLAGS) |
| 450 | PROTOBUF_CHECK_CMD = $(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $(TMPOUT) test/build/protobuf.cc -lprotobuf $(LDFLAGS) |
Craig Tiller | 297fafa | 2015-01-15 15:46:39 -0800 | [diff] [blame] | 451 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 452 | endif # HAS_PKG_CONFIG |
murgatroid99 | 24e2f4a | 2015-06-29 11:12:01 -0700 | [diff] [blame] | 453 | |
Nicolas "Pixel" Noble | 4500034 | 2016-01-28 05:04:45 +0100 | [diff] [blame] | 454 | PERFTOOLS_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/perftools.c -lprofiler $(LDFLAGS) |
murgatroid99 | 6d9e401 | 2015-07-08 10:22:45 -0700 | [diff] [blame] | 455 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 456 | PROTOC_CHECK_CMD = which protoc > /dev/null |
| 457 | PROTOC_CHECK_VERSION_CMD = protoc --version | grep -q libprotoc.3 |
| 458 | DTRACE_CHECK_CMD = which dtrace > /dev/null |
Nicolas "Pixel" Noble | 4500034 | 2016-01-28 05:04:45 +0100 | [diff] [blame] | 459 | SYSTEMTAP_HEADERS_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/systemtap.c $(LDFLAGS) |
murgatroid99 | 24e2f4a | 2015-06-29 11:12:01 -0700 | [diff] [blame] | 460 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 461 | ifndef REQUIRE_CUSTOM_LIBRARIES_$(CONFIG) |
| 462 | HAS_SYSTEM_PERFTOOLS ?= $(shell $(PERFTOOLS_CHECK_CMD) 2> /dev/null && echo true || echo false) |
| 463 | ifeq ($(HAS_SYSTEM_PERFTOOLS),true) |
| 464 | DEFINES += GRPC_HAVE_PERFTOOLS |
| 465 | LIBS += profiler |
| 466 | CACHE_MK += HAS_SYSTEM_PERFTOOLS = true, |
| 467 | endif |
| 468 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 469 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 470 | HAS_SYSTEM_PROTOBUF_VERIFY = $(shell $(PROTOBUF_CHECK_CMD) 2> /dev/null && echo true || echo false) |
| 471 | ifndef REQUIRE_CUSTOM_LIBRARIES_$(CONFIG) |
| 472 | HAS_SYSTEM_OPENSSL_ALPN ?= $(shell $(OPENSSL_ALPN_CHECK_CMD) 2> /dev/null && echo true || echo false) |
| 473 | ifeq ($(HAS_SYSTEM_OPENSSL_ALPN),true) |
| 474 | HAS_SYSTEM_OPENSSL_NPN = true |
| 475 | CACHE_MK += HAS_SYSTEM_OPENSSL_ALPN = true, |
| 476 | else |
| 477 | HAS_SYSTEM_OPENSSL_NPN ?= $(shell $(OPENSSL_NPN_CHECK_CMD) 2> /dev/null && echo true || echo false) |
| 478 | endif |
| 479 | ifeq ($(HAS_SYSTEM_OPENSSL_NPN),true) |
| 480 | CACHE_MK += HAS_SYSTEM_OPENSSL_NPN = true, |
| 481 | endif |
| 482 | HAS_SYSTEM_ZLIB ?= $(shell $(ZLIB_CHECK_CMD) 2> /dev/null && echo true || echo false) |
| 483 | ifeq ($(HAS_SYSTEM_ZLIB),true) |
| 484 | CACHE_MK += HAS_SYSTEM_ZLIB = true, |
| 485 | endif |
| 486 | HAS_SYSTEM_PROTOBUF ?= $(HAS_SYSTEM_PROTOBUF_VERIFY) |
| 487 | ifeq ($(HAS_SYSTEM_PROTOBUF),true) |
| 488 | CACHE_MK += HAS_SYSTEM_PROTOBUF = true, |
| 489 | endif |
| 490 | else |
| 491 | # override system libraries if the config requires a custom compiled library |
| 492 | HAS_SYSTEM_OPENSSL_ALPN = false |
| 493 | HAS_SYSTEM_OPENSSL_NPN = false |
| 494 | HAS_SYSTEM_ZLIB = false |
| 495 | HAS_SYSTEM_PROTOBUF = false |
| 496 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 497 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 498 | HAS_PROTOC ?= $(shell $(PROTOC_CHECK_CMD) 2> /dev/null && echo true || echo false) |
| 499 | ifeq ($(HAS_PROTOC),true) |
| 500 | CACHE_MK += HAS_PROTOC = true, |
| 501 | HAS_VALID_PROTOC ?= $(shell $(PROTOC_CHECK_VERSION_CMD) 2> /dev/null && echo true || echo false) |
| 502 | ifeq ($(HAS_VALID_PROTOC),true) |
| 503 | CACHE_MK += HAS_VALID_PROTOC = true, |
| 504 | endif |
| 505 | else |
| 506 | HAS_VALID_PROTOC = false |
| 507 | endif |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 508 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 509 | # Check for Systemtap (https://sourceware.org/systemtap/), first by making sure <sys/sdt.h> is present |
| 510 | # in the system and secondly by checking for the "dtrace" binary (on Linux, this is part of the Systemtap |
| 511 | # distribution. It's part of the base system on BSD/Solaris machines). |
| 512 | ifndef HAS_SYSTEMTAP |
| 513 | HAS_SYSTEMTAP_HEADERS = $(shell $(SYSTEMTAP_HEADERS_CHECK_CMD) 2> /dev/null && echo true || echo false) |
| 514 | HAS_DTRACE = $(shell $(DTRACE_CHECK_CMD) 2> /dev/null && echo true || echo false) |
| 515 | HAS_SYSTEMTAP = false |
| 516 | ifeq ($(HAS_SYSTEMTAP_HEADERS),true) |
| 517 | ifeq ($(HAS_DTRACE),true) |
| 518 | HAS_SYSTEMTAP = true |
| 519 | endif |
| 520 | endif |
| 521 | endif |
David Garcia Quintas | 611b736 | 2015-04-27 15:49:31 -0700 | [diff] [blame] | 522 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 523 | ifeq ($(HAS_SYSTEMTAP),true) |
| 524 | CACHE_MK += HAS_SYSTEMTAP = true, |
| 525 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 526 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 527 | # Note that for testing purposes, one can do: |
| 528 | # make HAS_EMBEDDED_OPENSSL_ALPN=false |
| 529 | # to emulate the fact we do not have OpenSSL in the third_party folder. |
Craig Tiller | b79c1e1 | 2016-02-23 10:00:58 -0800 | [diff] [blame] | 530 | ifneq ($(wildcard third_party/${openssl_fallback.extraction_dir}/libssl.a),) |
| 531 | HAS_EMBEDDED_OPENSSL_ALPN = third_party/${openssl_fallback.extraction_dir} |
| 532 | else ifeq ($(wildcard third_party/boringssl/include/openssl/ssl.h),) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 533 | HAS_EMBEDDED_OPENSSL_ALPN = false |
| 534 | else |
Craig Tiller | b79c1e1 | 2016-02-23 10:00:58 -0800 | [diff] [blame] | 535 | CAN_COMPILE_EMBEDDED_OPENSSL ?= $(shell $(BORINGSSL_COMPILE_CHECK_CMD) 2> /dev/null && echo true || echo false) |
| 536 | HAS_EMBEDDED_OPENSSL_ALPN = $(CAN_COMPILE_EMBEDDED_OPENSSL) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 537 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 538 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 539 | ifeq ($(wildcard third_party/zlib/zlib.h),) |
| 540 | HAS_EMBEDDED_ZLIB = false |
| 541 | else |
| 542 | HAS_EMBEDDED_ZLIB = true |
| 543 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 544 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 545 | ifeq ($(wildcard third_party/protobuf/src/google/protobuf/descriptor.pb.h),) |
| 546 | HAS_EMBEDDED_PROTOBUF = false |
| 547 | ifneq ($(HAS_VALID_PROTOC),true) |
| 548 | NO_PROTOC = true |
| 549 | endif |
| 550 | else |
| 551 | HAS_EMBEDDED_PROTOBUF = true |
| 552 | endif |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 553 | |
Nicolas "Pixel" Noble | 0912179 | 2016-01-30 09:01:53 +0100 | [diff] [blame] | 554 | PC_REQUIRES_GRPC = |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 555 | PC_LIBS_GRPC = |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 556 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 557 | ifeq ($(HAS_SYSTEM_ZLIB),false) |
Craig Tiller | 3dca23a | 2016-01-21 11:44:55 -0800 | [diff] [blame] | 558 | ifeq ($(HAS_EMBEDDED_ZLIB), true) |
| 559 | EMBED_ZLIB ?= true |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 560 | else |
| 561 | DEP_MISSING += zlib |
Craig Tiller | 3dca23a | 2016-01-21 11:44:55 -0800 | [diff] [blame] | 562 | EMBED_ZLIB ?= broken |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 563 | endif |
| 564 | else |
Craig Tiller | 3dca23a | 2016-01-21 11:44:55 -0800 | [diff] [blame] | 565 | EMBED_ZLIB ?= false |
| 566 | endif |
| 567 | |
| 568 | ifeq ($(EMBED_ZLIB),true) |
| 569 | ZLIB_DEP = $(LIBDIR)/$(CONFIG)/libz.a |
| 570 | ZLIB_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libz.a |
Nicolas "Pixel" Noble | f51a901 | 2016-02-03 07:39:43 +0100 | [diff] [blame] | 571 | ZLIB_MERGE_OBJS = $(LIBZ_OBJS) |
Craig Tiller | 3dca23a | 2016-01-21 11:44:55 -0800 | [diff] [blame] | 572 | CPPFLAGS += -Ithird_party/zlib |
| 573 | LDFLAGS += -L$(LIBDIR)/$(CONFIG)/zlib |
| 574 | else |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 575 | ifeq ($(HAS_PKG_CONFIG),true) |
| 576 | CPPFLAGS += $(shell $(PKG_CONFIG) --cflags zlib) |
| 577 | LDFLAGS += $(shell $(PKG_CONFIG) --libs-only-L zlib) |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 578 | LIBS += $(patsubst -l%,%,$(shell $(PKG_CONFIG) --libs-only-l zlib)) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 579 | PC_REQUIRES_GRPC += zlib |
| 580 | else |
| 581 | PC_LIBS_GRPC += -lz |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 582 | LIBS += z |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 583 | endif |
| 584 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 585 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 586 | OPENSSL_PKG_CONFIG = false |
murgatroid99 | da7a994 | 2015-06-29 14:57:37 -0700 | [diff] [blame] | 587 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 588 | PC_REQUIRES_SECURE = |
| 589 | PC_LIBS_SECURE = |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 590 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 591 | ifeq ($(HAS_SYSTEM_OPENSSL_ALPN),true) |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 592 | EMBED_OPENSSL ?= false |
| 593 | NO_SECURE ?= false |
| 594 | else # HAS_SYSTEM_OPENSSL_ALPN=false |
Craig Tiller | b79c1e1 | 2016-02-23 10:00:58 -0800 | [diff] [blame] | 595 | ifneq ($(HAS_EMBEDDED_OPENSSL_ALPN),false) |
| 596 | EMBED_OPENSSL ?= $(HAS_EMBEDDED_OPENSSL_ALPN) |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 597 | NO_SECURE ?= false |
| 598 | else # HAS_EMBEDDED_OPENSSL_ALPN=false |
| 599 | ifeq ($(HAS_SYSTEM_OPENSSL_NPN),true) |
| 600 | EMBED_OPENSSL ?= false |
| 601 | NO_SECURE ?= false |
| 602 | else |
| 603 | NO_SECURE ?= true |
| 604 | endif # HAS_SYSTEM_OPENSSL_NPN=true |
| 605 | endif # HAS_EMBEDDED_OPENSSL_ALPN |
| 606 | endif # HAS_SYSTEM_OPENSSL_ALPN |
| 607 | |
| 608 | OPENSSL_DEP := |
| 609 | OPENSSL_MERGE_LIBS := |
| 610 | ifeq ($(NO_SECURE),false) |
| 611 | ifeq ($(EMBED_OPENSSL),true) |
| 612 | OPENSSL_DEP += $(LIBDIR)/$(CONFIG)/libboringssl.a |
| 613 | OPENSSL_MERGE_LIBS += $(LIBDIR)/$(CONFIG)/libboringssl.a |
Nicolas "Pixel" Noble | f51a901 | 2016-02-03 07:39:43 +0100 | [diff] [blame] | 614 | OPENSSL_MERGE_OBJS += $(LIBBORINGSSL_OBJS) |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 615 | # need to prefix these to ensure overriding system libraries |
| 616 | CPPFLAGS := -Ithird_party/boringssl/include $(CPPFLAGS) |
Craig Tiller | b79c1e1 | 2016-02-23 10:00:58 -0800 | [diff] [blame] | 617 | else ifneq ($(EMBED_OPENSSL),false) |
| 618 | OPENSSL_DEP += $(EMBED_OPENSSL)/libssl.a $(EMBED_OPENSSL)/libcrypto.a |
| 619 | OPENSSL_MERGE_LIBS += $(EMBED_OPENSSL)/libssl.a $(EMBED_OPENSSL)/libcrypto.a |
| 620 | OPENSSL_MERGE_OBJS += $(wildcard $(EMBED_OPENSSL)/grpc_obj/*.o) |
| 621 | # need to prefix these to ensure overriding system libraries |
| 622 | CPPFLAGS := -I$(EMBED_OPENSSL)/include $(CPPFLAGS) |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 623 | else # EMBED_OPENSSL=false |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 624 | ifeq ($(HAS_PKG_CONFIG),true) |
| 625 | OPENSSL_PKG_CONFIG = true |
| 626 | PC_REQUIRES_SECURE = openssl |
| 627 | CPPFLAGS := $(shell $(PKG_CONFIG) --cflags openssl) $(CPPFLAGS) |
| 628 | LDFLAGS_OPENSSL_PKG_CONFIG = $(shell $(PKG_CONFIG) --libs-only-L openssl) |
| 629 | ifeq ($(SYSTEM),Linux) |
| 630 | ifneq ($(LDFLAGS_OPENSSL_PKG_CONFIG),) |
| 631 | LDFLAGS_OPENSSL_PKG_CONFIG += $(shell $(PKG_CONFIG) --libs-only-L openssl | sed s/L/Wl,-rpath,/) |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 632 | endif # LDFLAGS_OPENSSL_PKG_CONFIG='' |
| 633 | endif # System=Linux |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 634 | LDFLAGS := $(LDFLAGS_OPENSSL_PKG_CONFIG) $(LDFLAGS) |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 635 | else # HAS_PKG_CONFIG=false |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 636 | LIBS_SECURE = $(OPENSSL_LIBS) |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 637 | endif # HAS_PKG_CONFIG |
| 638 | ifeq ($(HAS_SYSTEM_OPENSSL_NPN),true) |
| 639 | CPPFLAGS += -DTSI_OPENSSL_ALPN_SUPPORT=0 |
| 640 | LIBS_SECURE = $(OPENSSL_LIBS) |
| 641 | endif # HAS_SYSTEM_OPENSSL_NPN |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 642 | PC_LIBS_SECURE = $(addprefix -l, $(LIBS_SECURE)) |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 643 | endif # EMBED_OPENSSL |
| 644 | endif # NO_SECURE |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 645 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 646 | ifeq ($(OPENSSL_PKG_CONFIG),true) |
| 647 | LDLIBS_SECURE += $(shell $(PKG_CONFIG) --libs-only-l openssl) |
| 648 | else |
| 649 | LDLIBS_SECURE += $(addprefix -l, $(LIBS_SECURE)) |
| 650 | endif |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 651 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 652 | # grpc .pc file |
| 653 | PC_NAME = gRPC |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 654 | PC_DESCRIPTION = high performance general RPC framework |
| 655 | PC_CFLAGS = |
| 656 | PC_REQUIRES_PRIVATE = $(PC_REQUIRES_GRPC) $(PC_REQUIRES_SECURE) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 657 | PC_LIBS_PRIVATE = $(PC_LIBS_GRPC) $(PC_LIBS_SECURE) |
| 658 | PC_LIB = -lgrpc |
Craig Tiller | 38b99e9 | 2016-09-15 16:18:09 -0700 | [diff] [blame] | 659 | GRPC_PC_FILE := $(CORE_PC_TEMPLATE) |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 660 | |
Craig Tiller | 4a67be4 | 2016-02-09 12:40:32 -0800 | [diff] [blame] | 661 | # grpc_unsecure .pc file |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 662 | PC_NAME = gRPC unsecure |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 663 | PC_DESCRIPTION = high performance general RPC framework without SSL |
| 664 | PC_CFLAGS = |
| 665 | PC_REQUIRES_PRIVATE = $(PC_REQUIRES_GRPC) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 666 | PC_LIBS_PRIVATE = $(PC_LIBS_GRPC) |
| 667 | PC_LIB = -lgrpc |
Craig Tiller | 38b99e9 | 2016-09-15 16:18:09 -0700 | [diff] [blame] | 668 | GRPC_UNSECURE_PC_FILE := $(CORE_PC_TEMPLATE) |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 669 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 670 | PROTOBUF_PKG_CONFIG = false |
murgatroid99 | da7a994 | 2015-06-29 14:57:37 -0700 | [diff] [blame] | 671 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 672 | PC_REQUIRES_GRPCXX = |
| 673 | PC_LIBS_GRPCXX = |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 674 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 675 | CPPFLAGS := -Ithird_party/googletest/include $(CPPFLAGS) |
Craig Tiller | 16f6dac | 2015-08-24 17:00:04 -0700 | [diff] [blame] | 676 | |
Vijay Pai | cc7eb8e | 2016-07-19 19:03:55 -0700 | [diff] [blame] | 677 | PROTOC_PLUGINS_ALL =\ |
| 678 | % for tgt in targets: |
| 679 | % if tgt.build == 'protoc': |
| 680 | $(BINDIR)/$(CONFIG)/${tgt.name}\ |
| 681 | % endif |
| 682 | % endfor |
| 683 | |
| 684 | PROTOC_PLUGINS_DIR = $(BINDIR)/$(CONFIG) |
| 685 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 686 | ifeq ($(HAS_SYSTEM_PROTOBUF),true) |
| 687 | ifeq ($(HAS_PKG_CONFIG),true) |
| 688 | PROTOBUF_PKG_CONFIG = true |
| 689 | PC_REQUIRES_GRPCXX = protobuf |
| 690 | CPPFLAGS := $(shell $(PKG_CONFIG) --cflags protobuf) $(CPPFLAGS) |
| 691 | LDFLAGS_PROTOBUF_PKG_CONFIG = $(shell $(PKG_CONFIG) --libs-only-L protobuf) |
| 692 | ifeq ($(SYSTEM),Linux) |
| 693 | ifneq ($(LDFLAGS_PROTOBUF_PKG_CONFIG),) |
| 694 | LDFLAGS_PROTOBUF_PKG_CONFIG += $(shell $(PKG_CONFIG) --libs-only-L protobuf | sed s/L/Wl,-rpath,/) |
| 695 | endif |
| 696 | endif |
| 697 | else |
| 698 | PC_LIBS_GRPCXX = -lprotobuf |
| 699 | endif |
Nicolas "Pixel" Noble | f7fbdd4 | 2016-07-25 20:31:22 +0200 | [diff] [blame] | 700 | PROTOC_PLUGINS = $(PROTOC_PLUGINS_ALL) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 701 | else |
| 702 | ifeq ($(HAS_EMBEDDED_PROTOBUF),true) |
| 703 | PROTOBUF_DEP = $(LIBDIR)/$(CONFIG)/protobuf/libprotobuf.a |
| 704 | CPPFLAGS := -Ithird_party/protobuf/src $(CPPFLAGS) |
| 705 | LDFLAGS := -L$(LIBDIR)/$(CONFIG)/protobuf $(LDFLAGS) |
Vijay Pai | cc7eb8e | 2016-07-19 19:03:55 -0700 | [diff] [blame] | 706 | ifneq ($(USE_BUILT_PROTOC),false) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 707 | PROTOC = $(BINDIR)/$(CONFIG)/protobuf/protoc |
Vijay Pai | cc7eb8e | 2016-07-19 19:03:55 -0700 | [diff] [blame] | 708 | PROTOC_PLUGINS = $(PROTOC_PLUGINS_ALL) |
| 709 | else |
| 710 | PROTOC_PLUGINS = |
| 711 | PROTOC_PLUGINS_DIR = $(prefix)/bin |
| 712 | endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 713 | else |
| 714 | NO_PROTOBUF = true |
| 715 | endif |
| 716 | endif |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 717 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 718 | LIBS_PROTOBUF = protobuf |
| 719 | LIBS_PROTOC = protoc protobuf |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 720 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 721 | HOST_LDLIBS_PROTOC += $(addprefix -l, $(LIBS_PROTOC)) |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 722 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 723 | ifeq ($(PROTOBUF_PKG_CONFIG),true) |
| 724 | LDLIBS_PROTOBUF += $(shell $(PKG_CONFIG) --libs-only-l protobuf) |
| 725 | else |
| 726 | LDLIBS_PROTOBUF += $(addprefix -l, $(LIBS_PROTOBUF)) |
| 727 | endif |
murgatroid99 | 24e2f4a | 2015-06-29 11:12:01 -0700 | [diff] [blame] | 728 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 729 | # grpc++ .pc file |
| 730 | PC_NAME = gRPC++ |
| 731 | PC_DESCRIPTION = C++ wrapper for gRPC |
| 732 | PC_CFLAGS = |
| 733 | PC_REQUIRES_PRIVATE = grpc $(PC_REQUIRES_GRPCXX) |
| 734 | PC_LIBS_PRIVATE = $(PC_LIBS_GRPCXX) |
| 735 | PC_LIB = -lgrpc++ |
Craig Tiller | 38b99e9 | 2016-09-15 16:18:09 -0700 | [diff] [blame] | 736 | GRPCXX_PC_FILE := $(CPP_PC_TEMPLATE) |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 737 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 738 | # grpc++_unsecure .pc file |
| 739 | PC_NAME = gRPC++ unsecure |
| 740 | PC_DESCRIPTION = C++ wrapper for gRPC without SSL |
| 741 | PC_CFLAGS = |
| 742 | PC_REQUIRES_PRIVATE = grpc_unsecure $(PC_REQUIRES_GRPCXX) |
| 743 | PC_LIBS_PRIVATE = $(PC_LIBS_GRPCXX) |
| 744 | PC_LIB = -lgrpc++ |
Craig Tiller | 38b99e9 | 2016-09-15 16:18:09 -0700 | [diff] [blame] | 745 | GRPCXX_UNSECURE_PC_FILE := $(CPP_PC_TEMPLATE) |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 746 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 747 | ifeq ($(MAKECMDGOALS),clean) |
| 748 | NO_DEPS = true |
| 749 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 750 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 751 | .SECONDARY = %.pb.h %.pb.cc |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 752 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 753 | ifeq ($(DEP_MISSING),) |
| 754 | all: static shared plugins\ |
| 755 | % for tgt in targets: |
| 756 | % if tgt.build == 'all': |
| 757 | $(BINDIR)/$(CONFIG)/${tgt.name}\ |
| 758 | % endif |
| 759 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 760 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 761 | dep_error: |
| 762 | @echo "You shouldn't see this message - all of your dependencies are correct." |
| 763 | else |
| 764 | all: dep_error git_update stop |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 765 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 766 | dep_error: |
| 767 | @echo |
| 768 | @echo "DEPENDENCY ERROR" |
| 769 | @echo |
| 770 | @echo "You are missing system dependencies that are essential to build grpc," |
| 771 | @echo "and the third_party directory doesn't have them:" |
| 772 | @echo |
| 773 | @echo " $(DEP_MISSING)" |
| 774 | @echo |
| 775 | @echo "Installing the development packages for your system will solve" |
| 776 | @echo "this issue. Please consult INSTALL to get more information." |
| 777 | @echo |
| 778 | @echo "If you need information about why these tests failed, run:" |
| 779 | @echo |
| 780 | @echo " make run_dep_checks" |
| 781 | @echo |
| 782 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 783 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 784 | git_update: |
| 785 | ifeq ($(IS_GIT_FOLDER),true) |
| 786 | @echo "Additionally, since you are in a git clone, you can download the" |
| 787 | @echo "missing dependencies in third_party by running the following command:" |
| 788 | @echo |
| 789 | @echo " git submodule update --init" |
| 790 | @echo |
| 791 | endif |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 792 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 793 | openssl_dep_error: openssl_dep_message git_update stop |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 794 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 795 | protobuf_dep_error: protobuf_dep_message git_update stop |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 796 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 797 | protoc_dep_error: protoc_dep_message git_update stop |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 798 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 799 | openssl_dep_message: |
| 800 | @echo |
| 801 | @echo "DEPENDENCY ERROR" |
| 802 | @echo |
Craig Tiller | b79c1e1 | 2016-02-23 10:00:58 -0800 | [diff] [blame] | 803 | @echo "The target you are trying to run requires an OpenSSL implementation." |
| 804 | @echo "Your system doesn't have one, and either the third_party directory" |
| 805 | @echo "doesn't have it, or your compiler can't build BoringSSL." |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 806 | @echo |
| 807 | @echo "Please consult INSTALL to get more information." |
| 808 | @echo |
| 809 | @echo "If you need information about why these tests failed, run:" |
| 810 | @echo |
| 811 | @echo " make run_dep_checks" |
| 812 | @echo |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 813 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 814 | protobuf_dep_message: |
| 815 | @echo |
| 816 | @echo "DEPENDENCY ERROR" |
| 817 | @echo |
| 818 | @echo "The target you are trying to run requires protobuf 3.0.0+" |
| 819 | @echo "Your system doesn't have it, and neither does the third_party directory." |
| 820 | @echo |
| 821 | @echo "Please consult INSTALL to get more information." |
| 822 | @echo |
| 823 | @echo "If you need information about why these tests failed, run:" |
| 824 | @echo |
| 825 | @echo " make run_dep_checks" |
| 826 | @echo |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 827 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 828 | protoc_dep_message: |
| 829 | @echo |
| 830 | @echo "DEPENDENCY ERROR" |
| 831 | @echo |
| 832 | @echo "The target you are trying to run requires protobuf-compiler 3.0.0+" |
| 833 | @echo "Your system doesn't have it, and neither does the third_party directory." |
| 834 | @echo |
| 835 | @echo "Please consult INSTALL to get more information." |
| 836 | @echo |
| 837 | @echo "If you need information about why these tests failed, run:" |
| 838 | @echo |
| 839 | @echo " make run_dep_checks" |
| 840 | @echo |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 841 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 842 | systemtap_dep_error: |
| 843 | @echo |
| 844 | @echo "DEPENDENCY ERROR" |
| 845 | @echo |
| 846 | @echo "Under the '$(CONFIG)' configutation, the target you are trying " |
| 847 | @echo "to build requires systemtap 2.7+ (on Linux) or dtrace (on other " |
| 848 | @echo "platforms such as Solaris and *BSD). " |
| 849 | @echo |
| 850 | @echo "Please consult INSTALL to get more information." |
| 851 | @echo |
David Garcia Quintas | 8954e90 | 2015-04-29 09:46:33 -0700 | [diff] [blame] | 852 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 853 | stop: |
| 854 | @false |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 855 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 856 | % for tgt in targets: |
| 857 | ${tgt.name}: $(BINDIR)/$(CONFIG)/${tgt.name} |
| 858 | % endfor |
ctiller | 09cb6d5 | 2014-12-19 17:38:22 -0800 | [diff] [blame] | 859 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 860 | run_dep_checks: |
| 861 | $(OPENSSL_ALPN_CHECK_CMD) || true |
| 862 | $(OPENSSL_NPN_CHECK_CMD) || true |
| 863 | $(ZLIB_CHECK_CMD) || true |
| 864 | $(PERFTOOLS_CHECK_CMD) || true |
| 865 | $(PROTOBUF_CHECK_CMD) || true |
| 866 | $(PROTOC_CHECK_VERSION_CMD) || true |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 867 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 868 | third_party/protobuf/configure: |
| 869 | $(E) "[AUTOGEN] Preparing protobuf" |
| 870 | $(Q)(cd third_party/protobuf ; autoreconf -f -i -Wall,no-obsolete) |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 871 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 872 | $(LIBDIR)/$(CONFIG)/protobuf/libprotobuf.a: third_party/protobuf/configure |
| 873 | $(E) "[MAKE] Building protobuf" |
Vijay Pai | cc7eb8e | 2016-07-19 19:03:55 -0700 | [diff] [blame] | 874 | $(Q)(cd third_party/protobuf ; CC="$(CC)" CXX="$(CXX)" LDFLAGS="$(LDFLAGS_$(CONFIG)) -g $(PROTOBUF_LDFLAGS_EXTRA)" CPPFLAGS="$(PIC_CPPFLAGS) $(CPPFLAGS_$(CONFIG)) -g $(PROTOBUF_CPPFLAGS_EXTRA)" ./configure --disable-shared --enable-static $(PROTOBUF_CONFIG_OPTS)) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 875 | $(Q)$(MAKE) -C third_party/protobuf clean |
| 876 | $(Q)$(MAKE) -C third_party/protobuf |
| 877 | $(Q)mkdir -p $(LIBDIR)/$(CONFIG)/protobuf |
| 878 | $(Q)mkdir -p $(BINDIR)/$(CONFIG)/protobuf |
| 879 | $(Q)cp third_party/protobuf/src/.libs/libprotoc.a $(LIBDIR)/$(CONFIG)/protobuf |
| 880 | $(Q)cp third_party/protobuf/src/.libs/libprotobuf.a $(LIBDIR)/$(CONFIG)/protobuf |
| 881 | $(Q)cp third_party/protobuf/src/protoc $(BINDIR)/$(CONFIG)/protobuf |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 882 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 883 | static: static_c static_cxx |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 884 | |
Craig Tiller | eda85c6 | 2016-07-01 12:45:19 -0700 | [diff] [blame] | 885 | static_c: pc_c pc_c_unsecure cache.mk \ |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 886 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 887 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 888 | % if lib.build == 'all' and lib.language == 'c' and not lib.get('external_deps', None): |
| 889 | $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\ |
| 890 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 891 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 892 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 893 | |
| 894 | |
Nicolas "Pixel" Noble | 0912179 | 2016-01-30 09:01:53 +0100 | [diff] [blame] | 895 | static_cxx: pc_cxx pc_cxx_unsecure cache.mk \ |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 896 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 897 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 898 | % if lib.build == 'all' and lib.language == 'c++': |
| 899 | $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\ |
| 900 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 901 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 902 | % endfor |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 903 | |
| 904 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 905 | shared: shared_c shared_cxx |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 906 | |
Craig Tiller | eda85c6 | 2016-07-01 12:45:19 -0700 | [diff] [blame] | 907 | shared_c: pc_c pc_c_unsecure cache.mk\ |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 908 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 909 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 910 | % if lib.build == 'all' and lib.language == 'c' and not lib.get('external_deps', None): |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 911 | $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)\ |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 912 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 913 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 914 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 915 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 916 | shared_cxx: pc_cxx pc_cxx_unsecure cache.mk\ |
| 917 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 918 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 919 | % if lib.build == 'all' and lib.language == 'c++': |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 920 | $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)\ |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 921 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 922 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 923 | % endfor |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 924 | |
| 925 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 926 | shared_csharp: shared_c \ |
| 927 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 928 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 929 | % if lib.build == 'all' and lib.language == 'csharp': |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 930 | $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP)\ |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 931 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 932 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 933 | % endfor |
Jan Tattermusch | 2ec0b3e | 2015-02-18 15:03:12 -0800 | [diff] [blame] | 934 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 935 | grpc_csharp_ext: shared_csharp |
Jan Tattermusch | 2ec0b3e | 2015-02-18 15:03:12 -0800 | [diff] [blame] | 936 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 937 | plugins: $(PROTOC_PLUGINS) |
Nicolas "Pixel" Noble | 522d712 | 2015-02-19 01:28:02 +0100 | [diff] [blame] | 938 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 939 | privatelibs: privatelibs_c privatelibs_cxx |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 940 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 941 | privatelibs_c: \ |
| 942 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 943 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 944 | % if lib.build == 'private' and lib.language == 'c' and not lib.get('external_deps', None) and not lib.boringssl: |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 945 | $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\ |
| 946 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 947 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 948 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 949 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 950 | pc_c: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 951 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 952 | pc_c_unsecure: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 953 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 954 | pc_cxx: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 955 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 956 | pc_cxx_unsecure: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 957 | |
vjpai | 2041092 | 2016-06-15 09:21:42 -0700 | [diff] [blame] | 958 | ifeq ($(EMBED_OPENSSL),true) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 959 | privatelibs_cxx: \ |
| 960 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 961 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 962 | % if lib.build == 'private' and lib.language == 'c++' and not lib.get('external_deps', None): |
| 963 | $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\ |
| 964 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 965 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 966 | % endfor |
Craig Tiller | eda85c6 | 2016-07-01 12:45:19 -0700 | [diff] [blame] | 967 | |
vjpai | 2041092 | 2016-06-15 09:21:42 -0700 | [diff] [blame] | 968 | else |
| 969 | privatelibs_cxx: \ |
| 970 | % for lib in libs: |
| 971 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
| 972 | % if lib.build == 'private' and lib.language == 'c++' and not lib.get('external_deps', None) and not lib.boringssl: |
| 973 | $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\ |
| 974 | % endif |
| 975 | % endif |
| 976 | % endfor |
Craig Tiller | eda85c6 | 2016-07-01 12:45:19 -0700 | [diff] [blame] | 977 | |
vjpai | 2041092 | 2016-06-15 09:21:42 -0700 | [diff] [blame] | 978 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 979 | |
| 980 | |
Craig Tiller | eda85c6 | 2016-07-01 12:45:19 -0700 | [diff] [blame] | 981 | buildtests: buildtests_c buildtests_cxx |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 982 | |
Craig Tiller | 3824b6e | 2015-12-09 11:19:59 -0800 | [diff] [blame] | 983 | buildtests_c: privatelibs_c <%text>\</%text> |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 984 | % for tgt in targets: |
| 985 | % if tgt.build == 'test' and not tgt.language == 'c++' and not tgt.get('external_deps', None): |
Craig Tiller | 3824b6e | 2015-12-09 11:19:59 -0800 | [diff] [blame] | 986 | $(BINDIR)/$(CONFIG)/${tgt.name} <%text>\</%text> |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 987 | % endif |
| 988 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 989 | |
| 990 | |
vjpai | 2041092 | 2016-06-15 09:21:42 -0700 | [diff] [blame] | 991 | ifeq ($(EMBED_OPENSSL),true) |
Craig Tiller | eda85c6 | 2016-07-01 12:45:19 -0700 | [diff] [blame] | 992 | buildtests_cxx: privatelibs_cxx <%text>\</%text> |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 993 | % for tgt in targets: |
| 994 | % if tgt.build == 'test' and tgt.language == 'c++' and not tgt.get('external_deps', None): |
Craig Tiller | 3824b6e | 2015-12-09 11:19:59 -0800 | [diff] [blame] | 995 | $(BINDIR)/$(CONFIG)/${tgt.name} <%text>\</%text> |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 996 | % endif |
| 997 | % endfor |
Craig Tiller | eda85c6 | 2016-07-01 12:45:19 -0700 | [diff] [blame] | 998 | |
vjpai | 2041092 | 2016-06-15 09:21:42 -0700 | [diff] [blame] | 999 | else |
Craig Tiller | eda85c6 | 2016-07-01 12:45:19 -0700 | [diff] [blame] | 1000 | buildtests_cxx: privatelibs_cxx <%text>\</%text> |
vjpai | 2041092 | 2016-06-15 09:21:42 -0700 | [diff] [blame] | 1001 | % for tgt in targets: |
| 1002 | % if tgt.build == 'test' and tgt.language == 'c++' and not tgt.get('external_deps', None) and not tgt.boringssl: |
| 1003 | $(BINDIR)/$(CONFIG)/${tgt.name} <%text>\</%text> |
| 1004 | % endif |
| 1005 | % endfor |
Craig Tiller | eda85c6 | 2016-07-01 12:45:19 -0700 | [diff] [blame] | 1006 | |
vjpai | 2041092 | 2016-06-15 09:21:42 -0700 | [diff] [blame] | 1007 | endif |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 1008 | |
| 1009 | |
Craig Tiller | eda85c6 | 2016-07-01 12:45:19 -0700 | [diff] [blame] | 1010 | test: test_c test_cxx |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 1011 | |
Craig Tiller | eda85c6 | 2016-07-01 12:45:19 -0700 | [diff] [blame] | 1012 | flaky_test: flaky_test_c flaky_test_cxx |
Nicolas "Pixel" Noble | 4251d56 | 2015-05-22 19:43:39 +0200 | [diff] [blame] | 1013 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1014 | test_c: buildtests_c |
| 1015 | % for tgt in targets: |
| 1016 | % if tgt.build == 'test' and tgt.get('run', True) and not tgt.language == 'c++' and not tgt.get('flaky', False) and not tgt.get('external_deps', None): |
| 1017 | $(E) "[RUN] Testing ${tgt.name}" |
| 1018 | $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 ) |
| 1019 | % endif |
| 1020 | % endfor |
Nicolas "Pixel" Noble | 4251d56 | 2015-05-22 19:43:39 +0200 | [diff] [blame] | 1021 | |
| 1022 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1023 | flaky_test_c: buildtests_c |
| 1024 | % for tgt in targets: |
| 1025 | % if tgt.build == 'test' and tgt.get('run', True) and not tgt.language == 'c++' and tgt.get('flaky', False) and not tgt.get('external_deps', None): |
| 1026 | $(E) "[RUN] Testing ${tgt.name}" |
| 1027 | $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 ) |
| 1028 | % endif |
| 1029 | % endfor |
nnoble | 29e1d29 | 2014-12-01 10:27:40 -0800 | [diff] [blame] | 1030 | |
| 1031 | |
Craig Tiller | eda85c6 | 2016-07-01 12:45:19 -0700 | [diff] [blame] | 1032 | test_cxx: buildtests_cxx |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1033 | % for tgt in targets: |
| 1034 | % if tgt.build == 'test' and tgt.get('run', True) and tgt.language == 'c++' and not tgt.get('flaky', False) and not tgt.get('external_deps', None): |
| 1035 | $(E) "[RUN] Testing ${tgt.name}" |
| 1036 | $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 ) |
| 1037 | % endif |
| 1038 | % endfor |
Nicolas "Pixel" Noble | 4251d56 | 2015-05-22 19:43:39 +0200 | [diff] [blame] | 1039 | |
| 1040 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1041 | flaky_test_cxx: buildtests_cxx |
| 1042 | % for tgt in targets: |
| 1043 | % if tgt.build == 'test' and tgt.get('run', True) and tgt.language == 'c++' and tgt.get('flaky', False) and not tgt.get('external_deps', None): |
| 1044 | $(E) "[RUN] Testing ${tgt.name}" |
| 1045 | $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 ) |
| 1046 | % endif |
| 1047 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1048 | |
| 1049 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1050 | test_python: static_c |
| 1051 | $(E) "[RUN] Testing python code" |
| 1052 | $(Q) tools/run_tests/run_tests.py -lpython -c$(CONFIG) |
Nicolas "Pixel" Noble | 051a28f | 2015-03-17 22:54:54 +0100 | [diff] [blame] | 1053 | |
| 1054 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1055 | tools: tools_c tools_cxx |
Craig Tiller | 7552f0f | 2015-06-19 17:46:20 -0700 | [diff] [blame] | 1056 | |
| 1057 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1058 | tools_c: privatelibs_c\ |
| 1059 | % for tgt in targets: |
| 1060 | % if tgt.build == 'tool' and not tgt.language=='c++': |
| 1061 | $(BINDIR)/$(CONFIG)/${tgt.name}\ |
| 1062 | % endif |
| 1063 | % endfor |
Craig Tiller | 7552f0f | 2015-06-19 17:46:20 -0700 | [diff] [blame] | 1064 | |
| 1065 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1066 | tools_cxx: privatelibs_cxx\ |
| 1067 | % for tgt in targets: |
| 1068 | % if tgt.build == 'tool' and tgt.language=='c++': |
| 1069 | $(BINDIR)/$(CONFIG)/${tgt.name}\ |
| 1070 | % endif |
| 1071 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1072 | |
| 1073 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1074 | buildbenchmarks: privatelibs\ |
| 1075 | % for tgt in targets: |
| 1076 | % if tgt.build == 'benchmark': |
| 1077 | $(BINDIR)/$(CONFIG)/${tgt.name}\ |
| 1078 | % endif |
| 1079 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1080 | |
| 1081 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1082 | benchmarks: buildbenchmarks |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1083 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1084 | strip: strip-static strip-shared |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1085 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1086 | strip-static: strip-static_c strip-static_cxx |
nnoble | 20e2e3f | 2014-12-16 15:37:57 -0800 | [diff] [blame] | 1087 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1088 | strip-shared: strip-shared_c strip-shared_cxx |
nnoble | 20e2e3f | 2014-12-16 15:37:57 -0800 | [diff] [blame] | 1089 | |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 1090 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1091 | # TODO(nnoble): the strip target is stripping in-place, instead |
| 1092 | # of copying files in a temporary folder. |
| 1093 | # This prevents proper debugging after running make install. |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 1094 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1095 | strip-static_c: static_c |
| 1096 | ifeq ($(CONFIG),opt) |
| 1097 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1098 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1099 | % if lib.language == "c": |
| 1100 | % if lib.build == "all": |
| 1101 | % if not lib.get('external_deps', None): |
| 1102 | $(E) "[STRIP] Stripping lib${lib.name}.a" |
| 1103 | $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a |
| 1104 | % endif |
| 1105 | % endif |
| 1106 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1107 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1108 | % endfor |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1109 | endif |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1110 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1111 | strip-static_cxx: static_cxx |
| 1112 | ifeq ($(CONFIG),opt) |
| 1113 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1114 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1115 | % if lib.language == "c++": |
| 1116 | % if lib.build == "all": |
| 1117 | $(E) "[STRIP] Stripping lib${lib.name}.a" |
| 1118 | $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a |
| 1119 | % endif |
| 1120 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1121 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1122 | % endfor |
| 1123 | endif |
Nicolas "Pixel" Noble | 4ef9b86 | 2015-08-14 19:35:24 +0200 | [diff] [blame] | 1124 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1125 | strip-shared_c: shared_c |
| 1126 | ifeq ($(CONFIG),opt) |
| 1127 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1128 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1129 | % if lib.language == "c": |
| 1130 | % if lib.build == "all": |
| 1131 | % if not lib.get('external_deps', None): |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 1132 | $(E) "[STRIP] Stripping $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)" |
| 1133 | $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1134 | % endif |
| 1135 | % endif |
| 1136 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1137 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1138 | % endfor |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1139 | endif |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1140 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1141 | strip-shared_cxx: shared_cxx |
| 1142 | ifeq ($(CONFIG),opt) |
| 1143 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1144 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1145 | % if lib.language == "c++": |
| 1146 | % if lib.build == "all": |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 1147 | $(E) "[STRIP] Stripping $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)" |
| 1148 | $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1149 | % endif |
| 1150 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1151 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1152 | % endfor |
| 1153 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1154 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1155 | strip-shared_csharp: shared_csharp |
| 1156 | ifeq ($(CONFIG),opt) |
| 1157 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1158 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1159 | % if lib.language == "csharp": |
| 1160 | % if lib.build == "all": |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 1161 | $(E) "[STRIP] Stripping $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP)" |
| 1162 | $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1163 | % endif |
| 1164 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1165 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1166 | % endfor |
| 1167 | endif |
Jan Tattermusch | 2ec0b3e | 2015-02-18 15:03:12 -0800 | [diff] [blame] | 1168 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1169 | cache.mk:: |
| 1170 | $(E) "[MAKE] Generating $@" |
| 1171 | $(Q) echo "$(CACHE_MK)" | tr , '\n' >$@ |
murgatroid99 | aa52157 | 2015-07-10 14:49:12 -0700 | [diff] [blame] | 1172 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1173 | $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc: |
| 1174 | $(E) "[MAKE] Generating $@" |
| 1175 | $(Q) mkdir -p $(@D) |
| 1176 | $(Q) echo "$(GRPC_PC_FILE)" | tr , '\n' >$@ |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 1177 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1178 | $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc: |
| 1179 | $(E) "[MAKE] Generating $@" |
| 1180 | $(Q) mkdir -p $(@D) |
| 1181 | $(Q) echo "$(GRPC_UNSECURE_PC_FILE)" | tr , '\n' >$@ |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 1182 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1183 | $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc: |
| 1184 | $(E) "[MAKE] Generating $@" |
| 1185 | $(Q) mkdir -p $(@D) |
| 1186 | $(Q) echo "$(GRPCXX_PC_FILE)" | tr , '\n' >$@ |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 1187 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1188 | $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc: |
| 1189 | $(E) "[MAKE] Generating $@" |
| 1190 | $(Q) mkdir -p $(@D) |
| 1191 | $(Q) echo "$(GRPCXX_UNSECURE_PC_FILE)" | tr , '\n' >$@ |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 1192 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1193 | % for p in protos: |
| 1194 | ifeq ($(NO_PROTOC),true) |
| 1195 | $(GENDIR)/${p}.pb.cc: protoc_dep_error |
| 1196 | $(GENDIR)/${p}.grpc.pb.cc: protoc_dep_error |
| 1197 | else |
Craig Tiller | 1b4e330 | 2015-12-17 16:35:00 -0800 | [diff] [blame] | 1198 | $(GENDIR)/${p}.pb.cc: ${p}.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) ${' '.join('$(GENDIR)/%s.pb.cc' % q for q in proto_deps.get(p, []))} |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1199 | $(E) "[PROTOC] Generating protobuf CC file from $<" |
| 1200 | $(Q) mkdir -p `dirname $@` |
David Garcia Quintas | e68ed6f | 2016-06-17 12:49:14 -0700 | [diff] [blame] | 1201 | $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $< |
Nicolas "Pixel" Noble | 0caebbf | 2015-04-09 23:08:51 +0200 | [diff] [blame] | 1202 | |
Craig Tiller | 1b4e330 | 2015-12-17 16:35:00 -0800 | [diff] [blame] | 1203 | $(GENDIR)/${p}.grpc.pb.cc: ${p}.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) ${' '.join('$(GENDIR)/%s.pb.cc $(GENDIR)/%s.grpc.pb.cc' % (q,q) for q in proto_deps.get(p, []))} |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1204 | $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<" |
| 1205 | $(Q) mkdir -p `dirname $@` |
Mario Emmenlauer | 121d289 | 2016-12-12 23:49:27 +0100 | [diff] [blame] | 1206 | $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $< |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1207 | endif |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 1208 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1209 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1210 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1211 | ifeq ($(CONFIG),stapprof) |
| 1212 | src/core/profiling/stap_timers.c: $(GENDIR)/src/core/profiling/stap_probes.h |
| 1213 | ifeq ($(HAS_SYSTEMTAP),true) |
| 1214 | $(GENDIR)/src/core/profiling/stap_probes.h: src/core/profiling/stap_probes.d |
| 1215 | $(E) "[DTRACE] Compiling $<" |
| 1216 | $(Q) mkdir -p `dirname $@` |
| 1217 | $(Q) $(DTRACE) -C -h -s $< -o $@ |
| 1218 | else |
| 1219 | $(GENDIR)/src/core/profiling/stap_probes.h: systemtap_dep_error stop |
| 1220 | endif |
| 1221 | endif |
David Garcia Quintas | 611b736 | 2015-04-27 15:49:31 -0700 | [diff] [blame] | 1222 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1223 | $(OBJDIR)/$(CONFIG)/%.o : %.c |
| 1224 | $(E) "[C] Compiling $<" |
| 1225 | $(Q) mkdir -p `dirname $@` |
Nicolas "Pixel" Noble | 4500034 | 2016-01-28 05:04:45 +0100 | [diff] [blame] | 1226 | $(Q) $(CC) $(CPPFLAGS) $(CFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $< |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1227 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1228 | $(OBJDIR)/$(CONFIG)/%.o : $(GENDIR)/%.pb.cc |
| 1229 | $(E) "[CXX] Compiling $<" |
| 1230 | $(Q) mkdir -p `dirname $@` |
Nicolas "Pixel" Noble | 4500034 | 2016-01-28 05:04:45 +0100 | [diff] [blame] | 1231 | $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $< |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1232 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1233 | $(OBJDIR)/$(CONFIG)/src/compiler/%.o : src/compiler/%.cc |
| 1234 | $(E) "[HOSTCXX] Compiling $<" |
| 1235 | $(Q) mkdir -p `dirname $@` |
| 1236 | $(Q) $(HOST_CXX) $(HOST_CXXFLAGS) $(HOST_CPPFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $< |
nnoble | 72309c6 | 2014-12-12 11:42:26 -0800 | [diff] [blame] | 1237 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1238 | $(OBJDIR)/$(CONFIG)/%.o : %.cc |
| 1239 | $(E) "[CXX] Compiling $<" |
| 1240 | $(Q) mkdir -p `dirname $@` |
Nicolas "Pixel" Noble | 4500034 | 2016-01-28 05:04:45 +0100 | [diff] [blame] | 1241 | $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $< |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1242 | |
murgatroid99 | a3c5535 | 2016-08-10 13:41:31 -0700 | [diff] [blame] | 1243 | install: install_c install_cxx install-plugins install-certs |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1244 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1245 | install_c: install-headers_c install-static_c install-shared_c |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1246 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1247 | install_cxx: install-headers_cxx install-static_cxx install-shared_cxx |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1248 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1249 | install_csharp: install-shared_csharp install_c |
Jan Tattermusch | 2ec0b3e | 2015-02-18 15:03:12 -0800 | [diff] [blame] | 1250 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1251 | install_grpc_csharp_ext: install_csharp |
Jan Tattermusch | 2ec0b3e | 2015-02-18 15:03:12 -0800 | [diff] [blame] | 1252 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1253 | install-headers: install-headers_c install-headers_cxx |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1254 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1255 | install-headers_c: |
| 1256 | $(E) "[INSTALL] Installing public C headers" |
| 1257 | $(Q) $(foreach h, $(PUBLIC_HEADERS_C), $(INSTALL) -d $(prefix)/$(dir $(h)) && ) exit 0 || exit 1 |
| 1258 | $(Q) $(foreach h, $(PUBLIC_HEADERS_C), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1 |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1259 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1260 | install-headers_cxx: |
| 1261 | $(E) "[INSTALL] Installing public C++ headers" |
| 1262 | $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) -d $(prefix)/$(dir $(h)) && ) exit 0 || exit 1 |
| 1263 | $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1 |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1264 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1265 | install-static: install-static_c install-static_cxx |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1266 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1267 | install-static_c: static_c strip-static_c install-pkg-config_c |
| 1268 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1269 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1270 | % if lib.language == "c": |
| 1271 | % if lib.build == "all": |
| 1272 | % if not lib.get('external_deps', None): |
| 1273 | $(E) "[INSTALL] Installing lib${lib.name}.a" |
| 1274 | $(Q) $(INSTALL) -d $(prefix)/lib |
| 1275 | $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a $(prefix)/lib/lib${lib.name}.a |
| 1276 | % endif |
| 1277 | % endif |
| 1278 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1279 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1280 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1281 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1282 | install-static_cxx: static_cxx strip-static_cxx install-pkg-config_cxx |
| 1283 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1284 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1285 | % if lib.language == "c++": |
| 1286 | % if lib.build == "all": |
| 1287 | $(E) "[INSTALL] Installing lib${lib.name}.a" |
| 1288 | $(Q) $(INSTALL) -d $(prefix)/lib |
| 1289 | $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a $(prefix)/lib/lib${lib.name}.a |
| 1290 | % endif |
| 1291 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1292 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1293 | % endfor |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1294 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1295 | <%def name="install_shared(lang_filter)">\ |
| 1296 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1297 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1298 | % if lib.language == lang_filter: |
| 1299 | % if lib.build == "all": |
| 1300 | % if not lib.get('external_deps', None): |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 1301 | $(E) "[INSTALL] Installing $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]})" |
Nicolas "Pixel" Noble | c4e57e3 | 2016-01-30 21:05:35 +0100 | [diff] [blame] | 1302 | $(Q) $(INSTALL) -d $(prefix)/lib |
Mario Emmenlauer | 8e883b2 | 2017-01-12 11:45:52 +0100 | [diff] [blame] | 1303 | $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]}) $(prefix)/lib/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]}) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1304 | ifeq ($(SYSTEM),MINGW32) |
Mario Emmenlauer | 44b2d08 | 2017-01-13 12:35:49 +0100 | [diff] [blame] | 1305 | $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/lib${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]})-dll.a $(prefix)/lib/lib${lib.name}.a |
Nicolas "Pixel" Noble | c4e57e3 | 2016-01-30 21:05:35 +0100 | [diff] [blame] | 1306 | else ifneq ($(SYSTEM),Darwin) |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 1307 | $(Q) ln -sf $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]}) $(prefix)/lib/lib${lib.name}.so.${settings.core_version.major} |
| 1308 | $(Q) ln -sf $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]}) $(prefix)/lib/lib${lib.name}.so |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1309 | endif |
| 1310 | % endif |
| 1311 | % endif |
| 1312 | % endif |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1313 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1314 | % endfor |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1315 | ifneq ($(SYSTEM),MINGW32) |
| 1316 | ifneq ($(SYSTEM),Darwin) |
| 1317 | $(Q) ldconfig || true |
| 1318 | endif |
| 1319 | endif |
| 1320 | </%def> |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1321 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1322 | install-shared_c: shared_c strip-shared_c install-pkg-config_c |
| 1323 | ${install_shared("c")} |
Nicolas "Pixel" Noble | 522d712 | 2015-02-19 01:28:02 +0100 | [diff] [blame] | 1324 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1325 | install-shared_cxx: shared_cxx strip-shared_cxx install-shared_c install-pkg-config_cxx |
| 1326 | ${install_shared("c++")} |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1327 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1328 | install-shared_csharp: shared_csharp strip-shared_csharp |
| 1329 | ${install_shared("csharp")} |
Nicolas "Pixel" Noble | 522d712 | 2015-02-19 01:28:02 +0100 | [diff] [blame] | 1330 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1331 | install-plugins: $(PROTOC_PLUGINS) |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1332 | $(E) "[INSTALL] Installing grpc protoc plugins" |
| 1333 | % for tgt in targets: |
| 1334 | % if tgt.build == 'protoc': |
| 1335 | $(Q) $(INSTALL) -d $(prefix)/bin |
| 1336 | $(Q) $(INSTALL) $(BINDIR)/$(CONFIG)/${tgt.name} $(prefix)/bin/${tgt.name} |
| 1337 | % endif |
| 1338 | % endfor |
Jan Tattermusch | 2ec0b3e | 2015-02-18 15:03:12 -0800 | [diff] [blame] | 1339 | |
Craig Tiller | eda85c6 | 2016-07-01 12:45:19 -0700 | [diff] [blame] | 1340 | install-pkg-config_c: pc_c pc_c_unsecure |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1341 | $(E) "[INSTALL] Installing C pkg-config files" |
| 1342 | $(Q) $(INSTALL) -d $(prefix)/lib/pkgconfig |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1343 | $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc $(prefix)/lib/pkgconfig/grpc.pc |
| 1344 | $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc $(prefix)/lib/pkgconfig/grpc_unsecure.pc |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 1345 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1346 | install-pkg-config_cxx: pc_cxx pc_cxx_unsecure |
| 1347 | $(E) "[INSTALL] Installing C++ pkg-config files" |
| 1348 | $(Q) $(INSTALL) -d $(prefix)/lib/pkgconfig |
| 1349 | $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc $(prefix)/lib/pkgconfig/grpc++.pc |
| 1350 | $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc $(prefix)/lib/pkgconfig/grpc++_unsecure.pc |
murgatroid99 | 8faab23 | 2015-06-30 17:24:21 -0700 | [diff] [blame] | 1351 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1352 | install-certs: etc/roots.pem |
| 1353 | $(E) "[INSTALL] Installing root certificates" |
| 1354 | $(Q) $(INSTALL) -d $(prefix)/share/grpc |
| 1355 | $(Q) $(INSTALL) etc/roots.pem $(prefix)/share/grpc/roots.pem |
Nicolas "Pixel" Noble | 161ea23 | 2015-02-22 05:48:53 +0100 | [diff] [blame] | 1356 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1357 | clean: |
| 1358 | $(E) "[CLEAN] Cleaning build directories." |
| 1359 | $(Q) $(RM) -rf $(OBJDIR) $(LIBDIR) $(BINDIR) $(GENDIR) cache.mk |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1360 | |
| 1361 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1362 | # The various libraries |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1363 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1364 | % for lib in libs: |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1365 | % if 'Makefile' in lib.get('build_system', ['Makefile']): |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1366 | ${makelib(lib)} |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1367 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1368 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1369 | |
| 1370 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1371 | # All of the test targets, and protoc plugins |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1372 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1373 | % for tgt in targets: |
| 1374 | ${maketarget(tgt)} |
| 1375 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1376 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1377 | <%def name="makelib(lib)"> |
| 1378 | LIB${lib.name.upper()}_SRC = \\ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1379 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1380 | % for src in lib.src: |
| 1381 | ${proto_to_cc(src)} \\ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1382 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1383 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1384 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1385 | % if "public_headers" in lib: |
| 1386 | % if lib.language == "c++": |
| 1387 | PUBLIC_HEADERS_CXX += \\ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1388 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1389 | % else: |
| 1390 | PUBLIC_HEADERS_C += \\ |
nnoble | 85a4926 | 2014-12-08 18:14:03 -0800 | [diff] [blame] | 1391 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1392 | % endif |
| 1393 | % for hdr in lib.public_headers: |
| 1394 | ${hdr} \\ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1395 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1396 | % endfor |
| 1397 | % endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1398 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1399 | LIB${lib.name.upper()}_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIB${lib.name.upper()}_SRC)))) |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1400 | |
Nicolas "Pixel" Noble | 51b1aee | 2016-01-28 01:14:58 +0100 | [diff] [blame] | 1401 | % if lib.get('defaults', None): |
| 1402 | % for name, value in defaults.get(lib.defaults).iteritems(): |
| 1403 | $(LIB${lib.name.upper()}_OBJS): ${name} += ${value} |
| 1404 | % endfor |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 1405 | % endif |
| 1406 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1407 | ## If the library requires OpenSSL, let's add some restrictions. |
| 1408 | % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check': |
| 1409 | ifeq ($(NO_SECURE),true) |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1410 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1411 | # You can't build secure libraries if you don't have OpenSSL. |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 1412 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1413 | $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1414 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1415 | % if lib.build == "all": |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 1416 | $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]}): openssl_dep_error |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1417 | % endif |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1418 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1419 | else |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1420 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1421 | % if lib.language == 'c++': |
| 1422 | ifeq ($(NO_PROTOBUF),true) |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1423 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1424 | # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay. |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1425 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1426 | $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: protobuf_dep_error |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1427 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1428 | % if lib.build == "all": |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 1429 | $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]}): protobuf_dep_error |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1430 | % endif |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1431 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1432 | else |
| 1433 | % endif |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1434 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1435 | $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: $(ZLIB_DEP) $(OPENSSL_DEP)\ |
| 1436 | ## The else here corresponds to the if secure earlier. |
| 1437 | % else: |
| 1438 | % if lib.language == 'c++': |
| 1439 | ifeq ($(NO_PROTOBUF),true) |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1440 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1441 | # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay. |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1442 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1443 | $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: protobuf_dep_error |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1444 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1445 | % if lib.build == "all": |
Craig Tiller | 27f7084 | 2016-09-15 16:21:54 -0700 | [diff] [blame] | 1446 | $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]}): protobuf_dep_error |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1447 | % endif |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1448 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1449 | else |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1450 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1451 | % endif |
Nicolas "Pixel" Noble | d649c21 | 2016-01-27 20:27:30 +0100 | [diff] [blame] | 1452 | $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: \ |
| 1453 | % if lib.name != 'z': |
| 1454 | $(ZLIB_DEP) \ |
| 1455 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1456 | % endif |
| 1457 | % if lib.language == 'c++': |
| 1458 | $(PROTOBUF_DEP)\ |
| 1459 | % endif |
Nicolas "Pixel" Noble | f51a901 | 2016-02-03 07:39:43 +0100 | [diff] [blame] | 1460 | $(LIB${lib.name.upper()}_OBJS) \ |
| 1461 | % if lib.get('baselib', False): |
Craig Tiller | 1298afd | 2016-02-09 12:29:17 -0800 | [diff] [blame] | 1462 | $(LIBGPR_OBJS) \ |
Nicolas "Pixel" Noble | f51a901 | 2016-02-03 07:39:43 +0100 | [diff] [blame] | 1463 | $(ZLIB_MERGE_OBJS) \ |
| 1464 | % if lib.get('secure', 'check') == True: |
| 1465 | $(OPENSSL_MERGE_OBJS) \ |
| 1466 | % endif |
| 1467 | % endif |
| 1468 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1469 | $(E) "[AR] Creating $@" |
| 1470 | $(Q) mkdir -p `dirname $@` |
| 1471 | $(Q) rm -f $(LIBDIR)/$(CONFIG)/lib${lib.name}.a |
Vijay Pai | cc7eb8e | 2016-07-19 19:03:55 -0700 | [diff] [blame] | 1472 | $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a $(LIB${lib.name.upper()}_OBJS) \ |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1473 | % if lib.get('baselib', False): |
Craig Tiller | 1298afd | 2016-02-09 12:29:17 -0800 | [diff] [blame] | 1474 | $(LIBGPR_OBJS) \ |
Nicolas "Pixel" Noble | f51a901 | 2016-02-03 07:39:43 +0100 | [diff] [blame] | 1475 | $(ZLIB_MERGE_OBJS) \ |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1476 | % if lib.get('secure', 'check') == True: |
Nicolas "Pixel" Noble | f51a901 | 2016-02-03 07:39:43 +0100 | [diff] [blame] | 1477 | $(OPENSSL_MERGE_OBJS) \ |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1478 | % endif |
| 1479 | % endif |
Nicolas "Pixel" Noble | f51a901 | 2016-02-03 07:39:43 +0100 | [diff] [blame] | 1480 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1481 | ifeq ($(SYSTEM),Darwin) |
Nicolas "Pixel" Noble | e0dbd3f | 2016-02-23 00:21:38 +0100 | [diff] [blame] | 1482 | $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/lib${lib.name}.a |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1483 | endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1484 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1485 | <% |
Nicolas "Pixel" Noble | 010f1e7 | 2015-04-23 02:23:49 +0200 | [diff] [blame] | 1486 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1487 | if lib.language == 'c++': |
| 1488 | ld = '$(LDXX)' |
| 1489 | else: |
| 1490 | ld = '$(LD)' |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1491 | |
Craig Tiller | 40c8fba | 2016-09-15 16:29:09 -0700 | [diff] [blame] | 1492 | out_mingbase = '$(LIBDIR)/$(CONFIG)/' + lib.name + '$(SHARED_VERSION_' + lang_to_var[lib.language] + ')' |
| 1493 | out_libbase = '$(LIBDIR)/$(CONFIG)/lib' + lib.name + '$(SHARED_VERSION_' + lang_to_var[lib.language] + ')' |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1494 | |
Nicolas "Pixel" Noble | 8087d70 | 2017-02-01 02:23:50 +0100 | [diff] [blame] | 1495 | common = '$(LIB' + lib.name.upper() + '_OBJS)' |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1496 | |
Craig Tiller | d7b1bdf | 2016-11-04 16:20:13 -0700 | [diff] [blame] | 1497 | link_libs = '' |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1498 | lib_deps = ' $(ZLIB_DEP)' |
| 1499 | mingw_libs = '' |
| 1500 | mingw_lib_deps = ' $(ZLIB_DEP)' |
| 1501 | if lib.language == 'c++': |
| 1502 | lib_deps += ' $(PROTOBUF_DEP)' |
| 1503 | mingw_lib_deps += ' $(PROTOBUF_DEP)' |
Jan Tattermusch | 324140c | 2016-01-12 08:54:01 -0800 | [diff] [blame] | 1504 | if lib.get('deps_linkage', None) == 'static': |
| 1505 | for dep in lib.get('deps', []): |
| 1506 | lib_archive = '$(LIBDIR)/$(CONFIG)/lib' + dep + '.a' |
| 1507 | common = common + ' ' + lib_archive |
| 1508 | lib_deps = lib_deps + ' ' + lib_archive |
| 1509 | mingw_lib_deps = mingw_lib_deps + ' ' + lib_archive |
| 1510 | else: |
| 1511 | for dep in lib.get('deps', []): |
Craig Tiller | d7b1bdf | 2016-11-04 16:20:13 -0700 | [diff] [blame] | 1512 | dep_lib = None |
| 1513 | for dl in libs: |
| 1514 | if dl.name == dep: |
| 1515 | dep_lib = dl |
| 1516 | assert dep_lib, 'lib %s not found (in %s)' % (dep, lib.name) |
| 1517 | link_libs = link_libs + ' -l' + dep |
| 1518 | lib_deps = lib_deps + ' $(LIBDIR)/$(CONFIG)/lib' + dep + '.$(SHARED_EXT_' + lang_to_var[dep_lib.language] + ')' |
Mario Emmenlauer | 44b2d08 | 2017-01-13 12:35:49 +0100 | [diff] [blame] | 1519 | mingw_libs = mingw_libs + ' -l' + dep + '$(SHARED_VERSION_' + lang_to_var[dep_lib.language] + ')-dll' |
Mario Emmenlauer | 8e883b2 | 2017-01-12 11:45:52 +0100 | [diff] [blame] | 1520 | mingw_lib_deps = mingw_lib_deps + ' $(LIBDIR)/$(CONFIG)/' + dep + '$(SHARED_VERSION_' + lang_to_var[dep_lib.language] + ').$(SHARED_EXT_' + lang_to_var[dep_lib.language] + ')' |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1521 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1522 | security = lib.get('secure', 'check') |
| 1523 | if security == True: |
| 1524 | common = common + ' $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE)' |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 1525 | common = common + ' $(ZLIB_MERGE_LIBS)' |
Nicolas "Pixel" Noble | a7c162c | 2015-07-24 20:21:51 +0200 | [diff] [blame] | 1526 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1527 | if security in [True, 'check']: |
| 1528 | for src in lib.src: |
| 1529 | if not proto_re.match(src): |
| 1530 | sources_that_need_openssl.add(src) |
| 1531 | else: |
| 1532 | for src in lib.src: |
| 1533 | sources_that_don_t_need_openssl.add(src) |
Nicolas "Pixel" Noble | 061690d | 2015-03-06 22:58:58 +0100 | [diff] [blame] | 1534 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1535 | if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check': |
| 1536 | lib_deps = lib_deps + ' $(OPENSSL_DEP)' |
| 1537 | mingw_lib_deps = mingw_lib_deps + ' $(OPENSSL_DEP)' |
Nicolas "Pixel" Noble | dda049c | 2015-02-21 00:39:32 +0100 | [diff] [blame] | 1538 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1539 | if lib.language == 'c++': |
| 1540 | common = common + ' $(LDLIBSXX) $(LDLIBS_PROTOBUF)' |
Craig Tiller | 4bef7ce | 2016-02-02 08:38:43 -0800 | [diff] [blame] | 1541 | |
| 1542 | ldflags = '$(LDFLAGS)' |
| 1543 | if lib.get('LDFLAGS', None): |
| 1544 | ldflags += ' ' + lib['LDFLAGS'] |
Nicolas "Pixel" Noble | 8087d70 | 2017-02-01 02:23:50 +0100 | [diff] [blame] | 1545 | |
| 1546 | common = common + ' $(LDLIBS)' |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1547 | %> |
nnoble | 5b7f32a | 2014-12-22 08:12:44 -0800 | [diff] [blame] | 1548 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1549 | % if lib.build == "all": |
| 1550 | ifeq ($(SYSTEM),MINGW32) |
Craig Tiller | 38b99e9 | 2016-09-15 16:18:09 -0700 | [diff] [blame] | 1551 | ${out_mingbase}.$(SHARED_EXT_${lang_to_var[lib.language]}): $(LIB${lib.name.upper()}_OBJS) ${mingw_lib_deps} |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1552 | $(E) "[LD] Linking $@" |
| 1553 | $(Q) mkdir -p `dirname $@` |
Mario Emmenlauer | 294dc2f | 2016-12-13 00:07:12 +0100 | [diff] [blame] | 1554 | $(Q) ${ld} ${ldflags} -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=${out_mingbase}.def -Wl,--out-implib=${out_libbase}-dll.a -o ${out_mingbase}.$(SHARED_EXT_${lang_to_var[lib.language]}) ${common}${mingw_libs} |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1555 | else |
Craig Tiller | 38b99e9 | 2016-09-15 16:18:09 -0700 | [diff] [blame] | 1556 | ${out_libbase}.$(SHARED_EXT_${lang_to_var[lib.language]}): $(LIB${lib.name.upper()}_OBJS) ${lib_deps} |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1557 | $(E) "[LD] Linking $@" |
| 1558 | $(Q) mkdir -p `dirname $@` |
| 1559 | ifeq ($(SYSTEM),Darwin) |
Mario Emmenlauer | 8e883b2 | 2017-01-12 11:45:52 +0100 | [diff] [blame] | 1560 | $(Q) ${ld} ${ldflags} -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]}) -dynamiclib -o ${out_libbase}.$(SHARED_EXT_${lang_to_var[lib.language]}) ${common}${link_libs} |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1561 | else |
Craig Tiller | d7b1bdf | 2016-11-04 16:20:13 -0700 | [diff] [blame] | 1562 | $(Q) ${ld} ${ldflags} -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,lib${lib.name}.so.${settings.core_version.major} -o ${out_libbase}.$(SHARED_EXT_${lang_to_var[lib.language]}) ${common}${link_libs} |
Mario Emmenlauer | 8e883b2 | 2017-01-12 11:45:52 +0100 | [diff] [blame] | 1563 | $(Q) ln -sf $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]}) ${out_libbase}.so.${settings.get(lang_to_var[lib.language].lower() + '_version').major} |
| 1564 | $(Q) ln -sf $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]}) ${out_libbase}.so |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1565 | endif |
| 1566 | endif |
| 1567 | % endif |
| 1568 | % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check': |
| 1569 | ## If the lib was secure, we have to close the Makefile's if that tested |
| 1570 | ## the presence of OpenSSL. |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1571 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1572 | endif |
| 1573 | % endif |
| 1574 | % if lib.language == 'c++': |
| 1575 | ## If the lib was C++, we have to close the Makefile's if that tested |
| 1576 | ## the presence of protobuf 3.0.0+ |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1577 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1578 | endif |
| 1579 | % endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1580 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1581 | % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check': |
| 1582 | ifneq ($(NO_SECURE),true) |
| 1583 | % endif |
| 1584 | ifneq ($(NO_DEPS),true) |
| 1585 | -include $(LIB${lib.name.upper()}_OBJS:.o=.dep) |
| 1586 | endif |
| 1587 | % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check': |
| 1588 | endif |
| 1589 | % endif |
| 1590 | % for src in lib.src: |
| 1591 | % if not proto_re.match(src) and any(proto_re.match(src2) for src2 in lib.src): |
| 1592 | $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: ${' '.join(proto_to_cc(src2) for src2 in lib.src if proto_re.match(src2))} |
| 1593 | % endif |
| 1594 | % endfor |
| 1595 | </%def> |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1596 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1597 | <%def name="maketarget(tgt)"><% has_no_sources = not tgt.src %> |
| 1598 | % if not has_no_sources: |
| 1599 | ${tgt.name.upper()}_SRC = \\ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1600 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1601 | % for src in tgt.src: |
| 1602 | ${proto_to_cc(src)} \\ |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1603 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1604 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1605 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1606 | ${tgt.name.upper()}_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(${tgt.name.upper()}_SRC)))) |
| 1607 | % endif |
| 1608 | % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check': |
| 1609 | ifeq ($(NO_SECURE),true) |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1610 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1611 | # You can't build secure targets if you don't have OpenSSL. |
Nicolas Noble | 047b727 | 2015-01-16 13:55:05 -0800 | [diff] [blame] | 1612 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1613 | $(BINDIR)/$(CONFIG)/${tgt.name}: openssl_dep_error |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1614 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1615 | else |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1616 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1617 | % endif |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 1618 | |
| 1619 | % if tgt.boringssl: |
| 1620 | # boringssl needs an override to ensure that it does not include |
| 1621 | # system openssl headers regardless of other configuration |
| 1622 | # we do so here with a target specific variable assignment |
Craig Tiller | 78222f7 | 2016-05-10 09:55:38 -0700 | [diff] [blame] | 1623 | $(${tgt.name.upper()}_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI) |
Craig Tiller | 0fe5ee7 | 2015-12-22 12:50:36 -0800 | [diff] [blame] | 1624 | $(${tgt.name.upper()}_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS) |
| 1625 | $(${tgt.name.upper()}_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE |
| 1626 | % else: |
| 1627 | % endif |
| 1628 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1629 | ## |
| 1630 | ## We're not trying to add a dependency on building zlib and openssl here, |
| 1631 | ## as it's already done in the libraries. We're assuming that the build |
| 1632 | ## trickles down, and that a secure target requires a secure version of |
| 1633 | ## a library. |
| 1634 | ## |
| 1635 | ## That simplifies the codegen a bit, but prevents a fully defined Makefile. |
| 1636 | ## I can live with that. |
| 1637 | ## |
| 1638 | % if tgt.build == 'protoc' or tgt.language == 'c++': |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1639 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1640 | ifeq ($(NO_PROTOBUF),true) |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1641 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1642 | # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.0.0+. |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1643 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1644 | $(BINDIR)/$(CONFIG)/${tgt.name}: protobuf_dep_error |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1645 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1646 | else |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1647 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1648 | $(BINDIR)/$(CONFIG)/${tgt.name}: \ |
| 1649 | % if not has_no_sources: |
| 1650 | $(PROTOBUF_DEP) $(${tgt.name.upper()}_OBJS)\ |
| 1651 | % endif |
| 1652 | % else: |
| 1653 | $(BINDIR)/$(CONFIG)/${tgt.name}: \ |
| 1654 | % if not has_no_sources: |
| 1655 | $(${tgt.name.upper()}_OBJS)\ |
| 1656 | % endif |
| 1657 | % endif |
| 1658 | % for dep in tgt.deps: |
| 1659 | $(LIBDIR)/$(CONFIG)/lib${dep}.a\ |
| 1660 | % endfor |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1661 | |
Craig Tiller | 32173c5 | 2016-03-17 14:12:45 -0700 | [diff] [blame] | 1662 | % if tgt.language == "c++" or tgt.boringssl or tgt.build == 'fuzzer': |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1663 | ## C++ targets specificies. |
| 1664 | % if tgt.build == 'protoc': |
| 1665 | $(E) "[HOSTLD] Linking $@" |
| 1666 | $(Q) mkdir -p `dirname $@` |
| 1667 | $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) \ |
| 1668 | % if not has_no_sources: |
| 1669 | $(${tgt.name.upper()}_OBJS)\ |
| 1670 | % endif |
| 1671 | % else: |
| 1672 | $(E) "[LD] Linking $@" |
| 1673 | $(Q) mkdir -p `dirname $@` |
| 1674 | $(Q) $(LDXX) $(LDFLAGS) \ |
| 1675 | % if not has_no_sources: |
| 1676 | $(${tgt.name.upper()}_OBJS)\ |
| 1677 | % endif |
| 1678 | % endif |
| 1679 | % else: |
| 1680 | ## C-only targets specificities. |
| 1681 | $(E) "[LD] Linking $@" |
| 1682 | $(Q) mkdir -p `dirname $@` |
| 1683 | $(Q) $(LD) $(LDFLAGS) \ |
| 1684 | % if not has_no_sources: |
| 1685 | $(${tgt.name.upper()}_OBJS)\ |
| 1686 | % endif |
| 1687 | % endif |
| 1688 | % for dep in tgt.deps: |
| 1689 | $(LIBDIR)/$(CONFIG)/lib${dep}.a\ |
| 1690 | % endfor |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1691 | % if tgt.language == "c++": |
| 1692 | % if tgt.build == 'protoc': |
| 1693 | $(HOST_LDLIBSXX) $(HOST_LDLIBS_PROTOC)\ |
| 1694 | % else: |
| 1695 | $(LDLIBSXX) $(LDLIBS_PROTOBUF)\ |
| 1696 | % endif |
| 1697 | % endif |
| 1698 | % if tgt.build == 'protoc': |
| 1699 | $(HOST_LDLIBS)\ |
| 1700 | % else: |
| 1701 | $(LDLIBS)\ |
| 1702 | % endif |
| 1703 | % if tgt.build == 'protoc': |
| 1704 | $(HOST_LDLIBS_PROTOC)\ |
| 1705 | % elif tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check': |
| 1706 | $(LDLIBS_SECURE)\ |
| 1707 | % endif |
| 1708 | % if tgt.language == 'c++' and tgt.build == 'test': |
| 1709 | $(GTEST_LIB)\ |
| 1710 | % elif tgt.language == 'c++' and tgt.build == 'benchmark': |
| 1711 | $(GTEST_LIB)\ |
| 1712 | % endif |
Craig Tiller | 32173c5 | 2016-03-17 14:12:45 -0700 | [diff] [blame] | 1713 | % if tgt.build == 'fuzzer': |
| 1714 | -lFuzzer\ |
| 1715 | % endif |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1716 | -o $(BINDIR)/$(CONFIG)/${tgt.name} |
| 1717 | % if tgt.build == 'protoc' or tgt.language == 'c++': |
Nicolas Noble | 5383062 | 2015-02-12 16:56:38 -0800 | [diff] [blame] | 1718 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1719 | endif |
| 1720 | % endif |
| 1721 | % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check': |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 1722 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1723 | endif |
| 1724 | % endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1725 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1726 | % for src in tgt.src: |
| 1727 | $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: \ |
| 1728 | % for dep in tgt.deps: |
| 1729 | $(LIBDIR)/$(CONFIG)/lib${dep}.a\ |
| 1730 | % endfor |
Craig Tiller | f5371ef | 2015-01-12 16:40:18 -0800 | [diff] [blame] | 1731 | |
Craig Tiller | ab23045 | 2016-01-04 08:18:43 -0800 | [diff] [blame] | 1732 | % if tgt.language == 'c89': |
| 1733 | % for src in tgt.src: |
Craig Tiller | ea21ca2 | 2016-01-04 12:34:29 -0800 | [diff] [blame] | 1734 | $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o : ${src} |
| 1735 | $(E) "[C] Compiling $<" |
| 1736 | $(Q) mkdir -p `dirname $@` |
Nicolas "Pixel" Noble | 4500034 | 2016-01-28 05:04:45 +0100 | [diff] [blame] | 1737 | $(Q) $(CC) $(CPPFLAGS) $(CFLAGS) -std=c89 -pedantic -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $< |
Craig Tiller | ab23045 | 2016-01-04 08:18:43 -0800 | [diff] [blame] | 1738 | % endfor |
| 1739 | % endif |
| 1740 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1741 | % endfor |
| 1742 | % if not has_no_sources: |
| 1743 | deps_${tgt.name}: $(${tgt.name.upper()}_OBJS:.o=.dep) |
| 1744 | % endif |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1745 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1746 | % if not has_no_sources: |
| 1747 | % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check': |
| 1748 | ifneq ($(NO_SECURE),true) |
| 1749 | % endif |
| 1750 | ifneq ($(NO_DEPS),true) |
| 1751 | -include $(${tgt.name.upper()}_OBJS:.o=.dep) |
| 1752 | endif |
| 1753 | % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check': |
| 1754 | endif |
| 1755 | % endif |
| 1756 | % endif |
Nicolas "Pixel" Noble | 472bb68 | 2015-11-03 19:09:01 +0100 | [diff] [blame] | 1757 | % for src in tgt.src: |
| 1758 | % if not proto_re.match(src) and any(proto_re.match(src2) for src2 in tgt.src): |
| 1759 | $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: ${' '.join(proto_to_cc(src2) for src2 in tgt.src if proto_re.match(src2))} |
| 1760 | % endif |
| 1761 | % endfor |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1762 | </%def> |
Nicolas Noble | b7ebd3b | 2014-11-26 16:33:03 -0800 | [diff] [blame] | 1763 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1764 | ifneq ($(OPENSSL_DEP),) |
| 1765 | # This is to ensure the embedded OpenSSL is built beforehand, properly |
| 1766 | # installing headers to their final destination on the drive. We need this |
| 1767 | # otherwise parallel compilation will fail if a source is compiled first. |
| 1768 | % for src in sorted(sources_that_need_openssl): |
| 1769 | % if src not in sources_that_don_t_need_openssl: |
| 1770 | ${src}: $(OPENSSL_DEP) |
| 1771 | % endif |
| 1772 | % endfor |
| 1773 | endif |
Nicolas "Pixel" Noble | 010f1e7 | 2015-04-23 02:23:49 +0200 | [diff] [blame] | 1774 | |
Craig Tiller | 841c880 | 2015-09-10 13:06:37 -0700 | [diff] [blame] | 1775 | .PHONY: all strip tools \ |
| 1776 | dep_error openssl_dep_error openssl_dep_message git_update stop \ |
| 1777 | buildtests buildtests_c buildtests_cxx \ |
| 1778 | test test_c test_cxx \ |
| 1779 | install install_c install_cxx \ |
| 1780 | install-headers install-headers_c install-headers_cxx \ |
| 1781 | install-shared install-shared_c install-shared_cxx \ |
| 1782 | install-static install-static_c install-static_cxx \ |
| 1783 | strip strip-shared strip-static \ |
| 1784 | strip_c strip-shared_c strip-static_c \ |
| 1785 | strip_cxx strip-shared_cxx strip-static_cxx \ |
| 1786 | dep_c dep_cxx bins_dep_c bins_dep_cxx \ |
| 1787 | clean |
Craig Tiller | b79c1e1 | 2016-02-23 10:00:58 -0800 | [diff] [blame] | 1788 | |
| 1789 | .PHONY: printvars |
| 1790 | printvars: |
| 1791 | @$(foreach V,$(sort $(.VARIABLES)), \ |
| 1792 | $(if $(filter-out environment% default automatic, \ |
| 1793 | $(origin $V)),$(warning $V=$($V) ($(value $V))))) |