blob: 230f16c0c89c262a9428791f275101f227f603bf [file] [log] [blame]
Craig Tiller841c8802015-09-10 13:06:37 -07001%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 Tiller3b935482015-02-16 12:15:48 -08009
Craig Tiller6169d5f2016-03-31 07:46:18 -070010 # Copyright 2015, Google Inc.
Craig Tiller841c8802015-09-10 13:06:37 -070011 # 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 Nobleb7ebd3b2014-11-26 16:33:03 -080041
Craig Tiller841c8802015-09-10 13:06:37 -070042 proto_re = re.compile('(.*)\\.proto')
nnoble72309c62014-12-12 11:42:26 -080043
Craig Tiller841c8802015-09-10 13:06:37 -070044 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" Noble010f1e72015-04-23 02:23:49 +020049
Craig Tiller841c8802015-09-10 13:06:37 -070050 sources_that_need_openssl = set()
51 sources_that_don_t_need_openssl = set()
Craig Tiller78222f72016-05-10 09:55:38 -070052
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 Tiller38b99e92016-09-15 16:18:09 -070065
66 lang_to_var = {
67 'c': 'CORE',
68 'c++': 'CPP',
69 'csharp': 'CSHARP'
70 }
Craig Tiller841c8802015-09-10 13:06:37 -070071 %>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080072
Craig Tiller96b49552015-01-21 16:29:01 -080073
Craig Tiller71a86042016-01-15 14:59:58 -080074 comma := ,
75
76
Craig Tiller841c8802015-09-10 13:06:37 -070077 # Basic platform detection
78 HOST_SYSTEM = $(shell uname | cut -f 1 -d_)
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +010079 SYSTEM ?= $(HOST_SYSTEM)
Craig Tiller841c8802015-09-10 13:06:37 -070080 ifeq ($(SYSTEM),MSYS)
81 SYSTEM = MINGW32
82 endif
83 ifeq ($(SYSTEM),MINGW64)
84 SYSTEM = MINGW32
85 endif
Craig Tiller96b49552015-01-21 16:29:01 -080086
87
Nicolas "Pixel" Noble6dad9b02015-09-23 18:32:26 +020088 MAKEFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
Craig Tiller841c8802015-09-10 13:06:37 -070089 ifndef BUILDDIR
Nicolas "Pixel" Noble42b4c282015-09-17 23:57:08 +020090 BUILDDIR_ABSOLUTE = $(patsubst %/,%,$(dir $(MAKEFILE_PATH)))
91 else
92 BUILDDIR_ABSOLUTE = $(abspath $(BUILDDIR))
Craig Tiller841c8802015-09-10 13:06:37 -070093 endif
Craig Tiller61b910f2015-02-15 10:54:07 -080094
Craig Tiller841c8802015-09-10 13:06:37 -070095 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 Noblef8681182015-03-18 14:25:44 -070098
Craig Tiller841c8802015-09-10 13:06:37 -070099 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 Noblef8681182015-03-18 14:25:44 -0700116
117
Nicolas "Pixel" Noble42b4c282015-09-17 23:57:08 +0200118 BINDIR = $(BUILDDIR_ABSOLUTE)/bins
119 OBJDIR = $(BUILDDIR_ABSOLUTE)/objs
120 LIBDIR = $(BUILDDIR_ABSOLUTE)/libs
121 GENDIR = $(BUILDDIR_ABSOLUTE)/gens
Craig Tiller61b910f2015-02-15 10:54:07 -0800122
Craig Tiller841c8802015-09-10 13:06:37 -0700123 # Configurations
ctiller8cfebb92015-01-06 15:02:12 -0800124
Craig Tillera0f85172016-01-20 15:56:06 -0800125 % 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 Tilleraff3d502016-01-20 15:59:31 -0800130 % for tool, default in [('CC', 'CC'), ('CXX', 'CXX'), ('LD', 'CC'), ('LDXX', 'CXX')]:
Craig Tillera0f85172016-01-20 15:56:06 -0800131 ${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
138 % if args.get('timeout_multiplier', 1) != 1:
139 DEFINES_${name} += GRPC_TEST_SLOWDOWN_BUILD_FACTOR=${args.timeout_multiplier}
140 % endif
ctiller8cfebb92015-01-06 15:02:12 -0800141
Craig Tillera0f85172016-01-20 15:56:06 -0800142 % endfor
Craig Tiller699ba212015-01-13 17:02:20 -0800143
Nicolas Noble047b7272015-01-16 13:55:05 -0800144
Craig Tiller841c8802015-09-10 13:06:37 -0700145 # General settings.
146 # You may want to change these depending on your system.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800147
Craig Tiller841c8802015-09-10 13:06:37 -0700148 prefix ?= /usr/local
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800149
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100150 PROTOC ?= protoc
151 DTRACE ?= dtrace
Craig Tiller841c8802015-09-10 13:06:37 -0700152 CONFIG ?= opt
Nicolas "Pixel" Noblefba36bc2016-01-27 03:24:03 +0100153 # Doing X ?= Y is the same as:
154 # ifeq ($(origin X), undefined)
155 # X = Y
156 # endif
157 # but some variables, such as CC, CXX, LD or AR, have defaults.
158 # So instead of using ?= on them, we need to check their origin.
159 # See:
160 # https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html
161 # https://www.gnu.org/software/make/manual/html_node/Flavors.html#index-_003f_003d
162 # https://www.gnu.org/software/make/manual/html_node/Origin-Function.html
163 ifeq ($(origin CC), default)
164 CC = $(CC_$(CONFIG))
165 endif
166 ifeq ($(origin CXX), default)
167 CXX = $(CXX_$(CONFIG))
168 endif
169 ifeq ($(origin LD), default)
170 LD = $(LD_$(CONFIG))
171 endif
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100172 LDXX ?= $(LDXX_$(CONFIG))
Craig Tiller841c8802015-09-10 13:06:37 -0700173 ifeq ($(SYSTEM),Linux)
Nicolas "Pixel" Noble6e72dae2016-02-03 04:23:08 +0100174 ifeq ($(origin AR), default)
175 AR = ar rcs
176 endif
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100177 STRIP ?= strip --strip-unneeded
Craig Tiller841c8802015-09-10 13:06:37 -0700178 else
179 ifeq ($(SYSTEM),Darwin)
Nicolas "Pixel" Noble6e72dae2016-02-03 04:23:08 +0100180 ifeq ($(origin AR), default)
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100181 AR = libtool -no_warning_for_no_symbols -o
Nicolas "Pixel" Noble6e72dae2016-02-03 04:23:08 +0100182 endif
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100183 STRIP ?= strip -x
Craig Tiller841c8802015-09-10 13:06:37 -0700184 else
Mario Emmenlauer1643c042016-12-12 23:12:47 +0100185 ifeq ($(SYSTEM),MINGW32)
186 ifeq ($(origin AR), default)
187 AR = ar rcs
188 endif
189 STRIP ?= strip --strip-unneeded
190 else
Nicolas "Pixel" Noble6e72dae2016-02-03 04:23:08 +0100191 ifeq ($(origin AR), default)
192 AR = ar rcs
193 endif
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100194 STRIP ?= strip
Craig Tiller841c8802015-09-10 13:06:37 -0700195 endif
196 endif
Mario Emmenlauer1643c042016-12-12 23:12:47 +0100197 endif
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100198 INSTALL ?= install
199 RM ?= rm -f
200 PKG_CONFIG ?= pkg-config
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800201
Craig Tiller841c8802015-09-10 13:06:37 -0700202 ifndef VALID_CONFIG_$(CONFIG)
203 $(error Invalid CONFIG value '$(CONFIG)')
204 endif
yangg102e4fe2015-01-06 16:02:50 -0800205
Craig Tiller841c8802015-09-10 13:06:37 -0700206 ifeq ($(SYSTEM),Linux)
207 TMPOUT = /dev/null
208 else
209 TMPOUT = `mktemp /tmp/test-out-XXXXXX`
210 endif
Nicolas Noble047b7272015-01-16 13:55:05 -0800211
Craig Tiller841c8802015-09-10 13:06:37 -0700212 # Detect if we can use C++11
213 CXX11_CHECK_CMD = $(CXX) -std=c++11 -o $(TMPOUT) -c test/build/c++11.cc
214 HAS_CXX11 = $(shell $(CXX11_CHECK_CMD) 2> /dev/null && echo true || echo false)
Craig Tillercf133f42015-02-26 14:05:56 -0800215
Craig Tiller78222f72016-05-10 09:55:38 -0700216 %for warning in CHECK_WARNINGS:
217 ${warning_var('CHECK_%s_WORKS_CMD', warning)} = $(CC) -std=c99 -Werror -W${warning} -o $(TMPOUT) -c test/build/${warning}.c
218 ${warning_var('HAS_WORKING_%s', warning)} = $(shell $(${warning_var('CHECK_%s_WORKS_CMD', warning)}) 2> /dev/null && echo true || echo false)
219 ifeq ($(${warning_var('HAS_WORKING_%s', warning)}),true)
220 ${warning_var('W_%s', warning)}=-W${warning}
221 ${warning_var('NO_W_%s', warning)}=-W${neg_warning(warning)}
Craig Tiller804b8552016-02-23 16:50:24 -0800222 endif
Craig Tiller78222f72016-05-10 09:55:38 -0700223 %endfor
Craig Tiller16872b82016-01-25 10:55:20 -0800224
Craig Tiller841c8802015-09-10 13:06:37 -0700225 # The HOST compiler settings are used to compile the protoc plugins.
226 # In most cases, you won't have to change anything, but if you are
227 # cross-compiling, you can override these variables from GNU make's
228 # command line: make CC=cross-gcc HOST_CC=gcc
Nicolas Noble047b7272015-01-16 13:55:05 -0800229
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100230 HOST_CC ?= $(CC)
231 HOST_CXX ?= $(CXX)
232 HOST_LD ?= $(LD)
233 HOST_LDXX ?= $(LDXX)
nnoble72309c62014-12-12 11:42:26 -0800234
Craig Tiller78222f72016-05-10 09:55:38 -0700235 CFLAGS += -std=c99 -Wsign-conversion -Wconversion ${' '.join(warning_var('$(W_%s)', warning) for warning in PREFERRED_WARNINGS)}
Craig Tiller841c8802015-09-10 13:06:37 -0700236 ifeq ($(HAS_CXX11),true)
237 CXXFLAGS += -std=c++11
238 else
239 CXXFLAGS += -std=c++0x
240 endif
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +0100241 % for arg in ['CFLAGS', 'CXXFLAGS', 'CPPFLAGS', 'LDFLAGS', 'DEFINES']:
242 % if defaults.get('global', []).get(arg, None) is not None:
243 ${arg} += ${defaults.get('global').get(arg)}
244 % endif
245 % endfor
Nicolas Noblef8681182015-03-18 14:25:44 -0700246
Craig Tiller841c8802015-09-10 13:06:37 -0700247 CPPFLAGS += $(CPPFLAGS_$(CONFIG))
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800248 CFLAGS += $(CFLAGS_$(CONFIG))
249 CXXFLAGS += $(CXXFLAGS_$(CONFIG))
Craig Tiller841c8802015-09-10 13:06:37 -0700250 DEFINES += $(DEFINES_$(CONFIG)) INSTALL_PREFIX=\"$(prefix)\"
251 LDFLAGS += $(LDFLAGS_$(CONFIG))
Nicolas "Pixel" Noble482d7612015-07-16 23:43:30 +0200252
Craig Tiller841c8802015-09-10 13:06:37 -0700253 ifneq ($(SYSTEM),MINGW32)
254 PIC_CPPFLAGS = -fPIC
255 CPPFLAGS += -fPIC
256 LDFLAGS += -fPIC
257 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800258
Craig Tiller841c8802015-09-10 13:06:37 -0700259 INCLUDES = . include $(GENDIR)
260 LDFLAGS += -Llibs/$(CONFIG)
Nicolas "Pixel" Noble3adab742015-06-02 00:33:06 +0200261
Craig Tiller841c8802015-09-10 13:06:37 -0700262 ifeq ($(SYSTEM),Darwin)
263 ifneq ($(wildcard /usr/local/ssl/include),)
264 INCLUDES += /usr/local/ssl/include
265 endif
266 ifneq ($(wildcard /opt/local/include),)
267 INCLUDES += /opt/local/include
268 endif
269 ifneq ($(wildcard /usr/local/include),)
270 INCLUDES += /usr/local/include
271 endif
272 LIBS = m z
273 ifneq ($(wildcard /usr/local/ssl/lib),)
274 LDFLAGS += -L/usr/local/ssl/lib
275 endif
276 ifneq ($(wildcard /opt/local/lib),)
277 LDFLAGS += -L/opt/local/lib
278 endif
279 ifneq ($(wildcard /usr/local/lib),)
280 LDFLAGS += -L/usr/local/lib
281 endif
282 endif
Nicolas Noblef8681182015-03-18 14:25:44 -0700283
Craig Tiller841c8802015-09-10 13:06:37 -0700284 ifeq ($(SYSTEM),Linux)
Craig Tiller1b1e2382016-02-03 07:33:56 -0800285 LIBS = dl rt m pthread
Craig Tiller841c8802015-09-10 13:06:37 -0700286 LDFLAGS += -pthread
287 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800288
Craig Tiller841c8802015-09-10 13:06:37 -0700289 ifeq ($(SYSTEM),MINGW32)
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100290 LIBS = m pthread ws2_32
Craig Tiller841c8802015-09-10 13:06:37 -0700291 LDFLAGS += -pthread
292 endif
Nicolas Noblef8681182015-03-18 14:25:44 -0700293
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700294 #
295 # The steps for cross-compiling are as follows:
296 # First, clone and make install of grpc using the native compilers for the host.
297 # Also, install protoc (e.g., from a package like apt-get)
298 # Then clone a fresh grpc for the actual cross-compiled build
299 # Set the environment variable GRPC_CROSS_COMPILE to true
300 # Set CC, CXX, LD, LDXX, AR, and STRIP to the cross-compiling binaries
301 # Also set PROTOBUF_CONFIG_OPTS to indicate cross-compilation to protobuf (e.g.,
302 # PROTOBUF_CONFIG_OPTS="--host=arm-linux --with-protoc=/usr/local/bin/protoc" )
303 # Set HAS_PKG_CONFIG=false
304 # To build tests, go to third_party/gflags and follow its ccmake instructions
305 # Make sure that you enable building shared libraries and set your prefix to
306 # something useful like /usr/local/cross
307 # You will also need to set GRPC_CROSS_LDOPTS and GRPC_CROSS_AROPTS to hold
308 # additional required arguments for LD and AR (examples below)
309 # Then you can do a make from the cross-compiling fresh clone!
310 #
311 ifeq ($(GRPC_CROSS_COMPILE),true)
312 LDFLAGS += $(GRPC_CROSS_LDOPTS) # e.g. -L/usr/local/lib -L/usr/local/cross/lib
313 AROPTS = $(GRPC_CROSS_AROPTS) # e.g., rc --target=elf32-little
314 USE_BUILT_PROTOC = false
315 endif
316
Craig Tiller841c8802015-09-10 13:06:37 -0700317 GTEST_LIB = -Ithird_party/googletest/include -Ithird_party/googletest third_party/googletest/src/gtest-all.cc
318 GTEST_LIB += -lgflags
319 ifeq ($(V),1)
320 E = @:
321 Q =
322 else
323 E = @echo
324 Q = @
325 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800326
Craig Tiller38b99e92016-09-15 16:18:09 -0700327 CORE_VERSION = ${settings.core_version}
328 CPP_VERSION = ${settings.cpp_version}
329 CSHARP_VERSION = ${settings.csharp_version}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800330
Craig Tiller841c8802015-09-10 13:06:37 -0700331 CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
332 CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800333
Craig Tiller841c8802015-09-10 13:06:37 -0700334 LDFLAGS += $(ARCH_FLAGS)
335 LDLIBS += $(addprefix -l, $(LIBS))
336 LDLIBSXX += $(addprefix -l, $(LIBSXX))
nnoble72309c62014-12-12 11:42:26 -0800337
murgatroid99c36f6ea2016-10-03 09:24:09 -0700338
339 % for arg in ['CFLAGS', 'CXXFLAGS', 'CPPFLAGS', 'LDFLAGS', 'DEFINES', 'LDLIBS']:
340 ${arg} += $(EXTRA_${arg})
341 % endfor
342
Craig Tiller841c8802015-09-10 13:06:37 -0700343 HOST_CPPFLAGS = $(CPPFLAGS)
344 HOST_CFLAGS = $(CFLAGS)
345 HOST_CXXFLAGS = $(CXXFLAGS)
346 HOST_LDFLAGS = $(LDFLAGS)
347 HOST_LDLIBS = $(LDLIBS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800348
Craig Tiller841c8802015-09-10 13:06:37 -0700349 # These are automatically computed variables.
350 # There shouldn't be any need to change anything from now on.
nnoble69ac39f2014-12-12 15:43:38 -0800351
Craig Tiller841c8802015-09-10 13:06:37 -0700352 -include cache.mk
murgatroid9924e2f4a2015-06-29 11:12:01 -0700353
Craig Tiller841c8802015-09-10 13:06:37 -0700354 CACHE_MK =
murgatroid99aa521572015-07-10 14:49:12 -0700355
Craig Tiller841c8802015-09-10 13:06:37 -0700356 HAS_PKG_CONFIG ?= $(shell command -v $(PKG_CONFIG) >/dev/null 2>&1 && echo true || echo false)
murgatroid99aa521572015-07-10 14:49:12 -0700357
Craig Tiller841c8802015-09-10 13:06:37 -0700358 ifeq ($(HAS_PKG_CONFIG), true)
359 CACHE_MK += HAS_PKG_CONFIG = true,
360 endif
nnoble69ac39f2014-12-12 15:43:38 -0800361
Craig Tiller38b99e92016-09-15 16:18:09 -0700362 CORE_PC_TEMPLATE = prefix=$(prefix),\
Craig Tiller841c8802015-09-10 13:06:37 -0700363 exec_prefix=${'\$${prefix}'},\
364 includedir=${'\$${prefix}'}/include,\
365 libdir=${'\$${exec_prefix}'}/lib,\
366 ,\
367 Name: $(PC_NAME),\
368 Description: $(PC_DESCRIPTION),\
Craig Tiller38b99e92016-09-15 16:18:09 -0700369 Version: $(CORE_VERSION),\
370 Cflags: -I${'\$${includedir}'} $(PC_CFLAGS),\
371 Requires.private: $(PC_REQUIRES_PRIVATE),\
372 Libs: -L${'\$${libdir}'} $(PC_LIB),\
373 Libs.private: $(PC_LIBS_PRIVATE)
374
375 CPP_PC_TEMPLATE = prefix=$(prefix),\
376 exec_prefix=${'\$${prefix}'},\
377 includedir=${'\$${prefix}'}/include,\
378 libdir=${'\$${exec_prefix}'}/lib,\
379 ,\
380 Name: $(PC_NAME),\
381 Description: $(PC_DESCRIPTION),\
382 Version: $(CPP_VERSION),\
383 Cflags: -I${'\$${includedir}'} $(PC_CFLAGS),\
384 Requires.private: $(PC_REQUIRES_PRIVATE),\
385 Libs: -L${'\$${libdir}'} $(PC_LIB),\
386 Libs.private: $(PC_LIBS_PRIVATE)
387
388 CSHARP_PC_TEMPLATE = prefix=$(prefix),\
389 exec_prefix=${'\$${prefix}'},\
390 includedir=${'\$${prefix}'}/include,\
391 libdir=${'\$${exec_prefix}'}/lib,\
392 ,\
393 Name: $(PC_NAME),\
394 Description: $(PC_DESCRIPTION),\
395 Version: $(CSHARP_VERSION),\
Craig Tiller841c8802015-09-10 13:06:37 -0700396 Cflags: -I${'\$${includedir}'} $(PC_CFLAGS),\
397 Requires.private: $(PC_REQUIRES_PRIVATE),\
398 Libs: -L${'\$${libdir}'} $(PC_LIB),\
399 Libs.private: $(PC_LIBS_PRIVATE)
murgatroid998faab232015-06-30 17:24:21 -0700400
Craig Tiller841c8802015-09-10 13:06:37 -0700401 ifeq ($(SYSTEM),MINGW32)
Mario Emmenlauer121d2892016-12-12 23:49:27 +0100402 EXECUTABLE_SUFFIX = .exe
Craig Tiller38b99e92016-09-15 16:18:09 -0700403 SHARED_EXT_CORE = dll
404 SHARED_EXT_CPP = dll
405 SHARED_EXT_CSHARP = dll
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100406 SHARED_PREFIX =
Craig Tiller27f70842016-09-15 16:21:54 -0700407 SHARED_VERSION_CORE = -${settings.core_version.major}
408 SHARED_VERSION_CPP = -${settings.cpp_version.major}
409 SHARED_VERSION_CSHARP = -${settings.csharp_version.major}
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100410 else ifeq ($(SYSTEM),Darwin)
Mario Emmenlauer121d2892016-12-12 23:49:27 +0100411 EXECUTABLE_SUFFIX =
Craig Tiller38b99e92016-09-15 16:18:09 -0700412 SHARED_EXT_CORE = dylib
413 SHARED_EXT_CPP = dylib
414 SHARED_EXT_CSHARP = dylib
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100415 SHARED_PREFIX = lib
Craig Tiller27f70842016-09-15 16:21:54 -0700416 SHARED_VERSION_CORE =
417 SHARED_VERSION_CPP =
418 SHARED_VERSION_CSHARP =
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100419 else
Mario Emmenlauer121d2892016-12-12 23:49:27 +0100420 EXECUTABLE_SUFFIX =
Craig Tiller38b99e92016-09-15 16:18:09 -0700421 SHARED_EXT_CORE = so.$(CORE_VERSION)
422 SHARED_EXT_CPP = so.$(CPP_VERSION)
423 SHARED_EXT_CSHARP = so.$(CSHARP_VERSION)
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100424 SHARED_PREFIX = lib
Craig Tiller27f70842016-09-15 16:21:54 -0700425 SHARED_VERSION_CORE =
426 SHARED_VERSION_CPP =
427 SHARED_VERSION_CSHARP =
Craig Tiller841c8802015-09-10 13:06:37 -0700428 endif
nnoble5b7f32a2014-12-22 08:12:44 -0800429
Craig Tiller841c8802015-09-10 13:06:37 -0700430 ifeq ($(wildcard .git),)
431 IS_GIT_FOLDER = false
432 else
433 IS_GIT_FOLDER = true
434 endif
nnoble69ac39f2014-12-12 15:43:38 -0800435
Craig Tiller841c8802015-09-10 13:06:37 -0700436 ifeq ($(HAS_PKG_CONFIG),true)
437 OPENSSL_ALPN_CHECK_CMD = $(PKG_CONFIG) --atleast-version=1.0.2 openssl
438 OPENSSL_NPN_CHECK_CMD = $(PKG_CONFIG) --atleast-version=1.0.1 openssl
439 ZLIB_CHECK_CMD = $(PKG_CONFIG) --exists zlib
Yuchen Zengd4df55e2016-08-15 16:41:18 -0700440 PROTOBUF_CHECK_CMD = $(PKG_CONFIG) --atleast-version=3.0.0 protobuf
Craig Tiller841c8802015-09-10 13:06:37 -0700441 else # HAS_PKG_CONFIG
murgatroid9924e2f4a2015-06-29 11:12:01 -0700442
Craig Tiller841c8802015-09-10 13:06:37 -0700443 ifeq ($(SYSTEM),MINGW32)
444 OPENSSL_LIBS = ssl32 eay32
445 else
446 OPENSSL_LIBS = ssl crypto
447 endif
Nicolas Noblef8681182015-03-18 14:25:44 -0700448
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +0100449 OPENSSL_ALPN_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/openssl-alpn.c $(addprefix -l, $(OPENSSL_LIBS)) $(LDFLAGS)
450 OPENSSL_NPN_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/openssl-npn.c $(addprefix -l, $(OPENSSL_LIBS)) $(LDFLAGS)
Craig Tillerb79c1e12016-02-23 10:00:58 -0800451 BORINGSSL_COMPILE_CHECK_CMD = $(CC) $(CPPFLAGS) ${defaults.boringssl.CPPFLAGS} $(CFLAGS) ${defaults.boringssl.CFLAGS} -o $(TMPOUT) test/build/boringssl.c $(LDFLAGS)
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +0100452 ZLIB_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/zlib.c -lz $(LDFLAGS)
453 PROTOBUF_CHECK_CMD = $(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $(TMPOUT) test/build/protobuf.cc -lprotobuf $(LDFLAGS)
Craig Tiller297fafa2015-01-15 15:46:39 -0800454
Craig Tiller841c8802015-09-10 13:06:37 -0700455 endif # HAS_PKG_CONFIG
murgatroid9924e2f4a2015-06-29 11:12:01 -0700456
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +0100457 PERFTOOLS_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/perftools.c -lprofiler $(LDFLAGS)
murgatroid996d9e4012015-07-08 10:22:45 -0700458
Craig Tiller841c8802015-09-10 13:06:37 -0700459 PROTOC_CHECK_CMD = which protoc > /dev/null
460 PROTOC_CHECK_VERSION_CMD = protoc --version | grep -q libprotoc.3
461 DTRACE_CHECK_CMD = which dtrace > /dev/null
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +0100462 SYSTEMTAP_HEADERS_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/systemtap.c $(LDFLAGS)
murgatroid9924e2f4a2015-06-29 11:12:01 -0700463
Craig Tiller841c8802015-09-10 13:06:37 -0700464 ifndef REQUIRE_CUSTOM_LIBRARIES_$(CONFIG)
465 HAS_SYSTEM_PERFTOOLS ?= $(shell $(PERFTOOLS_CHECK_CMD) 2> /dev/null && echo true || echo false)
466 ifeq ($(HAS_SYSTEM_PERFTOOLS),true)
467 DEFINES += GRPC_HAVE_PERFTOOLS
468 LIBS += profiler
469 CACHE_MK += HAS_SYSTEM_PERFTOOLS = true,
470 endif
471 endif
nnoble69ac39f2014-12-12 15:43:38 -0800472
Craig Tiller841c8802015-09-10 13:06:37 -0700473 HAS_SYSTEM_PROTOBUF_VERIFY = $(shell $(PROTOBUF_CHECK_CMD) 2> /dev/null && echo true || echo false)
474 ifndef REQUIRE_CUSTOM_LIBRARIES_$(CONFIG)
475 HAS_SYSTEM_OPENSSL_ALPN ?= $(shell $(OPENSSL_ALPN_CHECK_CMD) 2> /dev/null && echo true || echo false)
476 ifeq ($(HAS_SYSTEM_OPENSSL_ALPN),true)
477 HAS_SYSTEM_OPENSSL_NPN = true
478 CACHE_MK += HAS_SYSTEM_OPENSSL_ALPN = true,
479 else
480 HAS_SYSTEM_OPENSSL_NPN ?= $(shell $(OPENSSL_NPN_CHECK_CMD) 2> /dev/null && echo true || echo false)
481 endif
482 ifeq ($(HAS_SYSTEM_OPENSSL_NPN),true)
483 CACHE_MK += HAS_SYSTEM_OPENSSL_NPN = true,
484 endif
485 HAS_SYSTEM_ZLIB ?= $(shell $(ZLIB_CHECK_CMD) 2> /dev/null && echo true || echo false)
486 ifeq ($(HAS_SYSTEM_ZLIB),true)
487 CACHE_MK += HAS_SYSTEM_ZLIB = true,
488 endif
489 HAS_SYSTEM_PROTOBUF ?= $(HAS_SYSTEM_PROTOBUF_VERIFY)
490 ifeq ($(HAS_SYSTEM_PROTOBUF),true)
491 CACHE_MK += HAS_SYSTEM_PROTOBUF = true,
492 endif
493 else
494 # override system libraries if the config requires a custom compiled library
495 HAS_SYSTEM_OPENSSL_ALPN = false
496 HAS_SYSTEM_OPENSSL_NPN = false
497 HAS_SYSTEM_ZLIB = false
498 HAS_SYSTEM_PROTOBUF = false
499 endif
nnoble69ac39f2014-12-12 15:43:38 -0800500
Craig Tiller841c8802015-09-10 13:06:37 -0700501 HAS_PROTOC ?= $(shell $(PROTOC_CHECK_CMD) 2> /dev/null && echo true || echo false)
502 ifeq ($(HAS_PROTOC),true)
503 CACHE_MK += HAS_PROTOC = true,
504 HAS_VALID_PROTOC ?= $(shell $(PROTOC_CHECK_VERSION_CMD) 2> /dev/null && echo true || echo false)
505 ifeq ($(HAS_VALID_PROTOC),true)
506 CACHE_MK += HAS_VALID_PROTOC = true,
507 endif
508 else
509 HAS_VALID_PROTOC = false
510 endif
Nicolas Noble53830622015-02-12 16:56:38 -0800511
Craig Tiller841c8802015-09-10 13:06:37 -0700512 # Check for Systemtap (https://sourceware.org/systemtap/), first by making sure <sys/sdt.h> is present
513 # in the system and secondly by checking for the "dtrace" binary (on Linux, this is part of the Systemtap
514 # distribution. It's part of the base system on BSD/Solaris machines).
515 ifndef HAS_SYSTEMTAP
516 HAS_SYSTEMTAP_HEADERS = $(shell $(SYSTEMTAP_HEADERS_CHECK_CMD) 2> /dev/null && echo true || echo false)
517 HAS_DTRACE = $(shell $(DTRACE_CHECK_CMD) 2> /dev/null && echo true || echo false)
518 HAS_SYSTEMTAP = false
519 ifeq ($(HAS_SYSTEMTAP_HEADERS),true)
520 ifeq ($(HAS_DTRACE),true)
521 HAS_SYSTEMTAP = true
522 endif
523 endif
524 endif
David Garcia Quintas611b7362015-04-27 15:49:31 -0700525
Craig Tiller841c8802015-09-10 13:06:37 -0700526 ifeq ($(HAS_SYSTEMTAP),true)
527 CACHE_MK += HAS_SYSTEMTAP = true,
528 endif
nnoble69ac39f2014-12-12 15:43:38 -0800529
Craig Tiller841c8802015-09-10 13:06:37 -0700530 # Note that for testing purposes, one can do:
531 # make HAS_EMBEDDED_OPENSSL_ALPN=false
532 # to emulate the fact we do not have OpenSSL in the third_party folder.
Craig Tillerb79c1e12016-02-23 10:00:58 -0800533 ifneq ($(wildcard third_party/${openssl_fallback.extraction_dir}/libssl.a),)
534 HAS_EMBEDDED_OPENSSL_ALPN = third_party/${openssl_fallback.extraction_dir}
535 else ifeq ($(wildcard third_party/boringssl/include/openssl/ssl.h),)
Craig Tiller841c8802015-09-10 13:06:37 -0700536 HAS_EMBEDDED_OPENSSL_ALPN = false
537 else
Craig Tillerb79c1e12016-02-23 10:00:58 -0800538 CAN_COMPILE_EMBEDDED_OPENSSL ?= $(shell $(BORINGSSL_COMPILE_CHECK_CMD) 2> /dev/null && echo true || echo false)
539 HAS_EMBEDDED_OPENSSL_ALPN = $(CAN_COMPILE_EMBEDDED_OPENSSL)
Craig Tiller841c8802015-09-10 13:06:37 -0700540 endif
nnoble69ac39f2014-12-12 15:43:38 -0800541
Craig Tiller841c8802015-09-10 13:06:37 -0700542 ifeq ($(wildcard third_party/zlib/zlib.h),)
543 HAS_EMBEDDED_ZLIB = false
544 else
545 HAS_EMBEDDED_ZLIB = true
546 endif
nnoble69ac39f2014-12-12 15:43:38 -0800547
Craig Tiller841c8802015-09-10 13:06:37 -0700548 ifeq ($(wildcard third_party/protobuf/src/google/protobuf/descriptor.pb.h),)
549 HAS_EMBEDDED_PROTOBUF = false
550 ifneq ($(HAS_VALID_PROTOC),true)
551 NO_PROTOC = true
552 endif
553 else
554 HAS_EMBEDDED_PROTOBUF = true
555 endif
Nicolas Noble53830622015-02-12 16:56:38 -0800556
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100557 PC_REQUIRES_GRPC =
Craig Tiller841c8802015-09-10 13:06:37 -0700558 PC_LIBS_GRPC =
murgatroid998faab232015-06-30 17:24:21 -0700559
Craig Tiller841c8802015-09-10 13:06:37 -0700560 ifeq ($(HAS_SYSTEM_ZLIB),false)
Craig Tiller3dca23a2016-01-21 11:44:55 -0800561 ifeq ($(HAS_EMBEDDED_ZLIB), true)
562 EMBED_ZLIB ?= true
Craig Tiller841c8802015-09-10 13:06:37 -0700563 else
564 DEP_MISSING += zlib
Craig Tiller3dca23a2016-01-21 11:44:55 -0800565 EMBED_ZLIB ?= broken
Craig Tiller841c8802015-09-10 13:06:37 -0700566 endif
567 else
Craig Tiller3dca23a2016-01-21 11:44:55 -0800568 EMBED_ZLIB ?= false
569 endif
570
571 ifeq ($(EMBED_ZLIB),true)
572 ZLIB_DEP = $(LIBDIR)/$(CONFIG)/libz.a
573 ZLIB_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libz.a
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +0100574 ZLIB_MERGE_OBJS = $(LIBZ_OBJS)
Craig Tiller3dca23a2016-01-21 11:44:55 -0800575 CPPFLAGS += -Ithird_party/zlib
576 LDFLAGS += -L$(LIBDIR)/$(CONFIG)/zlib
577 else
Craig Tiller841c8802015-09-10 13:06:37 -0700578 ifeq ($(HAS_PKG_CONFIG),true)
579 CPPFLAGS += $(shell $(PKG_CONFIG) --cflags zlib)
580 LDFLAGS += $(shell $(PKG_CONFIG) --libs-only-L zlib)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800581 LIBS += $(patsubst -l%,%,$(shell $(PKG_CONFIG) --libs-only-l zlib))
Craig Tiller841c8802015-09-10 13:06:37 -0700582 PC_REQUIRES_GRPC += zlib
583 else
584 PC_LIBS_GRPC += -lz
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800585 LIBS += z
Craig Tiller841c8802015-09-10 13:06:37 -0700586 endif
587 endif
nnoble69ac39f2014-12-12 15:43:38 -0800588
Craig Tiller841c8802015-09-10 13:06:37 -0700589 OPENSSL_PKG_CONFIG = false
murgatroid99da7a9942015-06-29 14:57:37 -0700590
Craig Tiller841c8802015-09-10 13:06:37 -0700591 PC_REQUIRES_SECURE =
592 PC_LIBS_SECURE =
murgatroid998faab232015-06-30 17:24:21 -0700593
Craig Tiller841c8802015-09-10 13:06:37 -0700594 ifeq ($(HAS_SYSTEM_OPENSSL_ALPN),true)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800595 EMBED_OPENSSL ?= false
596 NO_SECURE ?= false
597 else # HAS_SYSTEM_OPENSSL_ALPN=false
Craig Tillerb79c1e12016-02-23 10:00:58 -0800598 ifneq ($(HAS_EMBEDDED_OPENSSL_ALPN),false)
599 EMBED_OPENSSL ?= $(HAS_EMBEDDED_OPENSSL_ALPN)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800600 NO_SECURE ?= false
601 else # HAS_EMBEDDED_OPENSSL_ALPN=false
602 ifeq ($(HAS_SYSTEM_OPENSSL_NPN),true)
603 EMBED_OPENSSL ?= false
604 NO_SECURE ?= false
605 else
606 NO_SECURE ?= true
607 endif # HAS_SYSTEM_OPENSSL_NPN=true
608 endif # HAS_EMBEDDED_OPENSSL_ALPN
609 endif # HAS_SYSTEM_OPENSSL_ALPN
610
611 OPENSSL_DEP :=
612 OPENSSL_MERGE_LIBS :=
613 ifeq ($(NO_SECURE),false)
614 ifeq ($(EMBED_OPENSSL),true)
615 OPENSSL_DEP += $(LIBDIR)/$(CONFIG)/libboringssl.a
616 OPENSSL_MERGE_LIBS += $(LIBDIR)/$(CONFIG)/libboringssl.a
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +0100617 OPENSSL_MERGE_OBJS += $(LIBBORINGSSL_OBJS)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800618 # need to prefix these to ensure overriding system libraries
619 CPPFLAGS := -Ithird_party/boringssl/include $(CPPFLAGS)
Craig Tillerb79c1e12016-02-23 10:00:58 -0800620 else ifneq ($(EMBED_OPENSSL),false)
621 OPENSSL_DEP += $(EMBED_OPENSSL)/libssl.a $(EMBED_OPENSSL)/libcrypto.a
622 OPENSSL_MERGE_LIBS += $(EMBED_OPENSSL)/libssl.a $(EMBED_OPENSSL)/libcrypto.a
623 OPENSSL_MERGE_OBJS += $(wildcard $(EMBED_OPENSSL)/grpc_obj/*.o)
624 # need to prefix these to ensure overriding system libraries
625 CPPFLAGS := -I$(EMBED_OPENSSL)/include $(CPPFLAGS)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800626 else # EMBED_OPENSSL=false
Craig Tiller841c8802015-09-10 13:06:37 -0700627 ifeq ($(HAS_PKG_CONFIG),true)
628 OPENSSL_PKG_CONFIG = true
629 PC_REQUIRES_SECURE = openssl
630 CPPFLAGS := $(shell $(PKG_CONFIG) --cflags openssl) $(CPPFLAGS)
631 LDFLAGS_OPENSSL_PKG_CONFIG = $(shell $(PKG_CONFIG) --libs-only-L openssl)
632 ifeq ($(SYSTEM),Linux)
633 ifneq ($(LDFLAGS_OPENSSL_PKG_CONFIG),)
634 LDFLAGS_OPENSSL_PKG_CONFIG += $(shell $(PKG_CONFIG) --libs-only-L openssl | sed s/L/Wl,-rpath,/)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800635 endif # LDFLAGS_OPENSSL_PKG_CONFIG=''
636 endif # System=Linux
Craig Tiller841c8802015-09-10 13:06:37 -0700637 LDFLAGS := $(LDFLAGS_OPENSSL_PKG_CONFIG) $(LDFLAGS)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800638 else # HAS_PKG_CONFIG=false
Craig Tiller841c8802015-09-10 13:06:37 -0700639 LIBS_SECURE = $(OPENSSL_LIBS)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800640 endif # HAS_PKG_CONFIG
641 ifeq ($(HAS_SYSTEM_OPENSSL_NPN),true)
642 CPPFLAGS += -DTSI_OPENSSL_ALPN_SUPPORT=0
643 LIBS_SECURE = $(OPENSSL_LIBS)
644 endif # HAS_SYSTEM_OPENSSL_NPN
Craig Tiller841c8802015-09-10 13:06:37 -0700645 PC_LIBS_SECURE = $(addprefix -l, $(LIBS_SECURE))
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800646 endif # EMBED_OPENSSL
647 endif # NO_SECURE
nnoble69ac39f2014-12-12 15:43:38 -0800648
Craig Tiller841c8802015-09-10 13:06:37 -0700649 ifeq ($(OPENSSL_PKG_CONFIG),true)
650 LDLIBS_SECURE += $(shell $(PKG_CONFIG) --libs-only-l openssl)
651 else
652 LDLIBS_SECURE += $(addprefix -l, $(LIBS_SECURE))
653 endif
nnoble5b7f32a2014-12-22 08:12:44 -0800654
Craig Tiller841c8802015-09-10 13:06:37 -0700655 # grpc .pc file
656 PC_NAME = gRPC
Craig Tillerda179ce2016-02-09 12:01:53 -0800657 PC_DESCRIPTION = high performance general RPC framework
658 PC_CFLAGS =
659 PC_REQUIRES_PRIVATE = $(PC_REQUIRES_GRPC) $(PC_REQUIRES_SECURE)
Craig Tiller841c8802015-09-10 13:06:37 -0700660 PC_LIBS_PRIVATE = $(PC_LIBS_GRPC) $(PC_LIBS_SECURE)
661 PC_LIB = -lgrpc
Craig Tiller38b99e92016-09-15 16:18:09 -0700662 GRPC_PC_FILE := $(CORE_PC_TEMPLATE)
murgatroid998faab232015-06-30 17:24:21 -0700663
Craig Tiller4a67be42016-02-09 12:40:32 -0800664 # grpc_unsecure .pc file
Craig Tiller841c8802015-09-10 13:06:37 -0700665 PC_NAME = gRPC unsecure
Craig Tillerda179ce2016-02-09 12:01:53 -0800666 PC_DESCRIPTION = high performance general RPC framework without SSL
667 PC_CFLAGS =
668 PC_REQUIRES_PRIVATE = $(PC_REQUIRES_GRPC)
Craig Tiller841c8802015-09-10 13:06:37 -0700669 PC_LIBS_PRIVATE = $(PC_LIBS_GRPC)
670 PC_LIB = -lgrpc
Craig Tiller38b99e92016-09-15 16:18:09 -0700671 GRPC_UNSECURE_PC_FILE := $(CORE_PC_TEMPLATE)
murgatroid998faab232015-06-30 17:24:21 -0700672
Craig Tiller841c8802015-09-10 13:06:37 -0700673 PROTOBUF_PKG_CONFIG = false
murgatroid99da7a9942015-06-29 14:57:37 -0700674
Craig Tiller841c8802015-09-10 13:06:37 -0700675 PC_REQUIRES_GRPCXX =
676 PC_LIBS_GRPCXX =
murgatroid998faab232015-06-30 17:24:21 -0700677
Craig Tiller841c8802015-09-10 13:06:37 -0700678 CPPFLAGS := -Ithird_party/googletest/include $(CPPFLAGS)
Craig Tiller16f6dac2015-08-24 17:00:04 -0700679
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700680 PROTOC_PLUGINS_ALL =\
681 % for tgt in targets:
682 % if tgt.build == 'protoc':
683 $(BINDIR)/$(CONFIG)/${tgt.name}\
684 % endif
685 % endfor
686
687 PROTOC_PLUGINS_DIR = $(BINDIR)/$(CONFIG)
688
Craig Tiller841c8802015-09-10 13:06:37 -0700689 ifeq ($(HAS_SYSTEM_PROTOBUF),true)
690 ifeq ($(HAS_PKG_CONFIG),true)
691 PROTOBUF_PKG_CONFIG = true
692 PC_REQUIRES_GRPCXX = protobuf
693 CPPFLAGS := $(shell $(PKG_CONFIG) --cflags protobuf) $(CPPFLAGS)
694 LDFLAGS_PROTOBUF_PKG_CONFIG = $(shell $(PKG_CONFIG) --libs-only-L protobuf)
695 ifeq ($(SYSTEM),Linux)
696 ifneq ($(LDFLAGS_PROTOBUF_PKG_CONFIG),)
697 LDFLAGS_PROTOBUF_PKG_CONFIG += $(shell $(PKG_CONFIG) --libs-only-L protobuf | sed s/L/Wl,-rpath,/)
698 endif
699 endif
700 else
701 PC_LIBS_GRPCXX = -lprotobuf
702 endif
Nicolas "Pixel" Noblef7fbdd42016-07-25 20:31:22 +0200703 PROTOC_PLUGINS = $(PROTOC_PLUGINS_ALL)
Craig Tiller841c8802015-09-10 13:06:37 -0700704 else
705 ifeq ($(HAS_EMBEDDED_PROTOBUF),true)
706 PROTOBUF_DEP = $(LIBDIR)/$(CONFIG)/protobuf/libprotobuf.a
707 CPPFLAGS := -Ithird_party/protobuf/src $(CPPFLAGS)
708 LDFLAGS := -L$(LIBDIR)/$(CONFIG)/protobuf $(LDFLAGS)
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700709 ifneq ($(USE_BUILT_PROTOC),false)
Craig Tiller841c8802015-09-10 13:06:37 -0700710 PROTOC = $(BINDIR)/$(CONFIG)/protobuf/protoc
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700711 PROTOC_PLUGINS = $(PROTOC_PLUGINS_ALL)
712 else
713 PROTOC_PLUGINS =
714 PROTOC_PLUGINS_DIR = $(prefix)/bin
715 endif
Craig Tiller841c8802015-09-10 13:06:37 -0700716 else
717 NO_PROTOBUF = true
718 endif
719 endif
Nicolas Noble53830622015-02-12 16:56:38 -0800720
Craig Tiller841c8802015-09-10 13:06:37 -0700721 LIBS_PROTOBUF = protobuf
722 LIBS_PROTOC = protoc protobuf
Nicolas Noble53830622015-02-12 16:56:38 -0800723
Craig Tiller841c8802015-09-10 13:06:37 -0700724 HOST_LDLIBS_PROTOC += $(addprefix -l, $(LIBS_PROTOC))
Nicolas Noble53830622015-02-12 16:56:38 -0800725
Craig Tiller841c8802015-09-10 13:06:37 -0700726 ifeq ($(PROTOBUF_PKG_CONFIG),true)
727 LDLIBS_PROTOBUF += $(shell $(PKG_CONFIG) --libs-only-l protobuf)
728 else
729 LDLIBS_PROTOBUF += $(addprefix -l, $(LIBS_PROTOBUF))
730 endif
murgatroid9924e2f4a2015-06-29 11:12:01 -0700731
Craig Tiller841c8802015-09-10 13:06:37 -0700732 # grpc++ .pc file
733 PC_NAME = gRPC++
734 PC_DESCRIPTION = C++ wrapper for gRPC
735 PC_CFLAGS =
736 PC_REQUIRES_PRIVATE = grpc $(PC_REQUIRES_GRPCXX)
737 PC_LIBS_PRIVATE = $(PC_LIBS_GRPCXX)
738 PC_LIB = -lgrpc++
Craig Tiller38b99e92016-09-15 16:18:09 -0700739 GRPCXX_PC_FILE := $(CPP_PC_TEMPLATE)
murgatroid998faab232015-06-30 17:24:21 -0700740
Craig Tiller841c8802015-09-10 13:06:37 -0700741 # grpc++_unsecure .pc file
742 PC_NAME = gRPC++ unsecure
743 PC_DESCRIPTION = C++ wrapper for gRPC without SSL
744 PC_CFLAGS =
745 PC_REQUIRES_PRIVATE = grpc_unsecure $(PC_REQUIRES_GRPCXX)
746 PC_LIBS_PRIVATE = $(PC_LIBS_GRPCXX)
747 PC_LIB = -lgrpc++
Craig Tiller38b99e92016-09-15 16:18:09 -0700748 GRPCXX_UNSECURE_PC_FILE := $(CPP_PC_TEMPLATE)
murgatroid998faab232015-06-30 17:24:21 -0700749
Craig Tiller841c8802015-09-10 13:06:37 -0700750 ifeq ($(MAKECMDGOALS),clean)
751 NO_DEPS = true
752 endif
nnoble69ac39f2014-12-12 15:43:38 -0800753
Craig Tiller841c8802015-09-10 13:06:37 -0700754 .SECONDARY = %.pb.h %.pb.cc
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800755
Craig Tiller841c8802015-09-10 13:06:37 -0700756 ifeq ($(DEP_MISSING),)
757 all: static shared plugins\
758 % for tgt in targets:
759 % if tgt.build == 'all':
760 $(BINDIR)/$(CONFIG)/${tgt.name}\
761 % endif
762 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800763
Craig Tiller841c8802015-09-10 13:06:37 -0700764 dep_error:
765 @echo "You shouldn't see this message - all of your dependencies are correct."
766 else
767 all: dep_error git_update stop
nnoble69ac39f2014-12-12 15:43:38 -0800768
Craig Tiller841c8802015-09-10 13:06:37 -0700769 dep_error:
770 @echo
771 @echo "DEPENDENCY ERROR"
772 @echo
773 @echo "You are missing system dependencies that are essential to build grpc,"
774 @echo "and the third_party directory doesn't have them:"
775 @echo
776 @echo " $(DEP_MISSING)"
777 @echo
778 @echo "Installing the development packages for your system will solve"
779 @echo "this issue. Please consult INSTALL to get more information."
780 @echo
781 @echo "If you need information about why these tests failed, run:"
782 @echo
783 @echo " make run_dep_checks"
784 @echo
785 endif
nnoble69ac39f2014-12-12 15:43:38 -0800786
Craig Tiller841c8802015-09-10 13:06:37 -0700787 git_update:
788 ifeq ($(IS_GIT_FOLDER),true)
789 @echo "Additionally, since you are in a git clone, you can download the"
790 @echo "missing dependencies in third_party by running the following command:"
791 @echo
792 @echo " git submodule update --init"
793 @echo
794 endif
nnoble69ac39f2014-12-12 15:43:38 -0800795
Craig Tiller841c8802015-09-10 13:06:37 -0700796 openssl_dep_error: openssl_dep_message git_update stop
nnoble69ac39f2014-12-12 15:43:38 -0800797
Craig Tiller841c8802015-09-10 13:06:37 -0700798 protobuf_dep_error: protobuf_dep_message git_update stop
Nicolas Noble53830622015-02-12 16:56:38 -0800799
Craig Tiller841c8802015-09-10 13:06:37 -0700800 protoc_dep_error: protoc_dep_message git_update stop
Nicolas Noble53830622015-02-12 16:56:38 -0800801
Craig Tiller841c8802015-09-10 13:06:37 -0700802 openssl_dep_message:
803 @echo
804 @echo "DEPENDENCY ERROR"
805 @echo
Craig Tillerb79c1e12016-02-23 10:00:58 -0800806 @echo "The target you are trying to run requires an OpenSSL implementation."
807 @echo "Your system doesn't have one, and either the third_party directory"
808 @echo "doesn't have it, or your compiler can't build BoringSSL."
Craig Tiller841c8802015-09-10 13:06:37 -0700809 @echo
810 @echo "Please consult INSTALL to get more information."
811 @echo
812 @echo "If you need information about why these tests failed, run:"
813 @echo
814 @echo " make run_dep_checks"
815 @echo
nnoble69ac39f2014-12-12 15:43:38 -0800816
Craig Tiller841c8802015-09-10 13:06:37 -0700817 protobuf_dep_message:
818 @echo
819 @echo "DEPENDENCY ERROR"
820 @echo
821 @echo "The target you are trying to run requires protobuf 3.0.0+"
822 @echo "Your system doesn't have it, and neither does the third_party directory."
823 @echo
824 @echo "Please consult INSTALL to get more information."
825 @echo
826 @echo "If you need information about why these tests failed, run:"
827 @echo
828 @echo " make run_dep_checks"
829 @echo
Nicolas Noble53830622015-02-12 16:56:38 -0800830
Craig Tiller841c8802015-09-10 13:06:37 -0700831 protoc_dep_message:
832 @echo
833 @echo "DEPENDENCY ERROR"
834 @echo
835 @echo "The target you are trying to run requires protobuf-compiler 3.0.0+"
836 @echo "Your system doesn't have it, and neither does the third_party directory."
837 @echo
838 @echo "Please consult INSTALL to get more information."
839 @echo
840 @echo "If you need information about why these tests failed, run:"
841 @echo
842 @echo " make run_dep_checks"
843 @echo
Nicolas Noble53830622015-02-12 16:56:38 -0800844
Craig Tiller841c8802015-09-10 13:06:37 -0700845 systemtap_dep_error:
846 @echo
847 @echo "DEPENDENCY ERROR"
848 @echo
849 @echo "Under the '$(CONFIG)' configutation, the target you are trying "
850 @echo "to build requires systemtap 2.7+ (on Linux) or dtrace (on other "
851 @echo "platforms such as Solaris and *BSD). "
852 @echo
853 @echo "Please consult INSTALL to get more information."
854 @echo
David Garcia Quintas8954e902015-04-29 09:46:33 -0700855
Craig Tiller841c8802015-09-10 13:06:37 -0700856 stop:
857 @false
nnoble69ac39f2014-12-12 15:43:38 -0800858
Craig Tiller841c8802015-09-10 13:06:37 -0700859 % for tgt in targets:
860 ${tgt.name}: $(BINDIR)/$(CONFIG)/${tgt.name}
861 % endfor
ctiller09cb6d52014-12-19 17:38:22 -0800862
Craig Tiller841c8802015-09-10 13:06:37 -0700863 run_dep_checks:
864 $(OPENSSL_ALPN_CHECK_CMD) || true
865 $(OPENSSL_NPN_CHECK_CMD) || true
866 $(ZLIB_CHECK_CMD) || true
867 $(PERFTOOLS_CHECK_CMD) || true
868 $(PROTOBUF_CHECK_CMD) || true
869 $(PROTOC_CHECK_VERSION_CMD) || true
nnoble69ac39f2014-12-12 15:43:38 -0800870
Craig Tiller841c8802015-09-10 13:06:37 -0700871 third_party/protobuf/configure:
872 $(E) "[AUTOGEN] Preparing protobuf"
873 $(Q)(cd third_party/protobuf ; autoreconf -f -i -Wall,no-obsolete)
Nicolas Noble53830622015-02-12 16:56:38 -0800874
Craig Tiller841c8802015-09-10 13:06:37 -0700875 $(LIBDIR)/$(CONFIG)/protobuf/libprotobuf.a: third_party/protobuf/configure
876 $(E) "[MAKE] Building protobuf"
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700877 $(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 Tiller841c8802015-09-10 13:06:37 -0700878 $(Q)$(MAKE) -C third_party/protobuf clean
879 $(Q)$(MAKE) -C third_party/protobuf
880 $(Q)mkdir -p $(LIBDIR)/$(CONFIG)/protobuf
881 $(Q)mkdir -p $(BINDIR)/$(CONFIG)/protobuf
882 $(Q)cp third_party/protobuf/src/.libs/libprotoc.a $(LIBDIR)/$(CONFIG)/protobuf
883 $(Q)cp third_party/protobuf/src/.libs/libprotobuf.a $(LIBDIR)/$(CONFIG)/protobuf
884 $(Q)cp third_party/protobuf/src/protoc $(BINDIR)/$(CONFIG)/protobuf
Nicolas Noble53830622015-02-12 16:56:38 -0800885
Craig Tiller841c8802015-09-10 13:06:37 -0700886 static: static_c static_cxx
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800887
Craig Tillereda85c62016-07-01 12:45:19 -0700888 static_c: pc_c pc_c_unsecure cache.mk \
Craig Tiller841c8802015-09-10 13:06:37 -0700889 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100890 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700891 % if lib.build == 'all' and lib.language == 'c' and not lib.get('external_deps', None):
892 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
893 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100894 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700895 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800896
897
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100898 static_cxx: pc_cxx pc_cxx_unsecure cache.mk \
Craig Tiller841c8802015-09-10 13:06:37 -0700899 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100900 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700901 % if lib.build == 'all' and lib.language == 'c++':
902 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
903 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100904 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700905 % endfor
nnoble29e1d292014-12-01 10:27:40 -0800906
907
Craig Tiller841c8802015-09-10 13:06:37 -0700908 shared: shared_c shared_cxx
nnoble29e1d292014-12-01 10:27:40 -0800909
Craig Tillereda85c62016-07-01 12:45:19 -0700910 shared_c: pc_c pc_c_unsecure cache.mk\
Craig Tiller841c8802015-09-10 13:06:37 -0700911 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100912 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700913 % if lib.build == 'all' and lib.language == 'c' and not lib.get('external_deps', None):
Craig Tiller27f70842016-09-15 16:21:54 -0700914 $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)\
Craig Tiller841c8802015-09-10 13:06:37 -0700915 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100916 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700917 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800918
Craig Tiller841c8802015-09-10 13:06:37 -0700919 shared_cxx: pc_cxx pc_cxx_unsecure cache.mk\
920 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100921 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700922 % if lib.build == 'all' and lib.language == 'c++':
Craig Tiller27f70842016-09-15 16:21:54 -0700923 $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)\
Craig Tiller841c8802015-09-10 13:06:37 -0700924 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100925 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700926 % endfor
nnoble29e1d292014-12-01 10:27:40 -0800927
928
Craig Tiller841c8802015-09-10 13:06:37 -0700929 shared_csharp: shared_c \
930 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100931 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700932 % if lib.build == 'all' and lib.language == 'csharp':
Craig Tiller27f70842016-09-15 16:21:54 -0700933 $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP)\
Craig Tiller841c8802015-09-10 13:06:37 -0700934 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100935 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700936 % endfor
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -0800937
Craig Tiller841c8802015-09-10 13:06:37 -0700938 grpc_csharp_ext: shared_csharp
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -0800939
Craig Tiller841c8802015-09-10 13:06:37 -0700940 plugins: $(PROTOC_PLUGINS)
Nicolas "Pixel" Noble522d7122015-02-19 01:28:02 +0100941
Craig Tiller841c8802015-09-10 13:06:37 -0700942 privatelibs: privatelibs_c privatelibs_cxx
nnoble29e1d292014-12-01 10:27:40 -0800943
Craig Tiller841c8802015-09-10 13:06:37 -0700944 privatelibs_c: \
945 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100946 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800947 % if lib.build == 'private' and lib.language == 'c' and not lib.get('external_deps', None) and not lib.boringssl:
Craig Tiller841c8802015-09-10 13:06:37 -0700948 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
949 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100950 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700951 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800952
Craig Tiller841c8802015-09-10 13:06:37 -0700953 pc_c: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc
murgatroid998faab232015-06-30 17:24:21 -0700954
Craig Tiller841c8802015-09-10 13:06:37 -0700955 pc_c_unsecure: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc
murgatroid998faab232015-06-30 17:24:21 -0700956
Craig Tiller841c8802015-09-10 13:06:37 -0700957 pc_cxx: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc
murgatroid998faab232015-06-30 17:24:21 -0700958
Craig Tiller841c8802015-09-10 13:06:37 -0700959 pc_cxx_unsecure: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800960
vjpai20410922016-06-15 09:21:42 -0700961 ifeq ($(EMBED_OPENSSL),true)
Craig Tiller841c8802015-09-10 13:06:37 -0700962 privatelibs_cxx: \
963 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100964 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700965 % if lib.build == 'private' and lib.language == 'c++' and not lib.get('external_deps', None):
966 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
967 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100968 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700969 % endfor
Craig Tillereda85c62016-07-01 12:45:19 -0700970
vjpai20410922016-06-15 09:21:42 -0700971 else
972 privatelibs_cxx: \
973 % for lib in libs:
974 % if 'Makefile' in lib.get('build_system', ['Makefile']):
975 % if lib.build == 'private' and lib.language == 'c++' and not lib.get('external_deps', None) and not lib.boringssl:
976 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
977 % endif
978 % endif
979 % endfor
Craig Tillereda85c62016-07-01 12:45:19 -0700980
vjpai20410922016-06-15 09:21:42 -0700981 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800982
983
Craig Tillereda85c62016-07-01 12:45:19 -0700984 buildtests: buildtests_c buildtests_cxx
nnoble29e1d292014-12-01 10:27:40 -0800985
Craig Tiller3824b6e2015-12-09 11:19:59 -0800986 buildtests_c: privatelibs_c <%text>\</%text>
Craig Tiller841c8802015-09-10 13:06:37 -0700987 % for tgt in targets:
988 % if tgt.build == 'test' and not tgt.language == 'c++' and not tgt.get('external_deps', None):
Craig Tiller3824b6e2015-12-09 11:19:59 -0800989 $(BINDIR)/$(CONFIG)/${tgt.name} <%text>\</%text>
Craig Tiller841c8802015-09-10 13:06:37 -0700990 % endif
991 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800992
993
vjpai20410922016-06-15 09:21:42 -0700994 ifeq ($(EMBED_OPENSSL),true)
Craig Tillereda85c62016-07-01 12:45:19 -0700995 buildtests_cxx: privatelibs_cxx <%text>\</%text>
Craig Tiller841c8802015-09-10 13:06:37 -0700996 % for tgt in targets:
997 % if tgt.build == 'test' and tgt.language == 'c++' and not tgt.get('external_deps', None):
Craig Tiller3824b6e2015-12-09 11:19:59 -0800998 $(BINDIR)/$(CONFIG)/${tgt.name} <%text>\</%text>
Craig Tiller841c8802015-09-10 13:06:37 -0700999 % endif
1000 % endfor
Craig Tillereda85c62016-07-01 12:45:19 -07001001
vjpai20410922016-06-15 09:21:42 -07001002 else
Craig Tillereda85c62016-07-01 12:45:19 -07001003 buildtests_cxx: privatelibs_cxx <%text>\</%text>
vjpai20410922016-06-15 09:21:42 -07001004 % for tgt in targets:
1005 % if tgt.build == 'test' and tgt.language == 'c++' and not tgt.get('external_deps', None) and not tgt.boringssl:
1006 $(BINDIR)/$(CONFIG)/${tgt.name} <%text>\</%text>
1007 % endif
1008 % endfor
Craig Tillereda85c62016-07-01 12:45:19 -07001009
vjpai20410922016-06-15 09:21:42 -07001010 endif
nnoble29e1d292014-12-01 10:27:40 -08001011
1012
Craig Tillereda85c62016-07-01 12:45:19 -07001013 test: test_c test_cxx
nnoble29e1d292014-12-01 10:27:40 -08001014
Craig Tillereda85c62016-07-01 12:45:19 -07001015 flaky_test: flaky_test_c flaky_test_cxx
Nicolas "Pixel" Noble4251d562015-05-22 19:43:39 +02001016
Craig Tiller841c8802015-09-10 13:06:37 -07001017 test_c: buildtests_c
1018 % for tgt in targets:
1019 % 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):
1020 $(E) "[RUN] Testing ${tgt.name}"
1021 $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 )
1022 % endif
1023 % endfor
Nicolas "Pixel" Noble4251d562015-05-22 19:43:39 +02001024
1025
Craig Tiller841c8802015-09-10 13:06:37 -07001026 flaky_test_c: buildtests_c
1027 % for tgt in targets:
1028 % 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):
1029 $(E) "[RUN] Testing ${tgt.name}"
1030 $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 )
1031 % endif
1032 % endfor
nnoble29e1d292014-12-01 10:27:40 -08001033
1034
Craig Tillereda85c62016-07-01 12:45:19 -07001035 test_cxx: buildtests_cxx
Craig Tiller841c8802015-09-10 13:06:37 -07001036 % for tgt in targets:
1037 % 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):
1038 $(E) "[RUN] Testing ${tgt.name}"
1039 $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 )
1040 % endif
1041 % endfor
Nicolas "Pixel" Noble4251d562015-05-22 19:43:39 +02001042
1043
Craig Tiller841c8802015-09-10 13:06:37 -07001044 flaky_test_cxx: buildtests_cxx
1045 % for tgt in targets:
1046 % 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):
1047 $(E) "[RUN] Testing ${tgt.name}"
1048 $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 )
1049 % endif
1050 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001051
1052
Craig Tiller841c8802015-09-10 13:06:37 -07001053 test_python: static_c
1054 $(E) "[RUN] Testing python code"
1055 $(Q) tools/run_tests/run_tests.py -lpython -c$(CONFIG)
Nicolas "Pixel" Noble051a28f2015-03-17 22:54:54 +01001056
1057
Craig Tiller841c8802015-09-10 13:06:37 -07001058 tools: tools_c tools_cxx
Craig Tiller7552f0f2015-06-19 17:46:20 -07001059
1060
Craig Tiller841c8802015-09-10 13:06:37 -07001061 tools_c: privatelibs_c\
1062 % for tgt in targets:
1063 % if tgt.build == 'tool' and not tgt.language=='c++':
1064 $(BINDIR)/$(CONFIG)/${tgt.name}\
1065 % endif
1066 % endfor
Craig Tiller7552f0f2015-06-19 17:46:20 -07001067
1068
Craig Tiller841c8802015-09-10 13:06:37 -07001069 tools_cxx: privatelibs_cxx\
1070 % for tgt in targets:
1071 % if tgt.build == 'tool' and tgt.language=='c++':
1072 $(BINDIR)/$(CONFIG)/${tgt.name}\
1073 % endif
1074 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001075
1076
Craig Tiller841c8802015-09-10 13:06:37 -07001077 buildbenchmarks: privatelibs\
1078 % for tgt in targets:
1079 % if tgt.build == 'benchmark':
1080 $(BINDIR)/$(CONFIG)/${tgt.name}\
1081 % endif
1082 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001083
1084
Craig Tiller841c8802015-09-10 13:06:37 -07001085 benchmarks: buildbenchmarks
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001086
Craig Tiller841c8802015-09-10 13:06:37 -07001087 strip: strip-static strip-shared
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001088
Craig Tiller841c8802015-09-10 13:06:37 -07001089 strip-static: strip-static_c strip-static_cxx
nnoble20e2e3f2014-12-16 15:37:57 -08001090
Craig Tiller841c8802015-09-10 13:06:37 -07001091 strip-shared: strip-shared_c strip-shared_cxx
nnoble20e2e3f2014-12-16 15:37:57 -08001092
Nicolas Noble047b7272015-01-16 13:55:05 -08001093
Craig Tiller841c8802015-09-10 13:06:37 -07001094 # TODO(nnoble): the strip target is stripping in-place, instead
1095 # of copying files in a temporary folder.
1096 # This prevents proper debugging after running make install.
Nicolas Noble047b7272015-01-16 13:55:05 -08001097
Craig Tiller841c8802015-09-10 13:06:37 -07001098 strip-static_c: static_c
1099 ifeq ($(CONFIG),opt)
1100 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001101 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001102 % if lib.language == "c":
1103 % if lib.build == "all":
1104 % if not lib.get('external_deps', None):
1105 $(E) "[STRIP] Stripping lib${lib.name}.a"
1106 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a
1107 % endif
1108 % endif
1109 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001110 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001111 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001112 endif
nnoble85a49262014-12-08 18:14:03 -08001113
Craig Tiller841c8802015-09-10 13:06:37 -07001114 strip-static_cxx: static_cxx
1115 ifeq ($(CONFIG),opt)
1116 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001117 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001118 % if lib.language == "c++":
1119 % if lib.build == "all":
1120 $(E) "[STRIP] Stripping lib${lib.name}.a"
1121 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a
1122 % endif
1123 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001124 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001125 % endfor
1126 endif
Nicolas "Pixel" Noble4ef9b862015-08-14 19:35:24 +02001127
Craig Tiller841c8802015-09-10 13:06:37 -07001128 strip-shared_c: shared_c
1129 ifeq ($(CONFIG),opt)
1130 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001131 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001132 % if lib.language == "c":
1133 % if lib.build == "all":
1134 % if not lib.get('external_deps', None):
Craig Tiller27f70842016-09-15 16:21:54 -07001135 $(E) "[STRIP] Stripping $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
1136 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
Craig Tiller841c8802015-09-10 13:06:37 -07001137 % endif
1138 % endif
1139 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001140 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001141 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001142 endif
nnoble85a49262014-12-08 18:14:03 -08001143
Craig Tiller841c8802015-09-10 13:06:37 -07001144 strip-shared_cxx: shared_cxx
1145 ifeq ($(CONFIG),opt)
1146 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001147 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001148 % if lib.language == "c++":
1149 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001150 $(E) "[STRIP] Stripping $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
1151 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
Craig Tiller841c8802015-09-10 13:06:37 -07001152 % endif
1153 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001154 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001155 % endfor
1156 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001157
Craig Tiller841c8802015-09-10 13:06:37 -07001158 strip-shared_csharp: shared_csharp
1159 ifeq ($(CONFIG),opt)
1160 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001161 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001162 % if lib.language == "csharp":
1163 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001164 $(E) "[STRIP] Stripping $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP)"
1165 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP)
Craig Tiller841c8802015-09-10 13:06:37 -07001166 % endif
1167 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001168 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001169 % endfor
1170 endif
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -08001171
Craig Tiller841c8802015-09-10 13:06:37 -07001172 cache.mk::
1173 $(E) "[MAKE] Generating $@"
1174 $(Q) echo "$(CACHE_MK)" | tr , '\n' >$@
murgatroid99aa521572015-07-10 14:49:12 -07001175
Craig Tiller841c8802015-09-10 13:06:37 -07001176 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc:
1177 $(E) "[MAKE] Generating $@"
1178 $(Q) mkdir -p $(@D)
1179 $(Q) echo "$(GRPC_PC_FILE)" | tr , '\n' >$@
murgatroid998faab232015-06-30 17:24:21 -07001180
Craig Tiller841c8802015-09-10 13:06:37 -07001181 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc:
1182 $(E) "[MAKE] Generating $@"
1183 $(Q) mkdir -p $(@D)
1184 $(Q) echo "$(GRPC_UNSECURE_PC_FILE)" | tr , '\n' >$@
murgatroid998faab232015-06-30 17:24:21 -07001185
Craig Tiller841c8802015-09-10 13:06:37 -07001186 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc:
1187 $(E) "[MAKE] Generating $@"
1188 $(Q) mkdir -p $(@D)
1189 $(Q) echo "$(GRPCXX_PC_FILE)" | tr , '\n' >$@
murgatroid998faab232015-06-30 17:24:21 -07001190
Craig Tiller841c8802015-09-10 13:06:37 -07001191 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc:
1192 $(E) "[MAKE] Generating $@"
1193 $(Q) mkdir -p $(@D)
1194 $(Q) echo "$(GRPCXX_UNSECURE_PC_FILE)" | tr , '\n' >$@
murgatroid998faab232015-06-30 17:24:21 -07001195
Craig Tiller841c8802015-09-10 13:06:37 -07001196 % for p in protos:
1197 ifeq ($(NO_PROTOC),true)
1198 $(GENDIR)/${p}.pb.cc: protoc_dep_error
1199 $(GENDIR)/${p}.grpc.pb.cc: protoc_dep_error
1200 else
Craig Tiller1b4e3302015-12-17 16:35:00 -08001201 $(GENDIR)/${p}.pb.cc: ${p}.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) ${' '.join('$(GENDIR)/%s.pb.cc' % q for q in proto_deps.get(p, []))}
Craig Tiller841c8802015-09-10 13:06:37 -07001202 $(E) "[PROTOC] Generating protobuf CC file from $<"
1203 $(Q) mkdir -p `dirname $@`
David Garcia Quintase68ed6f2016-06-17 12:49:14 -07001204 $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
Nicolas "Pixel" Noble0caebbf2015-04-09 23:08:51 +02001205
Craig Tiller1b4e3302015-12-17 16:35:00 -08001206 $(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 Tiller841c8802015-09-10 13:06:37 -07001207 $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
1208 $(Q) mkdir -p `dirname $@`
Mario Emmenlauer121d2892016-12-12 23:49:27 +01001209 $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
Craig Tiller841c8802015-09-10 13:06:37 -07001210 endif
nnoble72309c62014-12-12 11:42:26 -08001211
Craig Tiller841c8802015-09-10 13:06:37 -07001212 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001213
Craig Tiller841c8802015-09-10 13:06:37 -07001214 ifeq ($(CONFIG),stapprof)
1215 src/core/profiling/stap_timers.c: $(GENDIR)/src/core/profiling/stap_probes.h
1216 ifeq ($(HAS_SYSTEMTAP),true)
1217 $(GENDIR)/src/core/profiling/stap_probes.h: src/core/profiling/stap_probes.d
1218 $(E) "[DTRACE] Compiling $<"
1219 $(Q) mkdir -p `dirname $@`
1220 $(Q) $(DTRACE) -C -h -s $< -o $@
1221 else
1222 $(GENDIR)/src/core/profiling/stap_probes.h: systemtap_dep_error stop
1223 endif
1224 endif
David Garcia Quintas611b7362015-04-27 15:49:31 -07001225
Craig Tiller841c8802015-09-10 13:06:37 -07001226 $(OBJDIR)/$(CONFIG)/%.o : %.c
1227 $(E) "[C] Compiling $<"
1228 $(Q) mkdir -p `dirname $@`
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01001229 $(Q) $(CC) $(CPPFLAGS) $(CFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001230
Craig Tiller841c8802015-09-10 13:06:37 -07001231 $(OBJDIR)/$(CONFIG)/%.o : $(GENDIR)/%.pb.cc
1232 $(E) "[CXX] Compiling $<"
1233 $(Q) mkdir -p `dirname $@`
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01001234 $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001235
Craig Tiller841c8802015-09-10 13:06:37 -07001236 $(OBJDIR)/$(CONFIG)/src/compiler/%.o : src/compiler/%.cc
1237 $(E) "[HOSTCXX] Compiling $<"
1238 $(Q) mkdir -p `dirname $@`
1239 $(Q) $(HOST_CXX) $(HOST_CXXFLAGS) $(HOST_CPPFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
nnoble72309c62014-12-12 11:42:26 -08001240
Craig Tiller841c8802015-09-10 13:06:37 -07001241 $(OBJDIR)/$(CONFIG)/%.o : %.cc
1242 $(E) "[CXX] Compiling $<"
1243 $(Q) mkdir -p `dirname $@`
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01001244 $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001245
murgatroid99a3c55352016-08-10 13:41:31 -07001246 install: install_c install_cxx install-plugins install-certs
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001247
Craig Tiller841c8802015-09-10 13:06:37 -07001248 install_c: install-headers_c install-static_c install-shared_c
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001249
Craig Tiller841c8802015-09-10 13:06:37 -07001250 install_cxx: install-headers_cxx install-static_cxx install-shared_cxx
nnoble85a49262014-12-08 18:14:03 -08001251
Craig Tiller841c8802015-09-10 13:06:37 -07001252 install_csharp: install-shared_csharp install_c
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -08001253
Craig Tiller841c8802015-09-10 13:06:37 -07001254 install_grpc_csharp_ext: install_csharp
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -08001255
Craig Tiller841c8802015-09-10 13:06:37 -07001256 install-headers: install-headers_c install-headers_cxx
nnoble85a49262014-12-08 18:14:03 -08001257
Craig Tiller841c8802015-09-10 13:06:37 -07001258 install-headers_c:
1259 $(E) "[INSTALL] Installing public C headers"
1260 $(Q) $(foreach h, $(PUBLIC_HEADERS_C), $(INSTALL) -d $(prefix)/$(dir $(h)) && ) exit 0 || exit 1
1261 $(Q) $(foreach h, $(PUBLIC_HEADERS_C), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1
nnoble85a49262014-12-08 18:14:03 -08001262
Craig Tiller841c8802015-09-10 13:06:37 -07001263 install-headers_cxx:
1264 $(E) "[INSTALL] Installing public C++ headers"
1265 $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) -d $(prefix)/$(dir $(h)) && ) exit 0 || exit 1
1266 $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1
nnoble85a49262014-12-08 18:14:03 -08001267
Craig Tiller841c8802015-09-10 13:06:37 -07001268 install-static: install-static_c install-static_cxx
nnoble85a49262014-12-08 18:14:03 -08001269
Craig Tiller841c8802015-09-10 13:06:37 -07001270 install-static_c: static_c strip-static_c install-pkg-config_c
1271 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001272 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001273 % if lib.language == "c":
1274 % if lib.build == "all":
1275 % if not lib.get('external_deps', None):
1276 $(E) "[INSTALL] Installing lib${lib.name}.a"
1277 $(Q) $(INSTALL) -d $(prefix)/lib
1278 $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a $(prefix)/lib/lib${lib.name}.a
1279 % endif
1280 % endif
1281 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001282 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001283 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001284
Craig Tiller841c8802015-09-10 13:06:37 -07001285 install-static_cxx: static_cxx strip-static_cxx install-pkg-config_cxx
1286 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001287 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001288 % if lib.language == "c++":
1289 % if lib.build == "all":
1290 $(E) "[INSTALL] Installing lib${lib.name}.a"
1291 $(Q) $(INSTALL) -d $(prefix)/lib
1292 $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a $(prefix)/lib/lib${lib.name}.a
1293 % endif
1294 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001295 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001296 % endfor
nnoble85a49262014-12-08 18:14:03 -08001297
Craig Tiller841c8802015-09-10 13:06:37 -07001298 <%def name="install_shared(lang_filter)">\
1299 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001300 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001301 % if lib.language == lang_filter:
1302 % if lib.build == "all":
1303 % if not lib.get('external_deps', None):
Craig Tiller27f70842016-09-15 16:21:54 -07001304 $(E) "[INSTALL] Installing $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]})"
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +01001305 $(Q) $(INSTALL) -d $(prefix)/lib
Mario Emmenlauer8e883b22017-01-12 11:45:52 +01001306 $(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 Tiller841c8802015-09-10 13:06:37 -07001307 ifeq ($(SYSTEM),MINGW32)
Craig Tiller841c8802015-09-10 13:06:37 -07001308 $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/lib${lib.name}-imp.a $(prefix)/lib/lib${lib.name}-imp.a
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +01001309 else ifneq ($(SYSTEM),Darwin)
Craig Tiller27f70842016-09-15 16:21:54 -07001310 $(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}
1311 $(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 Tiller841c8802015-09-10 13:06:37 -07001312 endif
1313 % endif
1314 % endif
1315 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001316 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001317 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001318 ifneq ($(SYSTEM),MINGW32)
1319 ifneq ($(SYSTEM),Darwin)
1320 $(Q) ldconfig || true
1321 endif
1322 endif
1323 </%def>
nnoble85a49262014-12-08 18:14:03 -08001324
Craig Tiller841c8802015-09-10 13:06:37 -07001325 install-shared_c: shared_c strip-shared_c install-pkg-config_c
1326 ${install_shared("c")}
Nicolas "Pixel" Noble522d7122015-02-19 01:28:02 +01001327
Craig Tiller841c8802015-09-10 13:06:37 -07001328 install-shared_cxx: shared_cxx strip-shared_cxx install-shared_c install-pkg-config_cxx
1329 ${install_shared("c++")}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001330
Craig Tiller841c8802015-09-10 13:06:37 -07001331 install-shared_csharp: shared_csharp strip-shared_csharp
1332 ${install_shared("csharp")}
Nicolas "Pixel" Noble522d7122015-02-19 01:28:02 +01001333
Craig Tiller841c8802015-09-10 13:06:37 -07001334 install-plugins: $(PROTOC_PLUGINS)
Craig Tiller841c8802015-09-10 13:06:37 -07001335 $(E) "[INSTALL] Installing grpc protoc plugins"
1336 % for tgt in targets:
1337 % if tgt.build == 'protoc':
1338 $(Q) $(INSTALL) -d $(prefix)/bin
1339 $(Q) $(INSTALL) $(BINDIR)/$(CONFIG)/${tgt.name} $(prefix)/bin/${tgt.name}
1340 % endif
1341 % endfor
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -08001342
Craig Tillereda85c62016-07-01 12:45:19 -07001343 install-pkg-config_c: pc_c pc_c_unsecure
Craig Tiller841c8802015-09-10 13:06:37 -07001344 $(E) "[INSTALL] Installing C pkg-config files"
1345 $(Q) $(INSTALL) -d $(prefix)/lib/pkgconfig
Craig Tiller841c8802015-09-10 13:06:37 -07001346 $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc $(prefix)/lib/pkgconfig/grpc.pc
1347 $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc $(prefix)/lib/pkgconfig/grpc_unsecure.pc
murgatroid998faab232015-06-30 17:24:21 -07001348
Craig Tiller841c8802015-09-10 13:06:37 -07001349 install-pkg-config_cxx: pc_cxx pc_cxx_unsecure
1350 $(E) "[INSTALL] Installing C++ pkg-config files"
1351 $(Q) $(INSTALL) -d $(prefix)/lib/pkgconfig
1352 $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc $(prefix)/lib/pkgconfig/grpc++.pc
1353 $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc $(prefix)/lib/pkgconfig/grpc++_unsecure.pc
murgatroid998faab232015-06-30 17:24:21 -07001354
Craig Tiller841c8802015-09-10 13:06:37 -07001355 install-certs: etc/roots.pem
1356 $(E) "[INSTALL] Installing root certificates"
1357 $(Q) $(INSTALL) -d $(prefix)/share/grpc
1358 $(Q) $(INSTALL) etc/roots.pem $(prefix)/share/grpc/roots.pem
Nicolas "Pixel" Noble161ea232015-02-22 05:48:53 +01001359
Craig Tiller841c8802015-09-10 13:06:37 -07001360 clean:
1361 $(E) "[CLEAN] Cleaning build directories."
1362 $(Q) $(RM) -rf $(OBJDIR) $(LIBDIR) $(BINDIR) $(GENDIR) cache.mk
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001363
1364
Craig Tiller841c8802015-09-10 13:06:37 -07001365 # The various libraries
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001366
Craig Tiller841c8802015-09-10 13:06:37 -07001367 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001368 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001369 ${makelib(lib)}
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001370 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001371 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001372
1373
Craig Tiller841c8802015-09-10 13:06:37 -07001374 # All of the test targets, and protoc plugins
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001375
Craig Tiller841c8802015-09-10 13:06:37 -07001376 % for tgt in targets:
1377 ${maketarget(tgt)}
1378 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001379
Craig Tiller841c8802015-09-10 13:06:37 -07001380 <%def name="makelib(lib)">
1381 LIB${lib.name.upper()}_SRC = \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001382
Craig Tiller841c8802015-09-10 13:06:37 -07001383 % for src in lib.src:
1384 ${proto_to_cc(src)} \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001385
Craig Tiller841c8802015-09-10 13:06:37 -07001386 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001387
Craig Tiller841c8802015-09-10 13:06:37 -07001388 % if "public_headers" in lib:
1389 % if lib.language == "c++":
1390 PUBLIC_HEADERS_CXX += \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001391
Craig Tiller841c8802015-09-10 13:06:37 -07001392 % else:
1393 PUBLIC_HEADERS_C += \\
nnoble85a49262014-12-08 18:14:03 -08001394
Craig Tiller841c8802015-09-10 13:06:37 -07001395 % endif
1396 % for hdr in lib.public_headers:
1397 ${hdr} \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001398
Craig Tiller841c8802015-09-10 13:06:37 -07001399 % endfor
1400 % endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001401
Craig Tiller841c8802015-09-10 13:06:37 -07001402 LIB${lib.name.upper()}_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIB${lib.name.upper()}_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001403
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01001404 % if lib.get('defaults', None):
1405 % for name, value in defaults.get(lib.defaults).iteritems():
1406 $(LIB${lib.name.upper()}_OBJS): ${name} += ${value}
1407 % endfor
Craig Tiller0fe5ee72015-12-22 12:50:36 -08001408 % endif
1409
Craig Tiller841c8802015-09-10 13:06:37 -07001410 ## If the library requires OpenSSL, let's add some restrictions.
1411 % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1412 ifeq ($(NO_SECURE),true)
nnoble69ac39f2014-12-12 15:43:38 -08001413
Craig Tiller841c8802015-09-10 13:06:37 -07001414 # You can't build secure libraries if you don't have OpenSSL.
Nicolas Noble047b7272015-01-16 13:55:05 -08001415
Craig Tiller841c8802015-09-10 13:06:37 -07001416 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001417
Craig Tiller841c8802015-09-10 13:06:37 -07001418 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001419 $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]}): openssl_dep_error
Craig Tiller841c8802015-09-10 13:06:37 -07001420 % endif
nnoble5b7f32a2014-12-22 08:12:44 -08001421
Craig Tiller841c8802015-09-10 13:06:37 -07001422 else
nnoble69ac39f2014-12-12 15:43:38 -08001423
Craig Tiller841c8802015-09-10 13:06:37 -07001424 % if lib.language == 'c++':
1425 ifeq ($(NO_PROTOBUF),true)
Nicolas Noble53830622015-02-12 16:56:38 -08001426
Craig Tiller841c8802015-09-10 13:06:37 -07001427 # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
Nicolas Noble53830622015-02-12 16:56:38 -08001428
Craig Tiller841c8802015-09-10 13:06:37 -07001429 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: protobuf_dep_error
Nicolas Noble53830622015-02-12 16:56:38 -08001430
Craig Tiller841c8802015-09-10 13:06:37 -07001431 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001432 $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]}): protobuf_dep_error
Craig Tiller841c8802015-09-10 13:06:37 -07001433 % endif
Nicolas Noble53830622015-02-12 16:56:38 -08001434
Craig Tiller841c8802015-09-10 13:06:37 -07001435 else
1436 % endif
Nicolas Noble53830622015-02-12 16:56:38 -08001437
Craig Tiller841c8802015-09-10 13:06:37 -07001438 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: $(ZLIB_DEP) $(OPENSSL_DEP)\
1439 ## The else here corresponds to the if secure earlier.
1440 % else:
1441 % if lib.language == 'c++':
1442 ifeq ($(NO_PROTOBUF),true)
Nicolas Noble53830622015-02-12 16:56:38 -08001443
Craig Tiller841c8802015-09-10 13:06:37 -07001444 # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
Nicolas Noble53830622015-02-12 16:56:38 -08001445
Craig Tiller841c8802015-09-10 13:06:37 -07001446 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: protobuf_dep_error
Nicolas Noble53830622015-02-12 16:56:38 -08001447
Craig Tiller841c8802015-09-10 13:06:37 -07001448 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001449 $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]}).$(SHARED_EXT_${lang_to_var[lib.language]}): protobuf_dep_error
Craig Tiller841c8802015-09-10 13:06:37 -07001450 % endif
Nicolas Noble53830622015-02-12 16:56:38 -08001451
Craig Tiller841c8802015-09-10 13:06:37 -07001452 else
Nicolas Noble53830622015-02-12 16:56:38 -08001453
Craig Tiller841c8802015-09-10 13:06:37 -07001454 % endif
Nicolas "Pixel" Nobled649c212016-01-27 20:27:30 +01001455 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: \
1456 % if lib.name != 'z':
1457 $(ZLIB_DEP) \
1458 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001459 % endif
1460 % if lib.language == 'c++':
1461 $(PROTOBUF_DEP)\
1462 % endif
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001463 $(LIB${lib.name.upper()}_OBJS) \
1464 % if lib.get('baselib', False):
Craig Tiller1298afd2016-02-09 12:29:17 -08001465 $(LIBGPR_OBJS) \
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001466 $(ZLIB_MERGE_OBJS) \
1467 % if lib.get('secure', 'check') == True:
1468 $(OPENSSL_MERGE_OBJS) \
1469 % endif
1470 % endif
1471
Craig Tiller841c8802015-09-10 13:06:37 -07001472 $(E) "[AR] Creating $@"
1473 $(Q) mkdir -p `dirname $@`
1474 $(Q) rm -f $(LIBDIR)/$(CONFIG)/lib${lib.name}.a
Vijay Paicc7eb8e2016-07-19 19:03:55 -07001475 $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a $(LIB${lib.name.upper()}_OBJS) \
Craig Tiller841c8802015-09-10 13:06:37 -07001476 % if lib.get('baselib', False):
Craig Tiller1298afd2016-02-09 12:29:17 -08001477 $(LIBGPR_OBJS) \
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001478 $(ZLIB_MERGE_OBJS) \
Craig Tiller841c8802015-09-10 13:06:37 -07001479 % if lib.get('secure', 'check') == True:
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001480 $(OPENSSL_MERGE_OBJS) \
Craig Tiller841c8802015-09-10 13:06:37 -07001481 % endif
1482 % endif
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001483
Craig Tiller841c8802015-09-10 13:06:37 -07001484 ifeq ($(SYSTEM),Darwin)
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001485 $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/lib${lib.name}.a
Craig Tiller841c8802015-09-10 13:06:37 -07001486 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001487
Craig Tiller841c8802015-09-10 13:06:37 -07001488 <%
Nicolas "Pixel" Noble010f1e72015-04-23 02:23:49 +02001489
Craig Tiller841c8802015-09-10 13:06:37 -07001490 if lib.language == 'c++':
1491 ld = '$(LDXX)'
1492 else:
1493 ld = '$(LD)'
nnoble5b7f32a2014-12-22 08:12:44 -08001494
Craig Tiller40c8fba2016-09-15 16:29:09 -07001495 out_mingbase = '$(LIBDIR)/$(CONFIG)/' + lib.name + '$(SHARED_VERSION_' + lang_to_var[lib.language] + ')'
1496 out_libbase = '$(LIBDIR)/$(CONFIG)/lib' + lib.name + '$(SHARED_VERSION_' + lang_to_var[lib.language] + ')'
nnoble5b7f32a2014-12-22 08:12:44 -08001497
Craig Tiller841c8802015-09-10 13:06:37 -07001498 common = '$(LIB' + lib.name.upper() + '_OBJS) $(LDLIBS)'
nnoble5b7f32a2014-12-22 08:12:44 -08001499
Craig Tillerd7b1bdf2016-11-04 16:20:13 -07001500 link_libs = ''
Craig Tiller841c8802015-09-10 13:06:37 -07001501 lib_deps = ' $(ZLIB_DEP)'
1502 mingw_libs = ''
1503 mingw_lib_deps = ' $(ZLIB_DEP)'
1504 if lib.language == 'c++':
1505 lib_deps += ' $(PROTOBUF_DEP)'
1506 mingw_lib_deps += ' $(PROTOBUF_DEP)'
Jan Tattermusch324140c2016-01-12 08:54:01 -08001507 if lib.get('deps_linkage', None) == 'static':
1508 for dep in lib.get('deps', []):
1509 lib_archive = '$(LIBDIR)/$(CONFIG)/lib' + dep + '.a'
1510 common = common + ' ' + lib_archive
1511 lib_deps = lib_deps + ' ' + lib_archive
1512 mingw_lib_deps = mingw_lib_deps + ' ' + lib_archive
1513 else:
1514 for dep in lib.get('deps', []):
Craig Tillerd7b1bdf2016-11-04 16:20:13 -07001515 dep_lib = None
1516 for dl in libs:
1517 if dl.name == dep:
1518 dep_lib = dl
1519 assert dep_lib, 'lib %s not found (in %s)' % (dep, lib.name)
1520 link_libs = link_libs + ' -l' + dep
1521 lib_deps = lib_deps + ' $(LIBDIR)/$(CONFIG)/lib' + dep + '.$(SHARED_EXT_' + lang_to_var[dep_lib.language] + ')'
Jan Tattermusch324140c2016-01-12 08:54:01 -08001522 mingw_libs = mingw_libs + ' -l' + dep + '-imp'
Mario Emmenlauer8e883b22017-01-12 11:45:52 +01001523 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] + ')'
nnoble5b7f32a2014-12-22 08:12:44 -08001524
Craig Tiller841c8802015-09-10 13:06:37 -07001525 security = lib.get('secure', 'check')
1526 if security == True:
1527 common = common + ' $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE)'
Craig Tiller0fe5ee72015-12-22 12:50:36 -08001528 common = common + ' $(ZLIB_MERGE_LIBS)'
Nicolas "Pixel" Noblea7c162c2015-07-24 20:21:51 +02001529
Craig Tiller841c8802015-09-10 13:06:37 -07001530 if security in [True, 'check']:
1531 for src in lib.src:
1532 if not proto_re.match(src):
1533 sources_that_need_openssl.add(src)
1534 else:
1535 for src in lib.src:
1536 sources_that_don_t_need_openssl.add(src)
Nicolas "Pixel" Noble061690d2015-03-06 22:58:58 +01001537
Craig Tiller841c8802015-09-10 13:06:37 -07001538 if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1539 lib_deps = lib_deps + ' $(OPENSSL_DEP)'
1540 mingw_lib_deps = mingw_lib_deps + ' $(OPENSSL_DEP)'
Nicolas "Pixel" Nobledda049c2015-02-21 00:39:32 +01001541
Craig Tiller841c8802015-09-10 13:06:37 -07001542 if lib.language == 'c++':
1543 common = common + ' $(LDLIBSXX) $(LDLIBS_PROTOBUF)'
Craig Tiller4bef7ce2016-02-02 08:38:43 -08001544
1545 ldflags = '$(LDFLAGS)'
1546 if lib.get('LDFLAGS', None):
1547 ldflags += ' ' + lib['LDFLAGS']
Craig Tiller841c8802015-09-10 13:06:37 -07001548 %>
nnoble5b7f32a2014-12-22 08:12:44 -08001549
Craig Tiller841c8802015-09-10 13:06:37 -07001550 % if lib.build == "all":
1551 ifeq ($(SYSTEM),MINGW32)
Craig Tiller38b99e92016-09-15 16:18:09 -07001552 ${out_mingbase}.$(SHARED_EXT_${lang_to_var[lib.language]}): $(LIB${lib.name.upper()}_OBJS) ${mingw_lib_deps}
Craig Tiller841c8802015-09-10 13:06:37 -07001553 $(E) "[LD] Linking $@"
1554 $(Q) mkdir -p `dirname $@`
Mario Emmenlauer294dc2f2016-12-13 00:07:12 +01001555 $(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 Tiller841c8802015-09-10 13:06:37 -07001556 else
Craig Tiller38b99e92016-09-15 16:18:09 -07001557 ${out_libbase}.$(SHARED_EXT_${lang_to_var[lib.language]}): $(LIB${lib.name.upper()}_OBJS) ${lib_deps}
Craig Tiller841c8802015-09-10 13:06:37 -07001558 $(E) "[LD] Linking $@"
1559 $(Q) mkdir -p `dirname $@`
1560 ifeq ($(SYSTEM),Darwin)
Mario Emmenlauer8e883b22017-01-12 11:45:52 +01001561 $(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 Tiller841c8802015-09-10 13:06:37 -07001562 else
Craig Tillerd7b1bdf2016-11-04 16:20:13 -07001563 $(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 Emmenlauer8e883b22017-01-12 11:45:52 +01001564 $(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}
1565 $(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 Tiller841c8802015-09-10 13:06:37 -07001566 endif
1567 endif
1568 % endif
1569 % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1570 ## If the lib was secure, we have to close the Makefile's if that tested
1571 ## the presence of OpenSSL.
Nicolas Noble53830622015-02-12 16:56:38 -08001572
Craig Tiller841c8802015-09-10 13:06:37 -07001573 endif
1574 % endif
1575 % if lib.language == 'c++':
1576 ## If the lib was C++, we have to close the Makefile's if that tested
1577 ## the presence of protobuf 3.0.0+
nnoble69ac39f2014-12-12 15:43:38 -08001578
Craig Tiller841c8802015-09-10 13:06:37 -07001579 endif
1580 % endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001581
Craig Tiller841c8802015-09-10 13:06:37 -07001582 % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1583 ifneq ($(NO_SECURE),true)
1584 % endif
1585 ifneq ($(NO_DEPS),true)
1586 -include $(LIB${lib.name.upper()}_OBJS:.o=.dep)
1587 endif
1588 % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1589 endif
1590 % endif
1591 % for src in lib.src:
1592 % if not proto_re.match(src) and any(proto_re.match(src2) for src2 in lib.src):
1593 $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: ${' '.join(proto_to_cc(src2) for src2 in lib.src if proto_re.match(src2))}
1594 % endif
1595 % endfor
1596 </%def>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001597
Craig Tiller841c8802015-09-10 13:06:37 -07001598 <%def name="maketarget(tgt)"><% has_no_sources = not tgt.src %>
1599 % if not has_no_sources:
1600 ${tgt.name.upper()}_SRC = \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001601
Craig Tiller841c8802015-09-10 13:06:37 -07001602 % for src in tgt.src:
1603 ${proto_to_cc(src)} \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001604
Craig Tiller841c8802015-09-10 13:06:37 -07001605 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001606
Craig Tiller841c8802015-09-10 13:06:37 -07001607 ${tgt.name.upper()}_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(${tgt.name.upper()}_SRC))))
1608 % endif
1609 % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
1610 ifeq ($(NO_SECURE),true)
nnoble69ac39f2014-12-12 15:43:38 -08001611
Craig Tiller841c8802015-09-10 13:06:37 -07001612 # You can't build secure targets if you don't have OpenSSL.
Nicolas Noble047b7272015-01-16 13:55:05 -08001613
Craig Tiller841c8802015-09-10 13:06:37 -07001614 $(BINDIR)/$(CONFIG)/${tgt.name}: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001615
Craig Tiller841c8802015-09-10 13:06:37 -07001616 else
nnoble69ac39f2014-12-12 15:43:38 -08001617
Craig Tiller841c8802015-09-10 13:06:37 -07001618 % endif
Craig Tiller0fe5ee72015-12-22 12:50:36 -08001619
1620 % if tgt.boringssl:
1621 # boringssl needs an override to ensure that it does not include
1622 # system openssl headers regardless of other configuration
1623 # we do so here with a target specific variable assignment
Craig Tiller78222f72016-05-10 09:55:38 -07001624 $(${tgt.name.upper()}_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
Craig Tiller0fe5ee72015-12-22 12:50:36 -08001625 $(${tgt.name.upper()}_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
1626 $(${tgt.name.upper()}_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
1627 % else:
1628 % endif
1629
Craig Tiller841c8802015-09-10 13:06:37 -07001630 ##
1631 ## We're not trying to add a dependency on building zlib and openssl here,
1632 ## as it's already done in the libraries. We're assuming that the build
1633 ## trickles down, and that a secure target requires a secure version of
1634 ## a library.
1635 ##
1636 ## That simplifies the codegen a bit, but prevents a fully defined Makefile.
1637 ## I can live with that.
1638 ##
1639 % if tgt.build == 'protoc' or tgt.language == 'c++':
Nicolas Noble53830622015-02-12 16:56:38 -08001640
Craig Tiller841c8802015-09-10 13:06:37 -07001641 ifeq ($(NO_PROTOBUF),true)
Nicolas Noble53830622015-02-12 16:56:38 -08001642
Craig Tiller841c8802015-09-10 13:06:37 -07001643 # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.0.0+.
Nicolas Noble53830622015-02-12 16:56:38 -08001644
Craig Tiller841c8802015-09-10 13:06:37 -07001645 $(BINDIR)/$(CONFIG)/${tgt.name}: protobuf_dep_error
Nicolas Noble53830622015-02-12 16:56:38 -08001646
Craig Tiller841c8802015-09-10 13:06:37 -07001647 else
Nicolas Noble53830622015-02-12 16:56:38 -08001648
Craig Tiller841c8802015-09-10 13:06:37 -07001649 $(BINDIR)/$(CONFIG)/${tgt.name}: \
1650 % if not has_no_sources:
1651 $(PROTOBUF_DEP) $(${tgt.name.upper()}_OBJS)\
1652 % endif
1653 % else:
1654 $(BINDIR)/$(CONFIG)/${tgt.name}: \
1655 % if not has_no_sources:
1656 $(${tgt.name.upper()}_OBJS)\
1657 % endif
1658 % endif
1659 % for dep in tgt.deps:
1660 $(LIBDIR)/$(CONFIG)/lib${dep}.a\
1661 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001662
Craig Tiller32173c52016-03-17 14:12:45 -07001663 % if tgt.language == "c++" or tgt.boringssl or tgt.build == 'fuzzer':
Craig Tiller841c8802015-09-10 13:06:37 -07001664 ## C++ targets specificies.
1665 % if tgt.build == 'protoc':
1666 $(E) "[HOSTLD] Linking $@"
1667 $(Q) mkdir -p `dirname $@`
1668 $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) \
1669 % if not has_no_sources:
1670 $(${tgt.name.upper()}_OBJS)\
1671 % endif
1672 % else:
1673 $(E) "[LD] Linking $@"
1674 $(Q) mkdir -p `dirname $@`
1675 $(Q) $(LDXX) $(LDFLAGS) \
1676 % if not has_no_sources:
1677 $(${tgt.name.upper()}_OBJS)\
1678 % endif
1679 % endif
1680 % else:
1681 ## C-only targets specificities.
1682 $(E) "[LD] Linking $@"
1683 $(Q) mkdir -p `dirname $@`
1684 $(Q) $(LD) $(LDFLAGS) \
1685 % if not has_no_sources:
1686 $(${tgt.name.upper()}_OBJS)\
1687 % endif
1688 % endif
1689 % for dep in tgt.deps:
1690 $(LIBDIR)/$(CONFIG)/lib${dep}.a\
1691 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001692 % if tgt.language == "c++":
1693 % if tgt.build == 'protoc':
1694 $(HOST_LDLIBSXX) $(HOST_LDLIBS_PROTOC)\
1695 % else:
1696 $(LDLIBSXX) $(LDLIBS_PROTOBUF)\
1697 % endif
1698 % endif
1699 % if tgt.build == 'protoc':
1700 $(HOST_LDLIBS)\
1701 % else:
1702 $(LDLIBS)\
1703 % endif
1704 % if tgt.build == 'protoc':
1705 $(HOST_LDLIBS_PROTOC)\
1706 % elif tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
1707 $(LDLIBS_SECURE)\
1708 % endif
1709 % if tgt.language == 'c++' and tgt.build == 'test':
1710 $(GTEST_LIB)\
1711 % elif tgt.language == 'c++' and tgt.build == 'benchmark':
1712 $(GTEST_LIB)\
1713 % endif
Craig Tiller32173c52016-03-17 14:12:45 -07001714 % if tgt.build == 'fuzzer':
1715 -lFuzzer\
1716 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001717 -o $(BINDIR)/$(CONFIG)/${tgt.name}
1718 % if tgt.build == 'protoc' or tgt.language == 'c++':
Nicolas Noble53830622015-02-12 16:56:38 -08001719
Craig Tiller841c8802015-09-10 13:06:37 -07001720 endif
1721 % endif
1722 % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
nnoble69ac39f2014-12-12 15:43:38 -08001723
Craig Tiller841c8802015-09-10 13:06:37 -07001724 endif
1725 % endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001726
Craig Tiller841c8802015-09-10 13:06:37 -07001727 % for src in tgt.src:
1728 $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: \
1729 % for dep in tgt.deps:
1730 $(LIBDIR)/$(CONFIG)/lib${dep}.a\
1731 % endfor
Craig Tillerf5371ef2015-01-12 16:40:18 -08001732
Craig Tillerab230452016-01-04 08:18:43 -08001733 % if tgt.language == 'c89':
1734 % for src in tgt.src:
Craig Tillerea21ca22016-01-04 12:34:29 -08001735 $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o : ${src}
1736 $(E) "[C] Compiling $<"
1737 $(Q) mkdir -p `dirname $@`
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01001738 $(Q) $(CC) $(CPPFLAGS) $(CFLAGS) -std=c89 -pedantic -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
Craig Tillerab230452016-01-04 08:18:43 -08001739 % endfor
1740 % endif
1741
Craig Tiller841c8802015-09-10 13:06:37 -07001742 % endfor
1743 % if not has_no_sources:
1744 deps_${tgt.name}: $(${tgt.name.upper()}_OBJS:.o=.dep)
1745 % endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001746
Craig Tiller841c8802015-09-10 13:06:37 -07001747 % if not has_no_sources:
1748 % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
1749 ifneq ($(NO_SECURE),true)
1750 % endif
1751 ifneq ($(NO_DEPS),true)
1752 -include $(${tgt.name.upper()}_OBJS:.o=.dep)
1753 endif
1754 % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
1755 endif
1756 % endif
1757 % endif
Nicolas "Pixel" Noble472bb682015-11-03 19:09:01 +01001758 % for src in tgt.src:
1759 % if not proto_re.match(src) and any(proto_re.match(src2) for src2 in tgt.src):
1760 $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: ${' '.join(proto_to_cc(src2) for src2 in tgt.src if proto_re.match(src2))}
1761 % endif
1762 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001763 </%def>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001764
Craig Tiller841c8802015-09-10 13:06:37 -07001765 ifneq ($(OPENSSL_DEP),)
1766 # This is to ensure the embedded OpenSSL is built beforehand, properly
1767 # installing headers to their final destination on the drive. We need this
1768 # otherwise parallel compilation will fail if a source is compiled first.
1769 % for src in sorted(sources_that_need_openssl):
1770 % if src not in sources_that_don_t_need_openssl:
1771 ${src}: $(OPENSSL_DEP)
1772 % endif
1773 % endfor
1774 endif
Nicolas "Pixel" Noble010f1e72015-04-23 02:23:49 +02001775
Craig Tiller841c8802015-09-10 13:06:37 -07001776 .PHONY: all strip tools \
1777 dep_error openssl_dep_error openssl_dep_message git_update stop \
1778 buildtests buildtests_c buildtests_cxx \
1779 test test_c test_cxx \
1780 install install_c install_cxx \
1781 install-headers install-headers_c install-headers_cxx \
1782 install-shared install-shared_c install-shared_cxx \
1783 install-static install-static_c install-static_cxx \
1784 strip strip-shared strip-static \
1785 strip_c strip-shared_c strip-static_c \
1786 strip_cxx strip-shared_cxx strip-static_cxx \
1787 dep_c dep_cxx bins_dep_c bins_dep_cxx \
1788 clean
Craig Tillerb79c1e12016-02-23 10:00:58 -08001789
1790 .PHONY: printvars
1791 printvars:
1792 @$(foreach V,$(sort $(.VARIABLES)), \
1793 $(if $(filter-out environment% default automatic, \
1794 $(origin $V)),$(warning $V=$($V) ($(value $V)))))