blob: b8e26b646b0c2a10c674d339a135ad732cc5cee2 [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
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020010 # Copyright 2015 gRPC authors.
Craig Tiller841c8802015-09-10 13:06:37 -070011 #
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020012 # Licensed under the Apache License, Version 2.0 (the "License");
13 # you may not use this file except in compliance with the License.
14 # You may obtain a copy of the License at
Craig Tiller841c8802015-09-10 13:06:37 -070015 #
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020016 # http://www.apache.org/licenses/LICENSE-2.0
Craig Tiller841c8802015-09-10 13:06:37 -070017 #
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020018 # Unless required by applicable law or agreed to in writing, software
19 # distributed under the License is distributed on an "AS IS" BASIS,
20 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 # See the License for the specific language governing permissions and
22 # limitations under the License.
Craig Tiller841c8802015-09-10 13:06:37 -070023 <%!
24 import re
25 import os
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080026
Craig Tiller841c8802015-09-10 13:06:37 -070027 proto_re = re.compile('(.*)\\.proto')
nnoble72309c62014-12-12 11:42:26 -080028
Craig Tiller841c8802015-09-10 13:06:37 -070029 def proto_to_cc(filename):
30 m = proto_re.match(filename)
31 if not m:
32 return filename
33 return '$(GENDIR)/' + m.group(1) + '.pb.cc $(GENDIR)/' + m.group(1) + '.grpc.pb.cc'
Nicolas "Pixel" Noble010f1e72015-04-23 02:23:49 +020034
Craig Tiller841c8802015-09-10 13:06:37 -070035 sources_that_need_openssl = set()
36 sources_that_don_t_need_openssl = set()
Craig Tiller78222f72016-05-10 09:55:38 -070037
38 # warnings we'd like, but that dont exist in all compilers
39 PREFERRED_WARNINGS=['shadow', 'extra-semi']
40 CHECK_WARNINGS=PREFERRED_WARNINGS + ['no-shift-negative-value']
41
42 def warning_var(fmt, warning):
43 return fmt % warning.replace('-', '_').upper()
44
45 def neg_warning(warning):
46 if warning[0:3] == 'no-':
47 return warning[3:]
48 else:
49 return 'no-' + warning
Craig Tiller38b99e92016-09-15 16:18:09 -070050
51 lang_to_var = {
52 'c': 'CORE',
53 'c++': 'CPP',
54 'csharp': 'CSHARP'
55 }
Craig Tiller841c8802015-09-10 13:06:37 -070056 %>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080057
Craig Tiller96b49552015-01-21 16:29:01 -080058
Craig Tiller71a86042016-01-15 14:59:58 -080059 comma := ,
60
61
Craig Tiller841c8802015-09-10 13:06:37 -070062 # Basic platform detection
63 HOST_SYSTEM = $(shell uname | cut -f 1 -d_)
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +010064 SYSTEM ?= $(HOST_SYSTEM)
Craig Tiller841c8802015-09-10 13:06:37 -070065 ifeq ($(SYSTEM),MSYS)
66 SYSTEM = MINGW32
67 endif
68 ifeq ($(SYSTEM),MINGW64)
69 SYSTEM = MINGW32
70 endif
Craig Tiller96b49552015-01-21 16:29:01 -080071
72
Nicolas "Pixel" Noble6dad9b02015-09-23 18:32:26 +020073 MAKEFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
Craig Tiller841c8802015-09-10 13:06:37 -070074 ifndef BUILDDIR
Nicolas "Pixel" Noble42b4c282015-09-17 23:57:08 +020075 BUILDDIR_ABSOLUTE = $(patsubst %/,%,$(dir $(MAKEFILE_PATH)))
76 else
77 BUILDDIR_ABSOLUTE = $(abspath $(BUILDDIR))
Craig Tiller841c8802015-09-10 13:06:37 -070078 endif
Craig Tiller61b910f2015-02-15 10:54:07 -080079
Craig Tiller841c8802015-09-10 13:06:37 -070080 HAS_GCC = $(shell which gcc > /dev/null 2> /dev/null && echo true || echo false)
81 HAS_CC = $(shell which cc > /dev/null 2> /dev/null && echo true || echo false)
82 HAS_CLANG = $(shell which clang > /dev/null 2> /dev/null && echo true || echo false)
Nicolas Noblef8681182015-03-18 14:25:44 -070083
Craig Tiller841c8802015-09-10 13:06:37 -070084 ifeq ($(HAS_CC),true)
85 DEFAULT_CC = cc
86 DEFAULT_CXX = c++
87 else
88 ifeq ($(HAS_GCC),true)
89 DEFAULT_CC = gcc
90 DEFAULT_CXX = g++
91 else
92 ifeq ($(HAS_CLANG),true)
93 DEFAULT_CC = clang
94 DEFAULT_CXX = clang++
95 else
96 DEFAULT_CC = no_c_compiler
97 DEFAULT_CXX = no_c++_compiler
98 endif
99 endif
100 endif
Nicolas Noblef8681182015-03-18 14:25:44 -0700101
102
Nicolas "Pixel" Noble42b4c282015-09-17 23:57:08 +0200103 BINDIR = $(BUILDDIR_ABSOLUTE)/bins
104 OBJDIR = $(BUILDDIR_ABSOLUTE)/objs
105 LIBDIR = $(BUILDDIR_ABSOLUTE)/libs
106 GENDIR = $(BUILDDIR_ABSOLUTE)/gens
Craig Tiller61b910f2015-02-15 10:54:07 -0800107
Craig Tiller841c8802015-09-10 13:06:37 -0700108 # Configurations
ctiller8cfebb92015-01-06 15:02:12 -0800109
Craig Tillera0f85172016-01-20 15:56:06 -0800110 % for name, args in configs.iteritems():
111 VALID_CONFIG_${name} = 1
112 % if args.get('compile_the_world', False):
113 REQUIRE_CUSTOM_LIBRARIES_${name} = 1
114 % endif
Craig Tilleraff3d502016-01-20 15:59:31 -0800115 % for tool, default in [('CC', 'CC'), ('CXX', 'CXX'), ('LD', 'CC'), ('LDXX', 'CXX')]:
Craig Tillera0f85172016-01-20 15:56:06 -0800116 ${tool}_${name} = ${args.get(tool, '$(DEFAULT_%s)' % default)}
117 % endfor
118 % for arg in ['CFLAGS', 'CXXFLAGS', 'CPPFLAGS', 'LDFLAGS', 'DEFINES']:
119 % if args.get(arg, None) is not None:
120 ${arg}_${name} = ${args.get(arg)}
121 % endif
122 % endfor
ctiller8cfebb92015-01-06 15:02:12 -0800123
Craig Tillera0f85172016-01-20 15:56:06 -0800124 % endfor
Craig Tiller699ba212015-01-13 17:02:20 -0800125
Nicolas Noble047b7272015-01-16 13:55:05 -0800126
Craig Tiller841c8802015-09-10 13:06:37 -0700127 # General settings.
128 # You may want to change these depending on your system.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800129
Craig Tiller841c8802015-09-10 13:06:37 -0700130 prefix ?= /usr/local
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800131
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100132 PROTOC ?= protoc
133 DTRACE ?= dtrace
Craig Tiller841c8802015-09-10 13:06:37 -0700134 CONFIG ?= opt
Nicolas "Pixel" Noblefba36bc2016-01-27 03:24:03 +0100135 # Doing X ?= Y is the same as:
136 # ifeq ($(origin X), undefined)
137 # X = Y
138 # endif
139 # but some variables, such as CC, CXX, LD or AR, have defaults.
140 # So instead of using ?= on them, we need to check their origin.
141 # See:
142 # https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html
143 # https://www.gnu.org/software/make/manual/html_node/Flavors.html#index-_003f_003d
144 # https://www.gnu.org/software/make/manual/html_node/Origin-Function.html
145 ifeq ($(origin CC), default)
146 CC = $(CC_$(CONFIG))
147 endif
148 ifeq ($(origin CXX), default)
149 CXX = $(CXX_$(CONFIG))
150 endif
151 ifeq ($(origin LD), default)
152 LD = $(LD_$(CONFIG))
153 endif
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100154 LDXX ?= $(LDXX_$(CONFIG))
Craig Tiller841c8802015-09-10 13:06:37 -0700155 ifeq ($(SYSTEM),Linux)
Nicolas "Pixel" Noble6e72dae2016-02-03 04:23:08 +0100156 ifeq ($(origin AR), default)
157 AR = ar rcs
158 endif
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100159 STRIP ?= strip --strip-unneeded
Craig Tiller841c8802015-09-10 13:06:37 -0700160 else
161 ifeq ($(SYSTEM),Darwin)
Nicolas "Pixel" Noble6e72dae2016-02-03 04:23:08 +0100162 ifeq ($(origin AR), default)
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100163 AR = libtool -no_warning_for_no_symbols -o
Nicolas "Pixel" Noble6e72dae2016-02-03 04:23:08 +0100164 endif
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100165 STRIP ?= strip -x
Craig Tiller841c8802015-09-10 13:06:37 -0700166 else
Mario Emmenlauer1643c042016-12-12 23:12:47 +0100167 ifeq ($(SYSTEM),MINGW32)
168 ifeq ($(origin AR), default)
169 AR = ar rcs
170 endif
171 STRIP ?= strip --strip-unneeded
172 else
Nicolas "Pixel" Noble6e72dae2016-02-03 04:23:08 +0100173 ifeq ($(origin AR), default)
174 AR = ar rcs
175 endif
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100176 STRIP ?= strip
Craig Tiller841c8802015-09-10 13:06:37 -0700177 endif
178 endif
Mario Emmenlauer1643c042016-12-12 23:12:47 +0100179 endif
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100180 INSTALL ?= install
181 RM ?= rm -f
182 PKG_CONFIG ?= pkg-config
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800183
Craig Tiller841c8802015-09-10 13:06:37 -0700184 ifndef VALID_CONFIG_$(CONFIG)
185 $(error Invalid CONFIG value '$(CONFIG)')
186 endif
yangg102e4fe2015-01-06 16:02:50 -0800187
Craig Tiller841c8802015-09-10 13:06:37 -0700188 ifeq ($(SYSTEM),Linux)
189 TMPOUT = /dev/null
190 else
191 TMPOUT = `mktemp /tmp/test-out-XXXXXX`
192 endif
Nicolas Noble047b7272015-01-16 13:55:05 -0800193
Craig Tiller78222f72016-05-10 09:55:38 -0700194 %for warning in CHECK_WARNINGS:
195 ${warning_var('CHECK_%s_WORKS_CMD', warning)} = $(CC) -std=c99 -Werror -W${warning} -o $(TMPOUT) -c test/build/${warning}.c
196 ${warning_var('HAS_WORKING_%s', warning)} = $(shell $(${warning_var('CHECK_%s_WORKS_CMD', warning)}) 2> /dev/null && echo true || echo false)
197 ifeq ($(${warning_var('HAS_WORKING_%s', warning)}),true)
198 ${warning_var('W_%s', warning)}=-W${warning}
199 ${warning_var('NO_W_%s', warning)}=-W${neg_warning(warning)}
Craig Tiller804b8552016-02-23 16:50:24 -0800200 endif
Craig Tiller78222f72016-05-10 09:55:38 -0700201 %endfor
Craig Tiller16872b82016-01-25 10:55:20 -0800202
Craig Tiller841c8802015-09-10 13:06:37 -0700203 # The HOST compiler settings are used to compile the protoc plugins.
204 # In most cases, you won't have to change anything, but if you are
205 # cross-compiling, you can override these variables from GNU make's
206 # command line: make CC=cross-gcc HOST_CC=gcc
Nicolas Noble047b7272015-01-16 13:55:05 -0800207
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100208 HOST_CC ?= $(CC)
209 HOST_CXX ?= $(CXX)
210 HOST_LD ?= $(LD)
211 HOST_LDXX ?= $(LDXX)
nnoble72309c62014-12-12 11:42:26 -0800212
Craig Tiller78222f72016-05-10 09:55:38 -0700213 CFLAGS += -std=c99 -Wsign-conversion -Wconversion ${' '.join(warning_var('$(W_%s)', warning) for warning in PREFERRED_WARNINGS)}
Craig Tiller841c8802015-09-10 13:06:37 -0700214 CXXFLAGS += -std=c++11
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700215 ifeq ($(SYSTEM),Darwin)
216 CXXFLAGS += -stdlib=libc++
217 endif
ncteisenf9d7c272017-11-06 20:32:57 -0800218 % for arg in ['CFLAGS', 'CXXFLAGS', 'CPPFLAGS', 'COREFLAGS', 'LDFLAGS', 'DEFINES']:
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +0100219 % if defaults.get('global', []).get(arg, None) is not None:
220 ${arg} += ${defaults.get('global').get(arg)}
221 % endif
222 % endfor
Nicolas Noblef8681182015-03-18 14:25:44 -0700223
Craig Tiller841c8802015-09-10 13:06:37 -0700224 CPPFLAGS += $(CPPFLAGS_$(CONFIG))
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800225 CFLAGS += $(CFLAGS_$(CONFIG))
226 CXXFLAGS += $(CXXFLAGS_$(CONFIG))
Craig Tiller841c8802015-09-10 13:06:37 -0700227 DEFINES += $(DEFINES_$(CONFIG)) INSTALL_PREFIX=\"$(prefix)\"
228 LDFLAGS += $(LDFLAGS_$(CONFIG))
Nicolas "Pixel" Noble482d7612015-07-16 23:43:30 +0200229
Craig Tiller841c8802015-09-10 13:06:37 -0700230 ifneq ($(SYSTEM),MINGW32)
231 PIC_CPPFLAGS = -fPIC
232 CPPFLAGS += -fPIC
233 LDFLAGS += -fPIC
234 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800235
Craig Tiller841c8802015-09-10 13:06:37 -0700236 INCLUDES = . include $(GENDIR)
237 LDFLAGS += -Llibs/$(CONFIG)
Nicolas "Pixel" Noble3adab742015-06-02 00:33:06 +0200238
Craig Tiller841c8802015-09-10 13:06:37 -0700239 ifeq ($(SYSTEM),Darwin)
240 ifneq ($(wildcard /usr/local/ssl/include),)
241 INCLUDES += /usr/local/ssl/include
242 endif
243 ifneq ($(wildcard /opt/local/include),)
244 INCLUDES += /opt/local/include
245 endif
246 ifneq ($(wildcard /usr/local/include),)
247 INCLUDES += /usr/local/include
248 endif
249 LIBS = m z
250 ifneq ($(wildcard /usr/local/ssl/lib),)
251 LDFLAGS += -L/usr/local/ssl/lib
252 endif
253 ifneq ($(wildcard /opt/local/lib),)
254 LDFLAGS += -L/opt/local/lib
255 endif
256 ifneq ($(wildcard /usr/local/lib),)
257 LDFLAGS += -L/usr/local/lib
258 endif
259 endif
Nicolas Noblef8681182015-03-18 14:25:44 -0700260
Craig Tiller841c8802015-09-10 13:06:37 -0700261 ifeq ($(SYSTEM),Linux)
Craig Tiller1b1e2382016-02-03 07:33:56 -0800262 LIBS = dl rt m pthread
Craig Tiller841c8802015-09-10 13:06:37 -0700263 LDFLAGS += -pthread
264 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800265
Craig Tiller841c8802015-09-10 13:06:37 -0700266 ifeq ($(SYSTEM),MINGW32)
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100267 LIBS = m pthread ws2_32
Craig Tiller841c8802015-09-10 13:06:37 -0700268 LDFLAGS += -pthread
269 endif
Nicolas Noblef8681182015-03-18 14:25:44 -0700270
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700271 #
272 # The steps for cross-compiling are as follows:
273 # First, clone and make install of grpc using the native compilers for the host.
274 # Also, install protoc (e.g., from a package like apt-get)
275 # Then clone a fresh grpc for the actual cross-compiled build
276 # Set the environment variable GRPC_CROSS_COMPILE to true
277 # Set CC, CXX, LD, LDXX, AR, and STRIP to the cross-compiling binaries
278 # Also set PROTOBUF_CONFIG_OPTS to indicate cross-compilation to protobuf (e.g.,
279 # PROTOBUF_CONFIG_OPTS="--host=arm-linux --with-protoc=/usr/local/bin/protoc" )
280 # Set HAS_PKG_CONFIG=false
281 # To build tests, go to third_party/gflags and follow its ccmake instructions
282 # Make sure that you enable building shared libraries and set your prefix to
283 # something useful like /usr/local/cross
284 # You will also need to set GRPC_CROSS_LDOPTS and GRPC_CROSS_AROPTS to hold
285 # additional required arguments for LD and AR (examples below)
286 # Then you can do a make from the cross-compiling fresh clone!
287 #
288 ifeq ($(GRPC_CROSS_COMPILE),true)
289 LDFLAGS += $(GRPC_CROSS_LDOPTS) # e.g. -L/usr/local/lib -L/usr/local/cross/lib
290 AROPTS = $(GRPC_CROSS_AROPTS) # e.g., rc --target=elf32-little
291 USE_BUILT_PROTOC = false
292 endif
293
Mahak Mukhifb059a22017-04-18 14:40:00 -0700294 GTEST_LIB = -Ithird_party/googletest/googletest/include -Ithird_party/googletest/googletest third_party/googletest/googletest/src/gtest-all.cc -Ithird_party/googletest/googlemock/include -Ithird_party/googletest/googlemock third_party/googletest/googlemock/src/gmock-all.cc
Craig Tiller841c8802015-09-10 13:06:37 -0700295 GTEST_LIB += -lgflags
296 ifeq ($(V),1)
297 E = @:
298 Q =
299 else
300 E = @echo
301 Q = @
302 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800303
Craig Tiller38b99e92016-09-15 16:18:09 -0700304 CORE_VERSION = ${settings.core_version}
305 CPP_VERSION = ${settings.cpp_version}
306 CSHARP_VERSION = ${settings.csharp_version}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800307
Craig Tiller841c8802015-09-10 13:06:37 -0700308 CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
309 CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800310
Craig Tiller841c8802015-09-10 13:06:37 -0700311 LDFLAGS += $(ARCH_FLAGS)
312 LDLIBS += $(addprefix -l, $(LIBS))
313 LDLIBSXX += $(addprefix -l, $(LIBSXX))
nnoble72309c62014-12-12 11:42:26 -0800314
murgatroid99c36f6ea2016-10-03 09:24:09 -0700315
316 % for arg in ['CFLAGS', 'CXXFLAGS', 'CPPFLAGS', 'LDFLAGS', 'DEFINES', 'LDLIBS']:
317 ${arg} += $(EXTRA_${arg})
318 % endfor
319
Craig Tiller841c8802015-09-10 13:06:37 -0700320 HOST_CPPFLAGS = $(CPPFLAGS)
321 HOST_CFLAGS = $(CFLAGS)
322 HOST_CXXFLAGS = $(CXXFLAGS)
323 HOST_LDFLAGS = $(LDFLAGS)
324 HOST_LDLIBS = $(LDLIBS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800325
Craig Tiller841c8802015-09-10 13:06:37 -0700326 # These are automatically computed variables.
327 # There shouldn't be any need to change anything from now on.
nnoble69ac39f2014-12-12 15:43:38 -0800328
Craig Tiller841c8802015-09-10 13:06:37 -0700329 -include cache.mk
murgatroid9924e2f4a2015-06-29 11:12:01 -0700330
Craig Tiller841c8802015-09-10 13:06:37 -0700331 CACHE_MK =
murgatroid99aa521572015-07-10 14:49:12 -0700332
Craig Tiller841c8802015-09-10 13:06:37 -0700333 HAS_PKG_CONFIG ?= $(shell command -v $(PKG_CONFIG) >/dev/null 2>&1 && echo true || echo false)
murgatroid99aa521572015-07-10 14:49:12 -0700334
Craig Tiller841c8802015-09-10 13:06:37 -0700335 ifeq ($(HAS_PKG_CONFIG), true)
336 CACHE_MK += HAS_PKG_CONFIG = true,
337 endif
nnoble69ac39f2014-12-12 15:43:38 -0800338
Craig Tiller38b99e92016-09-15 16:18:09 -0700339 CORE_PC_TEMPLATE = prefix=$(prefix),\
Craig Tiller841c8802015-09-10 13:06:37 -0700340 exec_prefix=${'\$${prefix}'},\
341 includedir=${'\$${prefix}'}/include,\
342 libdir=${'\$${exec_prefix}'}/lib,\
343 ,\
344 Name: $(PC_NAME),\
345 Description: $(PC_DESCRIPTION),\
Craig Tiller38b99e92016-09-15 16:18:09 -0700346 Version: $(CORE_VERSION),\
347 Cflags: -I${'\$${includedir}'} $(PC_CFLAGS),\
348 Requires.private: $(PC_REQUIRES_PRIVATE),\
349 Libs: -L${'\$${libdir}'} $(PC_LIB),\
350 Libs.private: $(PC_LIBS_PRIVATE)
351
352 CPP_PC_TEMPLATE = prefix=$(prefix),\
353 exec_prefix=${'\$${prefix}'},\
354 includedir=${'\$${prefix}'}/include,\
355 libdir=${'\$${exec_prefix}'}/lib,\
356 ,\
357 Name: $(PC_NAME),\
358 Description: $(PC_DESCRIPTION),\
359 Version: $(CPP_VERSION),\
360 Cflags: -I${'\$${includedir}'} $(PC_CFLAGS),\
361 Requires.private: $(PC_REQUIRES_PRIVATE),\
362 Libs: -L${'\$${libdir}'} $(PC_LIB),\
363 Libs.private: $(PC_LIBS_PRIVATE)
364
365 CSHARP_PC_TEMPLATE = prefix=$(prefix),\
366 exec_prefix=${'\$${prefix}'},\
367 includedir=${'\$${prefix}'}/include,\
368 libdir=${'\$${exec_prefix}'}/lib,\
369 ,\
370 Name: $(PC_NAME),\
371 Description: $(PC_DESCRIPTION),\
372 Version: $(CSHARP_VERSION),\
Craig Tiller841c8802015-09-10 13:06:37 -0700373 Cflags: -I${'\$${includedir}'} $(PC_CFLAGS),\
374 Requires.private: $(PC_REQUIRES_PRIVATE),\
375 Libs: -L${'\$${libdir}'} $(PC_LIB),\
376 Libs.private: $(PC_LIBS_PRIVATE)
murgatroid998faab232015-06-30 17:24:21 -0700377
Craig Tiller841c8802015-09-10 13:06:37 -0700378 ifeq ($(SYSTEM),MINGW32)
Mario Emmenlauer121d2892016-12-12 23:49:27 +0100379 EXECUTABLE_SUFFIX = .exe
Craig Tiller38b99e92016-09-15 16:18:09 -0700380 SHARED_EXT_CORE = dll
381 SHARED_EXT_CPP = dll
382 SHARED_EXT_CSHARP = dll
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100383 SHARED_PREFIX =
Craig Tiller27f70842016-09-15 16:21:54 -0700384 SHARED_VERSION_CORE = -${settings.core_version.major}
385 SHARED_VERSION_CPP = -${settings.cpp_version.major}
386 SHARED_VERSION_CSHARP = -${settings.csharp_version.major}
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100387 else ifeq ($(SYSTEM),Darwin)
Yuchen Zeng6694bb02017-01-23 17:09:51 -0800388 EXECUTABLE_SUFFIX =
Craig Tiller38b99e92016-09-15 16:18:09 -0700389 SHARED_EXT_CORE = dylib
390 SHARED_EXT_CPP = dylib
391 SHARED_EXT_CSHARP = dylib
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100392 SHARED_PREFIX = lib
Craig Tiller27f70842016-09-15 16:21:54 -0700393 SHARED_VERSION_CORE =
394 SHARED_VERSION_CPP =
395 SHARED_VERSION_CSHARP =
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100396 else
Yuchen Zeng6694bb02017-01-23 17:09:51 -0800397 EXECUTABLE_SUFFIX =
Craig Tiller38b99e92016-09-15 16:18:09 -0700398 SHARED_EXT_CORE = so.$(CORE_VERSION)
399 SHARED_EXT_CPP = so.$(CPP_VERSION)
400 SHARED_EXT_CSHARP = so.$(CSHARP_VERSION)
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100401 SHARED_PREFIX = lib
Craig Tiller27f70842016-09-15 16:21:54 -0700402 SHARED_VERSION_CORE =
403 SHARED_VERSION_CPP =
404 SHARED_VERSION_CSHARP =
Craig Tiller841c8802015-09-10 13:06:37 -0700405 endif
nnoble5b7f32a2014-12-22 08:12:44 -0800406
Craig Tiller841c8802015-09-10 13:06:37 -0700407 ifeq ($(wildcard .git),)
408 IS_GIT_FOLDER = false
409 else
410 IS_GIT_FOLDER = true
411 endif
nnoble69ac39f2014-12-12 15:43:38 -0800412
Craig Tiller841c8802015-09-10 13:06:37 -0700413 ifeq ($(HAS_PKG_CONFIG),true)
414 OPENSSL_ALPN_CHECK_CMD = $(PKG_CONFIG) --atleast-version=1.0.2 openssl
415 OPENSSL_NPN_CHECK_CMD = $(PKG_CONFIG) --atleast-version=1.0.1 openssl
416 ZLIB_CHECK_CMD = $(PKG_CONFIG) --exists zlib
Yuchen Zengd4df55e2016-08-15 16:41:18 -0700417 PROTOBUF_CHECK_CMD = $(PKG_CONFIG) --atleast-version=3.0.0 protobuf
Yuchen Zengf8b6d6f2017-06-02 15:36:25 -0700418 CARES_CHECK_CMD = $(PKG_CONFIG) --atleast-version=1.11.0 libcares
Craig Tiller841c8802015-09-10 13:06:37 -0700419 else # HAS_PKG_CONFIG
murgatroid9924e2f4a2015-06-29 11:12:01 -0700420
Craig Tiller841c8802015-09-10 13:06:37 -0700421 ifeq ($(SYSTEM),MINGW32)
422 OPENSSL_LIBS = ssl32 eay32
423 else
424 OPENSSL_LIBS = ssl crypto
425 endif
Nicolas Noblef8681182015-03-18 14:25:44 -0700426
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +0100427 OPENSSL_ALPN_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/openssl-alpn.c $(addprefix -l, $(OPENSSL_LIBS)) $(LDFLAGS)
428 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 -0800429 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 +0100430 ZLIB_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/zlib.c -lz $(LDFLAGS)
431 PROTOBUF_CHECK_CMD = $(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $(TMPOUT) test/build/protobuf.cc -lprotobuf $(LDFLAGS)
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700432 CARES_CHECK_CMD = $(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $(TMPOUT) test/build/c-ares.c -lcares $(LDFLAGS)
Craig Tiller297fafa2015-01-15 15:46:39 -0800433
Craig Tiller841c8802015-09-10 13:06:37 -0700434 endif # HAS_PKG_CONFIG
murgatroid9924e2f4a2015-06-29 11:12:01 -0700435
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +0100436 PERFTOOLS_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/perftools.c -lprofiler $(LDFLAGS)
murgatroid996d9e4012015-07-08 10:22:45 -0700437
Craig Tiller841c8802015-09-10 13:06:37 -0700438 PROTOC_CHECK_CMD = which protoc > /dev/null
439 PROTOC_CHECK_VERSION_CMD = protoc --version | grep -q libprotoc.3
440 DTRACE_CHECK_CMD = which dtrace > /dev/null
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +0100441 SYSTEMTAP_HEADERS_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/systemtap.c $(LDFLAGS)
murgatroid9924e2f4a2015-06-29 11:12:01 -0700442
Craig Tiller841c8802015-09-10 13:06:37 -0700443 ifndef REQUIRE_CUSTOM_LIBRARIES_$(CONFIG)
444 HAS_SYSTEM_PERFTOOLS ?= $(shell $(PERFTOOLS_CHECK_CMD) 2> /dev/null && echo true || echo false)
445 ifeq ($(HAS_SYSTEM_PERFTOOLS),true)
446 DEFINES += GRPC_HAVE_PERFTOOLS
447 LIBS += profiler
448 CACHE_MK += HAS_SYSTEM_PERFTOOLS = true,
449 endif
450 endif
nnoble69ac39f2014-12-12 15:43:38 -0800451
Craig Tiller841c8802015-09-10 13:06:37 -0700452 HAS_SYSTEM_PROTOBUF_VERIFY = $(shell $(PROTOBUF_CHECK_CMD) 2> /dev/null && echo true || echo false)
453 ifndef REQUIRE_CUSTOM_LIBRARIES_$(CONFIG)
454 HAS_SYSTEM_OPENSSL_ALPN ?= $(shell $(OPENSSL_ALPN_CHECK_CMD) 2> /dev/null && echo true || echo false)
455 ifeq ($(HAS_SYSTEM_OPENSSL_ALPN),true)
456 HAS_SYSTEM_OPENSSL_NPN = true
457 CACHE_MK += HAS_SYSTEM_OPENSSL_ALPN = true,
458 else
459 HAS_SYSTEM_OPENSSL_NPN ?= $(shell $(OPENSSL_NPN_CHECK_CMD) 2> /dev/null && echo true || echo false)
460 endif
461 ifeq ($(HAS_SYSTEM_OPENSSL_NPN),true)
462 CACHE_MK += HAS_SYSTEM_OPENSSL_NPN = true,
463 endif
464 HAS_SYSTEM_ZLIB ?= $(shell $(ZLIB_CHECK_CMD) 2> /dev/null && echo true || echo false)
465 ifeq ($(HAS_SYSTEM_ZLIB),true)
466 CACHE_MK += HAS_SYSTEM_ZLIB = true,
467 endif
468 HAS_SYSTEM_PROTOBUF ?= $(HAS_SYSTEM_PROTOBUF_VERIFY)
469 ifeq ($(HAS_SYSTEM_PROTOBUF),true)
470 CACHE_MK += HAS_SYSTEM_PROTOBUF = true,
471 endif
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700472 HAS_SYSTEM_CARES ?= $(shell $(CARES_CHECK_CMD) 2> /dev/null && echo true || echo false)
473 ifeq ($(HAS_SYSTEM_CARES),true)
474 CACHE_MK += HAS_SYSTEM_CARES = true,
475 endif
Craig Tiller841c8802015-09-10 13:06:37 -0700476 else
477 # override system libraries if the config requires a custom compiled library
478 HAS_SYSTEM_OPENSSL_ALPN = false
479 HAS_SYSTEM_OPENSSL_NPN = false
480 HAS_SYSTEM_ZLIB = false
481 HAS_SYSTEM_PROTOBUF = false
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700482 HAS_SYSTEM_CARES = false
Craig Tiller841c8802015-09-10 13:06:37 -0700483 endif
nnoble69ac39f2014-12-12 15:43:38 -0800484
Craig Tiller841c8802015-09-10 13:06:37 -0700485 HAS_PROTOC ?= $(shell $(PROTOC_CHECK_CMD) 2> /dev/null && echo true || echo false)
486 ifeq ($(HAS_PROTOC),true)
487 CACHE_MK += HAS_PROTOC = true,
488 HAS_VALID_PROTOC ?= $(shell $(PROTOC_CHECK_VERSION_CMD) 2> /dev/null && echo true || echo false)
489 ifeq ($(HAS_VALID_PROTOC),true)
490 CACHE_MK += HAS_VALID_PROTOC = true,
491 endif
492 else
493 HAS_VALID_PROTOC = false
494 endif
Nicolas Noble53830622015-02-12 16:56:38 -0800495
Craig Tiller841c8802015-09-10 13:06:37 -0700496 # Check for Systemtap (https://sourceware.org/systemtap/), first by making sure <sys/sdt.h> is present
497 # in the system and secondly by checking for the "dtrace" binary (on Linux, this is part of the Systemtap
498 # distribution. It's part of the base system on BSD/Solaris machines).
499 ifndef HAS_SYSTEMTAP
500 HAS_SYSTEMTAP_HEADERS = $(shell $(SYSTEMTAP_HEADERS_CHECK_CMD) 2> /dev/null && echo true || echo false)
501 HAS_DTRACE = $(shell $(DTRACE_CHECK_CMD) 2> /dev/null && echo true || echo false)
502 HAS_SYSTEMTAP = false
503 ifeq ($(HAS_SYSTEMTAP_HEADERS),true)
504 ifeq ($(HAS_DTRACE),true)
505 HAS_SYSTEMTAP = true
506 endif
507 endif
508 endif
David Garcia Quintas611b7362015-04-27 15:49:31 -0700509
Craig Tiller841c8802015-09-10 13:06:37 -0700510 ifeq ($(HAS_SYSTEMTAP),true)
511 CACHE_MK += HAS_SYSTEMTAP = true,
512 endif
nnoble69ac39f2014-12-12 15:43:38 -0800513
Craig Tiller841c8802015-09-10 13:06:37 -0700514 # Note that for testing purposes, one can do:
515 # make HAS_EMBEDDED_OPENSSL_ALPN=false
516 # to emulate the fact we do not have OpenSSL in the third_party folder.
Craig Tillerb79c1e12016-02-23 10:00:58 -0800517 ifneq ($(wildcard third_party/${openssl_fallback.extraction_dir}/libssl.a),)
518 HAS_EMBEDDED_OPENSSL_ALPN = third_party/${openssl_fallback.extraction_dir}
519 else ifeq ($(wildcard third_party/boringssl/include/openssl/ssl.h),)
Craig Tiller841c8802015-09-10 13:06:37 -0700520 HAS_EMBEDDED_OPENSSL_ALPN = false
521 else
Craig Tillerb79c1e12016-02-23 10:00:58 -0800522 CAN_COMPILE_EMBEDDED_OPENSSL ?= $(shell $(BORINGSSL_COMPILE_CHECK_CMD) 2> /dev/null && echo true || echo false)
523 HAS_EMBEDDED_OPENSSL_ALPN = $(CAN_COMPILE_EMBEDDED_OPENSSL)
Craig Tiller841c8802015-09-10 13:06:37 -0700524 endif
nnoble69ac39f2014-12-12 15:43:38 -0800525
Craig Tiller841c8802015-09-10 13:06:37 -0700526 ifeq ($(wildcard third_party/zlib/zlib.h),)
527 HAS_EMBEDDED_ZLIB = false
528 else
529 HAS_EMBEDDED_ZLIB = true
530 endif
nnoble69ac39f2014-12-12 15:43:38 -0800531
Craig Tiller841c8802015-09-10 13:06:37 -0700532 ifeq ($(wildcard third_party/protobuf/src/google/protobuf/descriptor.pb.h),)
533 HAS_EMBEDDED_PROTOBUF = false
534 ifneq ($(HAS_VALID_PROTOC),true)
535 NO_PROTOC = true
536 endif
537 else
538 HAS_EMBEDDED_PROTOBUF = true
539 endif
Nicolas Noble53830622015-02-12 16:56:38 -0800540
Yuchen Zeng6694bb02017-01-23 17:09:51 -0800541 ifeq ($(wildcard third_party/cares/cares/ares.h),)
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700542 HAS_EMBEDDED_CARES = false
543 else
544 HAS_EMBEDDED_CARES = true
545 endif
546
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100547 PC_REQUIRES_GRPC =
Craig Tiller841c8802015-09-10 13:06:37 -0700548 PC_LIBS_GRPC =
murgatroid998faab232015-06-30 17:24:21 -0700549
Craig Tiller841c8802015-09-10 13:06:37 -0700550 ifeq ($(HAS_SYSTEM_ZLIB),false)
Craig Tiller3dca23a2016-01-21 11:44:55 -0800551 ifeq ($(HAS_EMBEDDED_ZLIB), true)
552 EMBED_ZLIB ?= true
Craig Tiller841c8802015-09-10 13:06:37 -0700553 else
554 DEP_MISSING += zlib
Craig Tiller3dca23a2016-01-21 11:44:55 -0800555 EMBED_ZLIB ?= broken
Craig Tiller841c8802015-09-10 13:06:37 -0700556 endif
557 else
Craig Tiller3dca23a2016-01-21 11:44:55 -0800558 EMBED_ZLIB ?= false
559 endif
560
561 ifeq ($(EMBED_ZLIB),true)
562 ZLIB_DEP = $(LIBDIR)/$(CONFIG)/libz.a
563 ZLIB_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libz.a
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +0100564 ZLIB_MERGE_OBJS = $(LIBZ_OBJS)
Craig Tiller3dca23a2016-01-21 11:44:55 -0800565 CPPFLAGS += -Ithird_party/zlib
Craig Tiller3dca23a2016-01-21 11:44:55 -0800566 else
Craig Tiller841c8802015-09-10 13:06:37 -0700567 ifeq ($(HAS_PKG_CONFIG),true)
568 CPPFLAGS += $(shell $(PKG_CONFIG) --cflags zlib)
569 LDFLAGS += $(shell $(PKG_CONFIG) --libs-only-L zlib)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800570 LIBS += $(patsubst -l%,%,$(shell $(PKG_CONFIG) --libs-only-l zlib))
Craig Tiller841c8802015-09-10 13:06:37 -0700571 PC_REQUIRES_GRPC += zlib
572 else
573 PC_LIBS_GRPC += -lz
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800574 LIBS += z
Craig Tiller841c8802015-09-10 13:06:37 -0700575 endif
576 endif
nnoble69ac39f2014-12-12 15:43:38 -0800577
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700578 CARES_PKG_CONFIG = false
579
Yuchen Zengb1b21152016-08-12 11:27:30 -0700580 ifeq ($(HAS_SYSTEM_CARES),false)
581 ifeq ($(HAS_EMBEDDED_CARES), true)
582 EMBED_CARES ?= true
583 else
584 DEP_MISSING += cares
585 EMBED_CARES ?= broken
586 endif
587 else
588 EMBED_CARES ?= false
589 endif
590
591 ifeq ($(EMBED_CARES),true)
Yuchen Zeng15141a62016-08-17 18:56:04 -0700592 CARES_DEP = $(LIBDIR)/$(CONFIG)/libares.a
593 CARES_MERGE_OBJS = $(LIBARES_OBJS)
594 CARES_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libares.a
Yuchen Zeng6694bb02017-01-23 17:09:51 -0800595 CPPFLAGS := -Ithird_party/cares -Ithird_party/cares/cares $(CPPFLAGS)
Yuchen Zengb1b21152016-08-12 11:27:30 -0700596 else
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700597 ifeq ($(HAS_PKG_CONFIG),true)
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700598 PC_REQUIRES_GRPC += libcares
599 CPPFLAGS += $(shell $(PKG_CONFIG) --cflags libcares)
Yuchen Zengdf2a7b72016-08-18 14:57:03 -0700600 LDFLAGS += $(shell $(PKG_CONFIG) --libs-only-L libcares)
601 LIBS += $(patsubst -l%,%,$(shell $(PKG_CONFIG) --libs-only-l libcares))
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700602 else
603 PC_LIBS_GRPC += -lcares
Yuchen Zengdf2a7b72016-08-18 14:57:03 -0700604 LIBS += cares
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700605 endif
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700606 endif
607
Craig Tiller841c8802015-09-10 13:06:37 -0700608 OPENSSL_PKG_CONFIG = false
murgatroid99da7a9942015-06-29 14:57:37 -0700609
Craig Tiller841c8802015-09-10 13:06:37 -0700610 PC_REQUIRES_SECURE =
611 PC_LIBS_SECURE =
murgatroid998faab232015-06-30 17:24:21 -0700612
Craig Tiller841c8802015-09-10 13:06:37 -0700613 ifeq ($(HAS_SYSTEM_OPENSSL_ALPN),true)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800614 EMBED_OPENSSL ?= false
615 NO_SECURE ?= false
616 else # HAS_SYSTEM_OPENSSL_ALPN=false
Craig Tillerb79c1e12016-02-23 10:00:58 -0800617 ifneq ($(HAS_EMBEDDED_OPENSSL_ALPN),false)
618 EMBED_OPENSSL ?= $(HAS_EMBEDDED_OPENSSL_ALPN)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800619 NO_SECURE ?= false
620 else # HAS_EMBEDDED_OPENSSL_ALPN=false
621 ifeq ($(HAS_SYSTEM_OPENSSL_NPN),true)
622 EMBED_OPENSSL ?= false
623 NO_SECURE ?= false
624 else
625 NO_SECURE ?= true
626 endif # HAS_SYSTEM_OPENSSL_NPN=true
627 endif # HAS_EMBEDDED_OPENSSL_ALPN
628 endif # HAS_SYSTEM_OPENSSL_ALPN
629
630 OPENSSL_DEP :=
631 OPENSSL_MERGE_LIBS :=
632 ifeq ($(NO_SECURE),false)
633 ifeq ($(EMBED_OPENSSL),true)
634 OPENSSL_DEP += $(LIBDIR)/$(CONFIG)/libboringssl.a
635 OPENSSL_MERGE_LIBS += $(LIBDIR)/$(CONFIG)/libboringssl.a
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +0100636 OPENSSL_MERGE_OBJS += $(LIBBORINGSSL_OBJS)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800637 # need to prefix these to ensure overriding system libraries
638 CPPFLAGS := -Ithird_party/boringssl/include $(CPPFLAGS)
Craig Tillerb79c1e12016-02-23 10:00:58 -0800639 else ifneq ($(EMBED_OPENSSL),false)
640 OPENSSL_DEP += $(EMBED_OPENSSL)/libssl.a $(EMBED_OPENSSL)/libcrypto.a
641 OPENSSL_MERGE_LIBS += $(EMBED_OPENSSL)/libssl.a $(EMBED_OPENSSL)/libcrypto.a
642 OPENSSL_MERGE_OBJS += $(wildcard $(EMBED_OPENSSL)/grpc_obj/*.o)
643 # need to prefix these to ensure overriding system libraries
644 CPPFLAGS := -I$(EMBED_OPENSSL)/include $(CPPFLAGS)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800645 else # EMBED_OPENSSL=false
Craig Tiller841c8802015-09-10 13:06:37 -0700646 ifeq ($(HAS_PKG_CONFIG),true)
647 OPENSSL_PKG_CONFIG = true
648 PC_REQUIRES_SECURE = openssl
649 CPPFLAGS := $(shell $(PKG_CONFIG) --cflags openssl) $(CPPFLAGS)
650 LDFLAGS_OPENSSL_PKG_CONFIG = $(shell $(PKG_CONFIG) --libs-only-L openssl)
651 ifeq ($(SYSTEM),Linux)
652 ifneq ($(LDFLAGS_OPENSSL_PKG_CONFIG),)
653 LDFLAGS_OPENSSL_PKG_CONFIG += $(shell $(PKG_CONFIG) --libs-only-L openssl | sed s/L/Wl,-rpath,/)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800654 endif # LDFLAGS_OPENSSL_PKG_CONFIG=''
655 endif # System=Linux
Craig Tiller841c8802015-09-10 13:06:37 -0700656 LDFLAGS := $(LDFLAGS_OPENSSL_PKG_CONFIG) $(LDFLAGS)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800657 else # HAS_PKG_CONFIG=false
Craig Tiller841c8802015-09-10 13:06:37 -0700658 LIBS_SECURE = $(OPENSSL_LIBS)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800659 endif # HAS_PKG_CONFIG
660 ifeq ($(HAS_SYSTEM_OPENSSL_NPN),true)
661 CPPFLAGS += -DTSI_OPENSSL_ALPN_SUPPORT=0
662 LIBS_SECURE = $(OPENSSL_LIBS)
663 endif # HAS_SYSTEM_OPENSSL_NPN
Craig Tiller841c8802015-09-10 13:06:37 -0700664 PC_LIBS_SECURE = $(addprefix -l, $(LIBS_SECURE))
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800665 endif # EMBED_OPENSSL
666 endif # NO_SECURE
nnoble69ac39f2014-12-12 15:43:38 -0800667
Craig Tiller841c8802015-09-10 13:06:37 -0700668 ifeq ($(OPENSSL_PKG_CONFIG),true)
669 LDLIBS_SECURE += $(shell $(PKG_CONFIG) --libs-only-l openssl)
670 else
671 LDLIBS_SECURE += $(addprefix -l, $(LIBS_SECURE))
672 endif
nnoble5b7f32a2014-12-22 08:12:44 -0800673
Craig Tiller841c8802015-09-10 13:06:37 -0700674 # grpc .pc file
675 PC_NAME = gRPC
Craig Tillerda179ce2016-02-09 12:01:53 -0800676 PC_DESCRIPTION = high performance general RPC framework
677 PC_CFLAGS =
678 PC_REQUIRES_PRIVATE = $(PC_REQUIRES_GRPC) $(PC_REQUIRES_SECURE)
Craig Tiller841c8802015-09-10 13:06:37 -0700679 PC_LIBS_PRIVATE = $(PC_LIBS_GRPC) $(PC_LIBS_SECURE)
680 PC_LIB = -lgrpc
Craig Tiller38b99e92016-09-15 16:18:09 -0700681 GRPC_PC_FILE := $(CORE_PC_TEMPLATE)
murgatroid998faab232015-06-30 17:24:21 -0700682
Craig Tiller4a67be42016-02-09 12:40:32 -0800683 # grpc_unsecure .pc file
Craig Tiller841c8802015-09-10 13:06:37 -0700684 PC_NAME = gRPC unsecure
Craig Tillerda179ce2016-02-09 12:01:53 -0800685 PC_DESCRIPTION = high performance general RPC framework without SSL
686 PC_CFLAGS =
687 PC_REQUIRES_PRIVATE = $(PC_REQUIRES_GRPC)
Craig Tiller841c8802015-09-10 13:06:37 -0700688 PC_LIBS_PRIVATE = $(PC_LIBS_GRPC)
689 PC_LIB = -lgrpc
Craig Tiller38b99e92016-09-15 16:18:09 -0700690 GRPC_UNSECURE_PC_FILE := $(CORE_PC_TEMPLATE)
murgatroid998faab232015-06-30 17:24:21 -0700691
Craig Tiller841c8802015-09-10 13:06:37 -0700692 PROTOBUF_PKG_CONFIG = false
murgatroid99da7a9942015-06-29 14:57:37 -0700693
Craig Tiller841c8802015-09-10 13:06:37 -0700694 PC_REQUIRES_GRPCXX =
695 PC_LIBS_GRPCXX =
murgatroid998faab232015-06-30 17:24:21 -0700696
Mahak Mukhifb059a22017-04-18 14:40:00 -0700697 CPPFLAGS := -Ithird_party/googletest/googletest/include -Ithird_party/googletest/googlemock/include $(CPPFLAGS)
Craig Tiller16f6dac2015-08-24 17:00:04 -0700698
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700699 PROTOC_PLUGINS_ALL =\
700 % for tgt in targets:
701 % if tgt.build == 'protoc':
702 $(BINDIR)/$(CONFIG)/${tgt.name}\
703 % endif
704 % endfor
705
706 PROTOC_PLUGINS_DIR = $(BINDIR)/$(CONFIG)
707
Craig Tiller841c8802015-09-10 13:06:37 -0700708 ifeq ($(HAS_SYSTEM_PROTOBUF),true)
709 ifeq ($(HAS_PKG_CONFIG),true)
710 PROTOBUF_PKG_CONFIG = true
711 PC_REQUIRES_GRPCXX = protobuf
712 CPPFLAGS := $(shell $(PKG_CONFIG) --cflags protobuf) $(CPPFLAGS)
713 LDFLAGS_PROTOBUF_PKG_CONFIG = $(shell $(PKG_CONFIG) --libs-only-L protobuf)
714 ifeq ($(SYSTEM),Linux)
715 ifneq ($(LDFLAGS_PROTOBUF_PKG_CONFIG),)
716 LDFLAGS_PROTOBUF_PKG_CONFIG += $(shell $(PKG_CONFIG) --libs-only-L protobuf | sed s/L/Wl,-rpath,/)
717 endif
718 endif
719 else
720 PC_LIBS_GRPCXX = -lprotobuf
721 endif
Nicolas "Pixel" Noblef7fbdd42016-07-25 20:31:22 +0200722 PROTOC_PLUGINS = $(PROTOC_PLUGINS_ALL)
Craig Tiller841c8802015-09-10 13:06:37 -0700723 else
724 ifeq ($(HAS_EMBEDDED_PROTOBUF),true)
725 PROTOBUF_DEP = $(LIBDIR)/$(CONFIG)/protobuf/libprotobuf.a
726 CPPFLAGS := -Ithird_party/protobuf/src $(CPPFLAGS)
727 LDFLAGS := -L$(LIBDIR)/$(CONFIG)/protobuf $(LDFLAGS)
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700728 ifneq ($(USE_BUILT_PROTOC),false)
Craig Tiller841c8802015-09-10 13:06:37 -0700729 PROTOC = $(BINDIR)/$(CONFIG)/protobuf/protoc
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700730 PROTOC_PLUGINS = $(PROTOC_PLUGINS_ALL)
731 else
732 PROTOC_PLUGINS =
733 PROTOC_PLUGINS_DIR = $(prefix)/bin
734 endif
Craig Tiller841c8802015-09-10 13:06:37 -0700735 else
736 NO_PROTOBUF = true
737 endif
738 endif
Nicolas Noble53830622015-02-12 16:56:38 -0800739
Craig Tiller841c8802015-09-10 13:06:37 -0700740 LIBS_PROTOBUF = protobuf
741 LIBS_PROTOC = protoc protobuf
Nicolas Noble53830622015-02-12 16:56:38 -0800742
Craig Tiller841c8802015-09-10 13:06:37 -0700743 HOST_LDLIBS_PROTOC += $(addprefix -l, $(LIBS_PROTOC))
Nicolas Noble53830622015-02-12 16:56:38 -0800744
Craig Tiller841c8802015-09-10 13:06:37 -0700745 ifeq ($(PROTOBUF_PKG_CONFIG),true)
746 LDLIBS_PROTOBUF += $(shell $(PKG_CONFIG) --libs-only-l protobuf)
747 else
748 LDLIBS_PROTOBUF += $(addprefix -l, $(LIBS_PROTOBUF))
749 endif
murgatroid9924e2f4a2015-06-29 11:12:01 -0700750
Craig Tiller841c8802015-09-10 13:06:37 -0700751 # grpc++ .pc file
752 PC_NAME = gRPC++
753 PC_DESCRIPTION = C++ wrapper for gRPC
754 PC_CFLAGS =
755 PC_REQUIRES_PRIVATE = grpc $(PC_REQUIRES_GRPCXX)
756 PC_LIBS_PRIVATE = $(PC_LIBS_GRPCXX)
757 PC_LIB = -lgrpc++
Craig Tiller38b99e92016-09-15 16:18:09 -0700758 GRPCXX_PC_FILE := $(CPP_PC_TEMPLATE)
murgatroid998faab232015-06-30 17:24:21 -0700759
Craig Tiller841c8802015-09-10 13:06:37 -0700760 # grpc++_unsecure .pc file
761 PC_NAME = gRPC++ unsecure
762 PC_DESCRIPTION = C++ wrapper for gRPC without SSL
763 PC_CFLAGS =
764 PC_REQUIRES_PRIVATE = grpc_unsecure $(PC_REQUIRES_GRPCXX)
765 PC_LIBS_PRIVATE = $(PC_LIBS_GRPCXX)
766 PC_LIB = -lgrpc++
Craig Tiller38b99e92016-09-15 16:18:09 -0700767 GRPCXX_UNSECURE_PC_FILE := $(CPP_PC_TEMPLATE)
murgatroid998faab232015-06-30 17:24:21 -0700768
Craig Tiller841c8802015-09-10 13:06:37 -0700769 ifeq ($(MAKECMDGOALS),clean)
770 NO_DEPS = true
771 endif
nnoble69ac39f2014-12-12 15:43:38 -0800772
Craig Tiller841c8802015-09-10 13:06:37 -0700773 .SECONDARY = %.pb.h %.pb.cc
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800774
Craig Tiller841c8802015-09-10 13:06:37 -0700775 ifeq ($(DEP_MISSING),)
776 all: static shared plugins\
777 % for tgt in targets:
778 % if tgt.build == 'all':
779 $(BINDIR)/$(CONFIG)/${tgt.name}\
780 % endif
781 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800782
Craig Tiller841c8802015-09-10 13:06:37 -0700783 dep_error:
784 @echo "You shouldn't see this message - all of your dependencies are correct."
785 else
786 all: dep_error git_update stop
nnoble69ac39f2014-12-12 15:43:38 -0800787
Craig Tiller841c8802015-09-10 13:06:37 -0700788 dep_error:
789 @echo
790 @echo "DEPENDENCY ERROR"
791 @echo
792 @echo "You are missing system dependencies that are essential to build grpc,"
793 @echo "and the third_party directory doesn't have them:"
794 @echo
795 @echo " $(DEP_MISSING)"
796 @echo
797 @echo "Installing the development packages for your system will solve"
798 @echo "this issue. Please consult INSTALL to get more information."
799 @echo
800 @echo "If you need information about why these tests failed, run:"
801 @echo
802 @echo " make run_dep_checks"
803 @echo
804 endif
nnoble69ac39f2014-12-12 15:43:38 -0800805
Craig Tiller841c8802015-09-10 13:06:37 -0700806 git_update:
807 ifeq ($(IS_GIT_FOLDER),true)
808 @echo "Additionally, since you are in a git clone, you can download the"
809 @echo "missing dependencies in third_party by running the following command:"
810 @echo
811 @echo " git submodule update --init"
812 @echo
813 endif
nnoble69ac39f2014-12-12 15:43:38 -0800814
Craig Tiller841c8802015-09-10 13:06:37 -0700815 openssl_dep_error: openssl_dep_message git_update stop
nnoble69ac39f2014-12-12 15:43:38 -0800816
Craig Tiller841c8802015-09-10 13:06:37 -0700817 protobuf_dep_error: protobuf_dep_message git_update stop
Nicolas Noble53830622015-02-12 16:56:38 -0800818
Craig Tiller841c8802015-09-10 13:06:37 -0700819 protoc_dep_error: protoc_dep_message git_update stop
Nicolas Noble53830622015-02-12 16:56:38 -0800820
Craig Tiller841c8802015-09-10 13:06:37 -0700821 openssl_dep_message:
822 @echo
823 @echo "DEPENDENCY ERROR"
824 @echo
Craig Tillerb79c1e12016-02-23 10:00:58 -0800825 @echo "The target you are trying to run requires an OpenSSL implementation."
826 @echo "Your system doesn't have one, and either the third_party directory"
827 @echo "doesn't have it, or your compiler can't build BoringSSL."
Craig Tiller841c8802015-09-10 13:06:37 -0700828 @echo
829 @echo "Please consult INSTALL to get more information."
830 @echo
831 @echo "If you need information about why these tests failed, run:"
832 @echo
833 @echo " make run_dep_checks"
834 @echo
nnoble69ac39f2014-12-12 15:43:38 -0800835
Craig Tiller841c8802015-09-10 13:06:37 -0700836 protobuf_dep_message:
837 @echo
838 @echo "DEPENDENCY ERROR"
839 @echo
840 @echo "The target you are trying to run requires protobuf 3.0.0+"
841 @echo "Your system doesn't have it, and neither does the third_party directory."
842 @echo
843 @echo "Please consult INSTALL to get more information."
844 @echo
845 @echo "If you need information about why these tests failed, run:"
846 @echo
847 @echo " make run_dep_checks"
848 @echo
Nicolas Noble53830622015-02-12 16:56:38 -0800849
Craig Tiller841c8802015-09-10 13:06:37 -0700850 protoc_dep_message:
851 @echo
852 @echo "DEPENDENCY ERROR"
853 @echo
854 @echo "The target you are trying to run requires protobuf-compiler 3.0.0+"
855 @echo "Your system doesn't have it, and neither does the third_party directory."
856 @echo
857 @echo "Please consult INSTALL to get more information."
858 @echo
859 @echo "If you need information about why these tests failed, run:"
860 @echo
861 @echo " make run_dep_checks"
862 @echo
Nicolas Noble53830622015-02-12 16:56:38 -0800863
Craig Tiller841c8802015-09-10 13:06:37 -0700864 systemtap_dep_error:
865 @echo
866 @echo "DEPENDENCY ERROR"
867 @echo
868 @echo "Under the '$(CONFIG)' configutation, the target you are trying "
869 @echo "to build requires systemtap 2.7+ (on Linux) or dtrace (on other "
870 @echo "platforms such as Solaris and *BSD). "
871 @echo
872 @echo "Please consult INSTALL to get more information."
873 @echo
David Garcia Quintas8954e902015-04-29 09:46:33 -0700874
Craig Tiller841c8802015-09-10 13:06:37 -0700875 stop:
876 @false
nnoble69ac39f2014-12-12 15:43:38 -0800877
Craig Tiller841c8802015-09-10 13:06:37 -0700878 % for tgt in targets:
879 ${tgt.name}: $(BINDIR)/$(CONFIG)/${tgt.name}
880 % endfor
ctiller09cb6d52014-12-19 17:38:22 -0800881
Craig Tiller841c8802015-09-10 13:06:37 -0700882 run_dep_checks:
883 $(OPENSSL_ALPN_CHECK_CMD) || true
884 $(OPENSSL_NPN_CHECK_CMD) || true
885 $(ZLIB_CHECK_CMD) || true
886 $(PERFTOOLS_CHECK_CMD) || true
887 $(PROTOBUF_CHECK_CMD) || true
888 $(PROTOC_CHECK_VERSION_CMD) || true
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700889 $(CARES_CHECK_CMD) || true
nnoble69ac39f2014-12-12 15:43:38 -0800890
Craig Tiller841c8802015-09-10 13:06:37 -0700891 third_party/protobuf/configure:
892 $(E) "[AUTOGEN] Preparing protobuf"
893 $(Q)(cd third_party/protobuf ; autoreconf -f -i -Wall,no-obsolete)
Nicolas Noble53830622015-02-12 16:56:38 -0800894
Craig Tiller841c8802015-09-10 13:06:37 -0700895 $(LIBDIR)/$(CONFIG)/protobuf/libprotobuf.a: third_party/protobuf/configure
896 $(E) "[MAKE] Building protobuf"
Vijay Pai52338fb2018-01-11 00:25:00 -0800897 $(Q)mkdir -p $(LIBDIR)/$(CONFIG)/protobuf
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700898 $(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 -0700899 $(Q)$(MAKE) -C third_party/protobuf clean
900 $(Q)$(MAKE) -C third_party/protobuf
Craig Tiller841c8802015-09-10 13:06:37 -0700901 $(Q)mkdir -p $(BINDIR)/$(CONFIG)/protobuf
902 $(Q)cp third_party/protobuf/src/.libs/libprotoc.a $(LIBDIR)/$(CONFIG)/protobuf
903 $(Q)cp third_party/protobuf/src/.libs/libprotobuf.a $(LIBDIR)/$(CONFIG)/protobuf
904 $(Q)cp third_party/protobuf/src/protoc $(BINDIR)/$(CONFIG)/protobuf
Nicolas Noble53830622015-02-12 16:56:38 -0800905
Craig Tiller841c8802015-09-10 13:06:37 -0700906 static: static_c static_cxx
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800907
Craig Tillereda85c62016-07-01 12:45:19 -0700908 static_c: pc_c pc_c_unsecure cache.mk \
Craig Tiller841c8802015-09-10 13:06:37 -0700909 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100910 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700911 % if lib.build == 'all' and lib.language == 'c' and not lib.get('external_deps', None):
912 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
913 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100914 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700915 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800916
917
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100918 static_cxx: pc_cxx pc_cxx_unsecure cache.mk \
Craig Tiller841c8802015-09-10 13:06:37 -0700919 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100920 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700921 % if lib.build == 'all' and lib.language == 'c++':
922 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
923 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100924 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700925 % endfor
nnoble29e1d292014-12-01 10:27:40 -0800926
927
Craig Tiller841c8802015-09-10 13:06:37 -0700928 shared: shared_c shared_cxx
nnoble29e1d292014-12-01 10:27:40 -0800929
Craig Tillereda85c62016-07-01 12:45:19 -0700930 shared_c: pc_c pc_c_unsecure cache.mk\
Craig Tiller841c8802015-09-10 13:06:37 -0700931 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100932 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700933 % if lib.build == 'all' and lib.language == 'c' and not lib.get('external_deps', None):
Craig Tiller27f70842016-09-15 16:21:54 -0700934 $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)\
Craig Tiller841c8802015-09-10 13:06:37 -0700935 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100936 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700937 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800938
Craig Tiller841c8802015-09-10 13:06:37 -0700939 shared_cxx: pc_cxx pc_cxx_unsecure cache.mk\
940 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100941 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700942 % if lib.build == 'all' and lib.language == 'c++':
Craig Tiller27f70842016-09-15 16:21:54 -0700943 $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)\
Craig Tiller841c8802015-09-10 13:06:37 -0700944 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100945 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700946 % endfor
nnoble29e1d292014-12-01 10:27:40 -0800947
948
Craig Tiller841c8802015-09-10 13:06:37 -0700949 shared_csharp: shared_c \
950 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100951 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700952 % if lib.build == 'all' and lib.language == 'csharp':
Craig Tiller27f70842016-09-15 16:21:54 -0700953 $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP)\
Craig Tiller841c8802015-09-10 13:06:37 -0700954 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100955 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700956 % endfor
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -0800957
Craig Tiller841c8802015-09-10 13:06:37 -0700958 grpc_csharp_ext: shared_csharp
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -0800959
Craig Tiller841c8802015-09-10 13:06:37 -0700960 plugins: $(PROTOC_PLUGINS)
Nicolas "Pixel" Noble522d7122015-02-19 01:28:02 +0100961
Craig Tiller841c8802015-09-10 13:06:37 -0700962 privatelibs: privatelibs_c privatelibs_cxx
nnoble29e1d292014-12-01 10:27:40 -0800963
Craig Tiller841c8802015-09-10 13:06:37 -0700964 privatelibs_c: \
965 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100966 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800967 % 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 -0700968 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
969 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100970 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700971 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800972
Craig Tiller841c8802015-09-10 13:06:37 -0700973 pc_c: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc
murgatroid998faab232015-06-30 17:24:21 -0700974
Craig Tiller841c8802015-09-10 13:06:37 -0700975 pc_c_unsecure: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc
murgatroid998faab232015-06-30 17:24:21 -0700976
Craig Tiller841c8802015-09-10 13:06:37 -0700977 pc_cxx: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc
murgatroid998faab232015-06-30 17:24:21 -0700978
Craig Tiller841c8802015-09-10 13:06:37 -0700979 pc_cxx_unsecure: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800980
vjpai20410922016-06-15 09:21:42 -0700981 ifeq ($(EMBED_OPENSSL),true)
Craig Tiller841c8802015-09-10 13:06:37 -0700982 privatelibs_cxx: \
983 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100984 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700985 % if lib.build == 'private' and lib.language == 'c++' and not lib.get('external_deps', None):
986 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
987 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100988 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700989 % endfor
Craig Tillereda85c62016-07-01 12:45:19 -0700990
vjpai20410922016-06-15 09:21:42 -0700991 else
992 privatelibs_cxx: \
993 % for lib in libs:
994 % if 'Makefile' in lib.get('build_system', ['Makefile']):
995 % if lib.build == 'private' and lib.language == 'c++' and not lib.get('external_deps', None) and not lib.boringssl:
996 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
997 % endif
998 % endif
999 % endfor
Craig Tillereda85c62016-07-01 12:45:19 -07001000
vjpai20410922016-06-15 09:21:42 -07001001 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001002
1003
Craig Tillereda85c62016-07-01 12:45:19 -07001004 buildtests: buildtests_c buildtests_cxx
nnoble29e1d292014-12-01 10:27:40 -08001005
Craig Tiller3824b6e2015-12-09 11:19:59 -08001006 buildtests_c: privatelibs_c <%text>\</%text>
Craig Tiller841c8802015-09-10 13:06:37 -07001007 % for tgt in targets:
1008 % if tgt.build == 'test' and not tgt.language == 'c++' and not tgt.get('external_deps', None):
Craig Tiller3824b6e2015-12-09 11:19:59 -08001009 $(BINDIR)/$(CONFIG)/${tgt.name} <%text>\</%text>
Craig Tiller841c8802015-09-10 13:06:37 -07001010 % endif
1011 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001012
1013
vjpai20410922016-06-15 09:21:42 -07001014 ifeq ($(EMBED_OPENSSL),true)
Craig Tillereda85c62016-07-01 12:45:19 -07001015 buildtests_cxx: privatelibs_cxx <%text>\</%text>
Craig Tiller841c8802015-09-10 13:06:37 -07001016 % for tgt in targets:
1017 % if tgt.build == 'test' and tgt.language == 'c++' and not tgt.get('external_deps', None):
Craig Tiller3824b6e2015-12-09 11:19:59 -08001018 $(BINDIR)/$(CONFIG)/${tgt.name} <%text>\</%text>
Craig Tiller841c8802015-09-10 13:06:37 -07001019 % endif
1020 % endfor
Craig Tillereda85c62016-07-01 12:45:19 -07001021
vjpai20410922016-06-15 09:21:42 -07001022 else
Craig Tillereda85c62016-07-01 12:45:19 -07001023 buildtests_cxx: privatelibs_cxx <%text>\</%text>
vjpai20410922016-06-15 09:21:42 -07001024 % for tgt in targets:
1025 % if tgt.build == 'test' and tgt.language == 'c++' and not tgt.get('external_deps', None) and not tgt.boringssl:
1026 $(BINDIR)/$(CONFIG)/${tgt.name} <%text>\</%text>
1027 % endif
1028 % endfor
Craig Tillereda85c62016-07-01 12:45:19 -07001029
vjpai20410922016-06-15 09:21:42 -07001030 endif
nnoble29e1d292014-12-01 10:27:40 -08001031
1032
Craig Tillereda85c62016-07-01 12:45:19 -07001033 test: test_c test_cxx
nnoble29e1d292014-12-01 10:27:40 -08001034
Craig Tillereda85c62016-07-01 12:45:19 -07001035 flaky_test: flaky_test_c flaky_test_cxx
Nicolas "Pixel" Noble4251d562015-05-22 19:43:39 +02001036
Craig Tiller841c8802015-09-10 13:06:37 -07001037 test_c: buildtests_c
1038 % for tgt in targets:
1039 % 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):
1040 $(E) "[RUN] Testing ${tgt.name}"
1041 $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 )
1042 % endif
1043 % endfor
Nicolas "Pixel" Noble4251d562015-05-22 19:43:39 +02001044
1045
Craig Tiller841c8802015-09-10 13:06:37 -07001046 flaky_test_c: buildtests_c
1047 % for tgt in targets:
1048 % 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):
1049 $(E) "[RUN] Testing ${tgt.name}"
1050 $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 )
1051 % endif
1052 % endfor
nnoble29e1d292014-12-01 10:27:40 -08001053
1054
Craig Tillereda85c62016-07-01 12:45:19 -07001055 test_cxx: buildtests_cxx
Craig Tiller841c8802015-09-10 13:06:37 -07001056 % for tgt in targets:
1057 % 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):
1058 $(E) "[RUN] Testing ${tgt.name}"
1059 $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 )
1060 % endif
1061 % endfor
Nicolas "Pixel" Noble4251d562015-05-22 19:43:39 +02001062
1063
Craig Tiller841c8802015-09-10 13:06:37 -07001064 flaky_test_cxx: buildtests_cxx
1065 % for tgt in targets:
1066 % 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):
1067 $(E) "[RUN] Testing ${tgt.name}"
1068 $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 )
1069 % endif
1070 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001071
1072
Craig Tiller841c8802015-09-10 13:06:37 -07001073 test_python: static_c
1074 $(E) "[RUN] Testing python code"
1075 $(Q) tools/run_tests/run_tests.py -lpython -c$(CONFIG)
Nicolas "Pixel" Noble051a28f2015-03-17 22:54:54 +01001076
1077
Craig Tiller841c8802015-09-10 13:06:37 -07001078 tools: tools_c tools_cxx
Craig Tiller7552f0f2015-06-19 17:46:20 -07001079
1080
Craig Tiller841c8802015-09-10 13:06:37 -07001081 tools_c: privatelibs_c\
1082 % for tgt in targets:
1083 % if tgt.build == 'tool' and not tgt.language=='c++':
1084 $(BINDIR)/$(CONFIG)/${tgt.name}\
1085 % endif
1086 % endfor
Craig Tiller7552f0f2015-06-19 17:46:20 -07001087
1088
Craig Tiller841c8802015-09-10 13:06:37 -07001089 tools_cxx: privatelibs_cxx\
1090 % for tgt in targets:
1091 % if tgt.build == 'tool' and tgt.language=='c++':
1092 $(BINDIR)/$(CONFIG)/${tgt.name}\
1093 % endif
1094 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001095
1096
Craig Tiller841c8802015-09-10 13:06:37 -07001097 buildbenchmarks: privatelibs\
1098 % for tgt in targets:
1099 % if tgt.build == 'benchmark':
1100 $(BINDIR)/$(CONFIG)/${tgt.name}\
1101 % endif
1102 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001103
1104
Craig Tiller841c8802015-09-10 13:06:37 -07001105 benchmarks: buildbenchmarks
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001106
Craig Tiller841c8802015-09-10 13:06:37 -07001107 strip: strip-static strip-shared
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001108
Craig Tiller841c8802015-09-10 13:06:37 -07001109 strip-static: strip-static_c strip-static_cxx
nnoble20e2e3f2014-12-16 15:37:57 -08001110
Craig Tiller841c8802015-09-10 13:06:37 -07001111 strip-shared: strip-shared_c strip-shared_cxx
nnoble20e2e3f2014-12-16 15:37:57 -08001112
Nicolas Noble047b7272015-01-16 13:55:05 -08001113
Craig Tiller841c8802015-09-10 13:06:37 -07001114 # TODO(nnoble): the strip target is stripping in-place, instead
1115 # of copying files in a temporary folder.
1116 # This prevents proper debugging after running make install.
Nicolas Noble047b7272015-01-16 13:55:05 -08001117
Craig Tiller841c8802015-09-10 13:06:37 -07001118 strip-static_c: static_c
1119 ifeq ($(CONFIG),opt)
1120 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001121 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001122 % if lib.language == "c":
1123 % if lib.build == "all":
1124 % if not lib.get('external_deps', None):
1125 $(E) "[STRIP] Stripping lib${lib.name}.a"
1126 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a
1127 % endif
1128 % endif
1129 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001130 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001131 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001132 endif
nnoble85a49262014-12-08 18:14:03 -08001133
Craig Tiller841c8802015-09-10 13:06:37 -07001134 strip-static_cxx: static_cxx
1135 ifeq ($(CONFIG),opt)
1136 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001137 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001138 % if lib.language == "c++":
1139 % if lib.build == "all":
1140 $(E) "[STRIP] Stripping lib${lib.name}.a"
1141 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a
1142 % endif
1143 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001144 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001145 % endfor
1146 endif
Nicolas "Pixel" Noble4ef9b862015-08-14 19:35:24 +02001147
Craig Tiller841c8802015-09-10 13:06:37 -07001148 strip-shared_c: shared_c
1149 ifeq ($(CONFIG),opt)
1150 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001151 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001152 % if lib.language == "c":
1153 % if lib.build == "all":
1154 % if not lib.get('external_deps', None):
Craig Tiller27f70842016-09-15 16:21:54 -07001155 $(E) "[STRIP] Stripping $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
1156 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
Craig Tiller841c8802015-09-10 13:06:37 -07001157 % endif
1158 % endif
1159 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001160 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001161 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001162 endif
nnoble85a49262014-12-08 18:14:03 -08001163
Craig Tiller841c8802015-09-10 13:06:37 -07001164 strip-shared_cxx: shared_cxx
1165 ifeq ($(CONFIG),opt)
1166 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001167 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001168 % if lib.language == "c++":
1169 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001170 $(E) "[STRIP] Stripping $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
1171 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
Craig Tiller841c8802015-09-10 13:06:37 -07001172 % endif
1173 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001174 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001175 % endfor
1176 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001177
Craig Tiller841c8802015-09-10 13:06:37 -07001178 strip-shared_csharp: shared_csharp
1179 ifeq ($(CONFIG),opt)
1180 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001181 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001182 % if lib.language == "csharp":
1183 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001184 $(E) "[STRIP] Stripping $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP)"
1185 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP)
Craig Tiller841c8802015-09-10 13:06:37 -07001186 % endif
1187 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001188 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001189 % endfor
1190 endif
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -08001191
Craig Tiller841c8802015-09-10 13:06:37 -07001192 cache.mk::
1193 $(E) "[MAKE] Generating $@"
1194 $(Q) echo "$(CACHE_MK)" | tr , '\n' >$@
murgatroid99aa521572015-07-10 14:49:12 -07001195
Craig Tiller841c8802015-09-10 13:06:37 -07001196 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc:
1197 $(E) "[MAKE] Generating $@"
1198 $(Q) mkdir -p $(@D)
1199 $(Q) echo "$(GRPC_PC_FILE)" | tr , '\n' >$@
murgatroid998faab232015-06-30 17:24:21 -07001200
Craig Tiller841c8802015-09-10 13:06:37 -07001201 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc:
1202 $(E) "[MAKE] Generating $@"
1203 $(Q) mkdir -p $(@D)
1204 $(Q) echo "$(GRPC_UNSECURE_PC_FILE)" | tr , '\n' >$@
murgatroid998faab232015-06-30 17:24:21 -07001205
Craig Tiller841c8802015-09-10 13:06:37 -07001206 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc:
1207 $(E) "[MAKE] Generating $@"
1208 $(Q) mkdir -p $(@D)
1209 $(Q) echo "$(GRPCXX_PC_FILE)" | tr , '\n' >$@
murgatroid998faab232015-06-30 17:24:21 -07001210
Craig Tiller841c8802015-09-10 13:06:37 -07001211 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc:
1212 $(E) "[MAKE] Generating $@"
1213 $(Q) mkdir -p $(@D)
1214 $(Q) echo "$(GRPCXX_UNSECURE_PC_FILE)" | tr , '\n' >$@
murgatroid998faab232015-06-30 17:24:21 -07001215
Craig Tiller841c8802015-09-10 13:06:37 -07001216 % for p in protos:
1217 ifeq ($(NO_PROTOC),true)
1218 $(GENDIR)/${p}.pb.cc: protoc_dep_error
1219 $(GENDIR)/${p}.grpc.pb.cc: protoc_dep_error
1220 else
Mahak Mukhifb059a22017-04-18 14:40:00 -07001221 <%
1222 pluginflags=""
1223 %>
1224 % if p in ["src/proto/grpc/testing/compiler_test", "src/proto/grpc/testing/echo"]:
1225 <%
1226 pluginflags="generate_mock_code=true:"
1227 %>
1228 % endif
Craig Tiller1b4e3302015-12-17 16:35:00 -08001229 $(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 -07001230 $(E) "[PROTOC] Generating protobuf CC file from $<"
1231 $(Q) mkdir -p `dirname $@`
David Garcia Quintase68ed6f2016-06-17 12:49:14 -07001232 $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
Nicolas "Pixel" Noble0caebbf2015-04-09 23:08:51 +02001233
Vijay Paie00f2a32017-07-31 01:04:45 -07001234 $(GENDIR)/${p}.grpc.pb.cc: ${p}.proto $(GENDIR)/${p}.pb.cc $(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 -07001235 $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
1236 $(Q) mkdir -p `dirname $@`
Mahak Mukhifb059a22017-04-18 14:40:00 -07001237 $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=${pluginflags}$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
Craig Tiller841c8802015-09-10 13:06:37 -07001238 endif
nnoble72309c62014-12-12 11:42:26 -08001239
Craig Tiller841c8802015-09-10 13:06:37 -07001240 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001241
Craig Tiller841c8802015-09-10 13:06:37 -07001242 ifeq ($(CONFIG),stapprof)
1243 src/core/profiling/stap_timers.c: $(GENDIR)/src/core/profiling/stap_probes.h
1244 ifeq ($(HAS_SYSTEMTAP),true)
1245 $(GENDIR)/src/core/profiling/stap_probes.h: src/core/profiling/stap_probes.d
1246 $(E) "[DTRACE] Compiling $<"
1247 $(Q) mkdir -p `dirname $@`
1248 $(Q) $(DTRACE) -C -h -s $< -o $@
1249 else
1250 $(GENDIR)/src/core/profiling/stap_probes.h: systemtap_dep_error stop
1251 endif
1252 endif
David Garcia Quintas611b7362015-04-27 15:49:31 -07001253
Craig Tiller841c8802015-09-10 13:06:37 -07001254 $(OBJDIR)/$(CONFIG)/%.o : %.c
1255 $(E) "[C] Compiling $<"
1256 $(Q) mkdir -p `dirname $@`
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01001257 $(Q) $(CC) $(CPPFLAGS) $(CFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001258
Craig Tiller841c8802015-09-10 13:06:37 -07001259 $(OBJDIR)/$(CONFIG)/%.o : $(GENDIR)/%.pb.cc
1260 $(E) "[CXX] Compiling $<"
1261 $(Q) mkdir -p `dirname $@`
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01001262 $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001263
Craig Tiller841c8802015-09-10 13:06:37 -07001264 $(OBJDIR)/$(CONFIG)/src/compiler/%.o : src/compiler/%.cc
1265 $(E) "[HOSTCXX] Compiling $<"
1266 $(Q) mkdir -p `dirname $@`
1267 $(Q) $(HOST_CXX) $(HOST_CXXFLAGS) $(HOST_CPPFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
nnoble72309c62014-12-12 11:42:26 -08001268
ncteisenf9d7c272017-11-06 20:32:57 -08001269 $(OBJDIR)/$(CONFIG)/src/core/%.o : src/core/%.cc
1270 $(E) "[CXX] Compiling $<"
1271 $(Q) mkdir -p `dirname $@`
1272 $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(COREFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
1273
1274 $(OBJDIR)/$(CONFIG)/test/core/%.o : test/core/%.cc
1275 $(E) "[CXX] Compiling $<"
1276 $(Q) mkdir -p `dirname $@`
1277 $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(COREFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
1278
Craig Tiller841c8802015-09-10 13:06:37 -07001279 $(OBJDIR)/$(CONFIG)/%.o : %.cc
1280 $(E) "[CXX] Compiling $<"
1281 $(Q) mkdir -p `dirname $@`
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01001282 $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001283
murgatroid99a3c55352016-08-10 13:41:31 -07001284 install: install_c install_cxx install-plugins install-certs
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001285
Craig Tiller841c8802015-09-10 13:06:37 -07001286 install_c: install-headers_c install-static_c install-shared_c
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001287
Craig Tiller841c8802015-09-10 13:06:37 -07001288 install_cxx: install-headers_cxx install-static_cxx install-shared_cxx
nnoble85a49262014-12-08 18:14:03 -08001289
Craig Tiller841c8802015-09-10 13:06:37 -07001290 install_csharp: install-shared_csharp install_c
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -08001291
Craig Tiller841c8802015-09-10 13:06:37 -07001292 install_grpc_csharp_ext: install_csharp
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -08001293
Craig Tiller841c8802015-09-10 13:06:37 -07001294 install-headers: install-headers_c install-headers_cxx
nnoble85a49262014-12-08 18:14:03 -08001295
Craig Tiller841c8802015-09-10 13:06:37 -07001296 install-headers_c:
1297 $(E) "[INSTALL] Installing public C headers"
1298 $(Q) $(foreach h, $(PUBLIC_HEADERS_C), $(INSTALL) -d $(prefix)/$(dir $(h)) && ) exit 0 || exit 1
1299 $(Q) $(foreach h, $(PUBLIC_HEADERS_C), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1
nnoble85a49262014-12-08 18:14:03 -08001300
Craig Tiller841c8802015-09-10 13:06:37 -07001301 install-headers_cxx:
1302 $(E) "[INSTALL] Installing public C++ headers"
1303 $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) -d $(prefix)/$(dir $(h)) && ) exit 0 || exit 1
1304 $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1
nnoble85a49262014-12-08 18:14:03 -08001305
Craig Tiller841c8802015-09-10 13:06:37 -07001306 install-static: install-static_c install-static_cxx
nnoble85a49262014-12-08 18:14:03 -08001307
Craig Tiller841c8802015-09-10 13:06:37 -07001308 install-static_c: static_c strip-static_c install-pkg-config_c
1309 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001310 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001311 % if lib.language == "c":
1312 % if lib.build == "all":
1313 % if not lib.get('external_deps', None):
1314 $(E) "[INSTALL] Installing lib${lib.name}.a"
1315 $(Q) $(INSTALL) -d $(prefix)/lib
1316 $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a $(prefix)/lib/lib${lib.name}.a
1317 % endif
1318 % endif
1319 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001320 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001321 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001322
Craig Tiller841c8802015-09-10 13:06:37 -07001323 install-static_cxx: static_cxx strip-static_cxx install-pkg-config_cxx
1324 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001325 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001326 % if lib.language == "c++":
1327 % if lib.build == "all":
1328 $(E) "[INSTALL] Installing lib${lib.name}.a"
1329 $(Q) $(INSTALL) -d $(prefix)/lib
1330 $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a $(prefix)/lib/lib${lib.name}.a
1331 % endif
1332 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001333 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001334 % endfor
nnoble85a49262014-12-08 18:14:03 -08001335
Craig Tiller841c8802015-09-10 13:06:37 -07001336 <%def name="install_shared(lang_filter)">\
1337 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001338 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001339 % if lib.language == lang_filter:
1340 % if lib.build == "all":
1341 % if not lib.get('external_deps', None):
Craig Tiller27f70842016-09-15 16:21:54 -07001342 $(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 +01001343 $(Q) $(INSTALL) -d $(prefix)/lib
Mario Emmenlauer8e883b22017-01-12 11:45:52 +01001344 $(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 -07001345 ifeq ($(SYSTEM),MINGW32)
Mario Emmenlauer44b2d082017-01-13 12:35:49 +01001346 $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/lib${lib.name}$(SHARED_VERSION_${lang_to_var[lib.language]})-dll.a $(prefix)/lib/lib${lib.name}.a
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +01001347 else ifneq ($(SYSTEM),Darwin)
Craig Tiller27f70842016-09-15 16:21:54 -07001348 $(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}
1349 $(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 -07001350 endif
1351 % endif
1352 % endif
1353 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001354 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001355 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001356 ifneq ($(SYSTEM),MINGW32)
1357 ifneq ($(SYSTEM),Darwin)
1358 $(Q) ldconfig || true
1359 endif
1360 endif
1361 </%def>
nnoble85a49262014-12-08 18:14:03 -08001362
Craig Tiller841c8802015-09-10 13:06:37 -07001363 install-shared_c: shared_c strip-shared_c install-pkg-config_c
1364 ${install_shared("c")}
Nicolas "Pixel" Noble522d7122015-02-19 01:28:02 +01001365
Craig Tiller841c8802015-09-10 13:06:37 -07001366 install-shared_cxx: shared_cxx strip-shared_cxx install-shared_c install-pkg-config_cxx
1367 ${install_shared("c++")}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001368
Craig Tiller841c8802015-09-10 13:06:37 -07001369 install-shared_csharp: shared_csharp strip-shared_csharp
1370 ${install_shared("csharp")}
Nicolas "Pixel" Noble522d7122015-02-19 01:28:02 +01001371
Craig Tiller841c8802015-09-10 13:06:37 -07001372 install-plugins: $(PROTOC_PLUGINS)
Craig Tiller841c8802015-09-10 13:06:37 -07001373 $(E) "[INSTALL] Installing grpc protoc plugins"
1374 % for tgt in targets:
1375 % if tgt.build == 'protoc':
1376 $(Q) $(INSTALL) -d $(prefix)/bin
1377 $(Q) $(INSTALL) $(BINDIR)/$(CONFIG)/${tgt.name} $(prefix)/bin/${tgt.name}
1378 % endif
1379 % endfor
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -08001380
Craig Tillereda85c62016-07-01 12:45:19 -07001381 install-pkg-config_c: pc_c pc_c_unsecure
Craig Tiller841c8802015-09-10 13:06:37 -07001382 $(E) "[INSTALL] Installing C pkg-config files"
1383 $(Q) $(INSTALL) -d $(prefix)/lib/pkgconfig
ncteisenbddedb92017-12-20 13:49:46 -05001384 $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc $(prefix)/lib/pkgconfig/grpc.pc
1385 $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc $(prefix)/lib/pkgconfig/grpc_unsecure.pc
murgatroid998faab232015-06-30 17:24:21 -07001386
Craig Tiller841c8802015-09-10 13:06:37 -07001387 install-pkg-config_cxx: pc_cxx pc_cxx_unsecure
1388 $(E) "[INSTALL] Installing C++ pkg-config files"
1389 $(Q) $(INSTALL) -d $(prefix)/lib/pkgconfig
ncteisenbddedb92017-12-20 13:49:46 -05001390 $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc $(prefix)/lib/pkgconfig/grpc++.pc
1391 $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc $(prefix)/lib/pkgconfig/grpc++_unsecure.pc
murgatroid998faab232015-06-30 17:24:21 -07001392
Craig Tiller841c8802015-09-10 13:06:37 -07001393 install-certs: etc/roots.pem
1394 $(E) "[INSTALL] Installing root certificates"
1395 $(Q) $(INSTALL) -d $(prefix)/share/grpc
1396 $(Q) $(INSTALL) etc/roots.pem $(prefix)/share/grpc/roots.pem
Nicolas "Pixel" Noble161ea232015-02-22 05:48:53 +01001397
Craig Tiller841c8802015-09-10 13:06:37 -07001398 clean:
1399 $(E) "[CLEAN] Cleaning build directories."
1400 $(Q) $(RM) -rf $(OBJDIR) $(LIBDIR) $(BINDIR) $(GENDIR) cache.mk
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001401
1402
Craig Tiller841c8802015-09-10 13:06:37 -07001403 # The various libraries
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001404
Craig Tiller841c8802015-09-10 13:06:37 -07001405 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001406 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001407 ${makelib(lib)}
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001408 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001409 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001410
1411
Craig Tiller841c8802015-09-10 13:06:37 -07001412 # All of the test targets, and protoc plugins
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001413
Craig Tiller841c8802015-09-10 13:06:37 -07001414 % for tgt in targets:
1415 ${maketarget(tgt)}
1416 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001417
Craig Tiller841c8802015-09-10 13:06:37 -07001418 <%def name="makelib(lib)">
1419 LIB${lib.name.upper()}_SRC = \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001420
Craig Tiller841c8802015-09-10 13:06:37 -07001421 % for src in lib.src:
1422 ${proto_to_cc(src)} \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001423
Craig Tiller841c8802015-09-10 13:06:37 -07001424 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001425
Craig Tiller841c8802015-09-10 13:06:37 -07001426 % if "public_headers" in lib:
1427 % if lib.language == "c++":
1428 PUBLIC_HEADERS_CXX += \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001429
Craig Tiller841c8802015-09-10 13:06:37 -07001430 % else:
1431 PUBLIC_HEADERS_C += \\
nnoble85a49262014-12-08 18:14:03 -08001432
Craig Tiller841c8802015-09-10 13:06:37 -07001433 % endif
1434 % for hdr in lib.public_headers:
1435 ${hdr} \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001436
Craig Tiller841c8802015-09-10 13:06:37 -07001437 % endfor
1438 % endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001439
Craig Tiller841c8802015-09-10 13:06:37 -07001440 LIB${lib.name.upper()}_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIB${lib.name.upper()}_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001441
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01001442 % if lib.get('defaults', None):
1443 % for name, value in defaults.get(lib.defaults).iteritems():
1444 $(LIB${lib.name.upper()}_OBJS): ${name} += ${value}
1445 % endfor
Craig Tiller0fe5ee72015-12-22 12:50:36 -08001446 % endif
1447
Craig Tiller841c8802015-09-10 13:06:37 -07001448 ## If the library requires OpenSSL, let's add some restrictions.
1449 % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1450 ifeq ($(NO_SECURE),true)
nnoble69ac39f2014-12-12 15:43:38 -08001451
Craig Tiller841c8802015-09-10 13:06:37 -07001452 # You can't build secure libraries if you don't have OpenSSL.
Nicolas Noble047b7272015-01-16 13:55:05 -08001453
Craig Tiller841c8802015-09-10 13:06:37 -07001454 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001455
Craig Tiller841c8802015-09-10 13:06:37 -07001456 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001457 $(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 -07001458 % endif
nnoble5b7f32a2014-12-22 08:12:44 -08001459
Craig Tiller841c8802015-09-10 13:06:37 -07001460 else
nnoble69ac39f2014-12-12 15:43:38 -08001461
Craig Tiller841c8802015-09-10 13:06:37 -07001462 % if lib.language == 'c++':
1463 ifeq ($(NO_PROTOBUF),true)
Nicolas Noble53830622015-02-12 16:56:38 -08001464
Craig Tiller841c8802015-09-10 13:06:37 -07001465 # 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 -08001466
Craig Tiller841c8802015-09-10 13:06:37 -07001467 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: protobuf_dep_error
Nicolas Noble53830622015-02-12 16:56:38 -08001468
Craig Tiller841c8802015-09-10 13:06:37 -07001469 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001470 $(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 -07001471 % endif
Nicolas Noble53830622015-02-12 16:56:38 -08001472
Craig Tiller841c8802015-09-10 13:06:37 -07001473 else
1474 % endif
Nicolas Noble53830622015-02-12 16:56:38 -08001475
Nicolas "Pixel" Nobleb0367ca2017-03-29 21:53:38 +02001476 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP)\
Craig Tiller841c8802015-09-10 13:06:37 -07001477 ## The else here corresponds to the if secure earlier.
1478 % else:
1479 % if lib.language == 'c++':
1480 ifeq ($(NO_PROTOBUF),true)
Nicolas Noble53830622015-02-12 16:56:38 -08001481
Craig Tiller841c8802015-09-10 13:06:37 -07001482 # 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 -08001483
Craig Tiller841c8802015-09-10 13:06:37 -07001484 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: protobuf_dep_error
Nicolas Noble53830622015-02-12 16:56:38 -08001485
Craig Tiller841c8802015-09-10 13:06:37 -07001486 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001487 $(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 -07001488 % endif
Nicolas Noble53830622015-02-12 16:56:38 -08001489
Craig Tiller841c8802015-09-10 13:06:37 -07001490 else
Nicolas Noble53830622015-02-12 16:56:38 -08001491
Craig Tiller841c8802015-09-10 13:06:37 -07001492 % endif
Yuchen Zeng78f9f942016-08-05 18:21:57 -07001493 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: \
Nicolas "Pixel" Nobled649c212016-01-27 20:27:30 +01001494 % if lib.name != 'z':
1495 $(ZLIB_DEP) \
1496 % endif
Yuchen Zeng15141a62016-08-17 18:56:04 -07001497 % if lib.name != 'ares':
1498 $(CARES_DEP) \
Yuchen Zengf64bf282016-08-11 21:21:32 -07001499 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001500 % endif
1501 % if lib.language == 'c++':
1502 $(PROTOBUF_DEP)\
1503 % endif
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001504 $(LIB${lib.name.upper()}_OBJS) \
1505 % if lib.get('baselib', False):
Craig Tiller1298afd2016-02-09 12:29:17 -08001506 $(LIBGPR_OBJS) \
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001507 $(ZLIB_MERGE_OBJS) \
Yuchen Zeng15141a62016-08-17 18:56:04 -07001508 $(CARES_MERGE_OBJS) \
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001509 % if lib.get('secure', 'check') == True:
1510 $(OPENSSL_MERGE_OBJS) \
1511 % endif
1512 % endif
1513
Craig Tiller841c8802015-09-10 13:06:37 -07001514 $(E) "[AR] Creating $@"
1515 $(Q) mkdir -p `dirname $@`
1516 $(Q) rm -f $(LIBDIR)/$(CONFIG)/lib${lib.name}.a
Vijay Paicc7eb8e2016-07-19 19:03:55 -07001517 $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a $(LIB${lib.name.upper()}_OBJS) \
Craig Tiller841c8802015-09-10 13:06:37 -07001518 % if lib.get('baselib', False):
Craig Tiller1298afd2016-02-09 12:29:17 -08001519 $(LIBGPR_OBJS) \
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001520 $(ZLIB_MERGE_OBJS) \
Yuchen Zeng15141a62016-08-17 18:56:04 -07001521 $(CARES_MERGE_OBJS) \
Craig Tiller841c8802015-09-10 13:06:37 -07001522 % if lib.get('secure', 'check') == True:
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001523 $(OPENSSL_MERGE_OBJS) \
Craig Tiller841c8802015-09-10 13:06:37 -07001524 % endif
1525 % endif
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001526
Craig Tiller841c8802015-09-10 13:06:37 -07001527 ifeq ($(SYSTEM),Darwin)
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001528 $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/lib${lib.name}.a
Craig Tiller841c8802015-09-10 13:06:37 -07001529 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001530
Craig Tiller841c8802015-09-10 13:06:37 -07001531 <%
Nicolas "Pixel" Noble010f1e72015-04-23 02:23:49 +02001532
Craig Tiller841c8802015-09-10 13:06:37 -07001533 if lib.language == 'c++':
1534 ld = '$(LDXX)'
1535 else:
1536 ld = '$(LD)'
nnoble5b7f32a2014-12-22 08:12:44 -08001537
Craig Tiller40c8fba2016-09-15 16:29:09 -07001538 out_mingbase = '$(LIBDIR)/$(CONFIG)/' + lib.name + '$(SHARED_VERSION_' + lang_to_var[lib.language] + ')'
1539 out_libbase = '$(LIBDIR)/$(CONFIG)/lib' + lib.name + '$(SHARED_VERSION_' + lang_to_var[lib.language] + ')'
nnoble5b7f32a2014-12-22 08:12:44 -08001540
Nicolas "Pixel" Noble8087d702017-02-01 02:23:50 +01001541 common = '$(LIB' + lib.name.upper() + '_OBJS)'
nnoble5b7f32a2014-12-22 08:12:44 -08001542
Craig Tillerd7b1bdf2016-11-04 16:20:13 -07001543 link_libs = ''
Yuchen Zeng9b5aa632016-07-26 19:09:56 -07001544 lib_deps = ' $(ZLIB_DEP) $(CARES_DEP)'
Craig Tiller841c8802015-09-10 13:06:37 -07001545 mingw_libs = ''
Yuchen Zeng9b5aa632016-07-26 19:09:56 -07001546 mingw_lib_deps = ' $(ZLIB_DEP) $(CARES_DEP)'
Craig Tiller841c8802015-09-10 13:06:37 -07001547 if lib.language == 'c++':
1548 lib_deps += ' $(PROTOBUF_DEP)'
1549 mingw_lib_deps += ' $(PROTOBUF_DEP)'
Jan Tattermusch324140c2016-01-12 08:54:01 -08001550 if lib.get('deps_linkage', None) == 'static':
1551 for dep in lib.get('deps', []):
1552 lib_archive = '$(LIBDIR)/$(CONFIG)/lib' + dep + '.a'
1553 common = common + ' ' + lib_archive
1554 lib_deps = lib_deps + ' ' + lib_archive
1555 mingw_lib_deps = mingw_lib_deps + ' ' + lib_archive
1556 else:
1557 for dep in lib.get('deps', []):
Craig Tillerd7b1bdf2016-11-04 16:20:13 -07001558 dep_lib = None
1559 for dl in libs:
1560 if dl.name == dep:
1561 dep_lib = dl
1562 assert dep_lib, 'lib %s not found (in %s)' % (dep, lib.name)
1563 link_libs = link_libs + ' -l' + dep
1564 lib_deps = lib_deps + ' $(LIBDIR)/$(CONFIG)/lib' + dep + '.$(SHARED_EXT_' + lang_to_var[dep_lib.language] + ')'
Mario Emmenlauer44b2d082017-01-13 12:35:49 +01001565 mingw_libs = mingw_libs + ' -l' + dep + '$(SHARED_VERSION_' + lang_to_var[dep_lib.language] + ')-dll'
Mario Emmenlauer8e883b22017-01-12 11:45:52 +01001566 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 -08001567
Craig Tiller841c8802015-09-10 13:06:37 -07001568 security = lib.get('secure', 'check')
1569 if security == True:
1570 common = common + ' $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE)'
Yuchen Zeng15141a62016-08-17 18:56:04 -07001571 common = common + ' $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS)'
Nicolas "Pixel" Noblea7c162c2015-07-24 20:21:51 +02001572
Craig Tiller841c8802015-09-10 13:06:37 -07001573 if security in [True, 'check']:
1574 for src in lib.src:
1575 if not proto_re.match(src):
1576 sources_that_need_openssl.add(src)
1577 else:
1578 for src in lib.src:
1579 sources_that_don_t_need_openssl.add(src)
Nicolas "Pixel" Noble061690d2015-03-06 22:58:58 +01001580
Craig Tiller841c8802015-09-10 13:06:37 -07001581 if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1582 lib_deps = lib_deps + ' $(OPENSSL_DEP)'
1583 mingw_lib_deps = mingw_lib_deps + ' $(OPENSSL_DEP)'
Nicolas "Pixel" Nobledda049c2015-02-21 00:39:32 +01001584
Craig Tiller841c8802015-09-10 13:06:37 -07001585 if lib.language == 'c++':
1586 common = common + ' $(LDLIBSXX) $(LDLIBS_PROTOBUF)'
Craig Tiller4bef7ce2016-02-02 08:38:43 -08001587
1588 ldflags = '$(LDFLAGS)'
1589 if lib.get('LDFLAGS', None):
1590 ldflags += ' ' + lib['LDFLAGS']
Nicolas "Pixel" Noble8087d702017-02-01 02:23:50 +01001591
1592 common = common + ' $(LDLIBS)'
Craig Tiller841c8802015-09-10 13:06:37 -07001593 %>
nnoble5b7f32a2014-12-22 08:12:44 -08001594
Craig Tiller841c8802015-09-10 13:06:37 -07001595 % if lib.build == "all":
1596 ifeq ($(SYSTEM),MINGW32)
Craig Tiller38b99e92016-09-15 16:18:09 -07001597 ${out_mingbase}.$(SHARED_EXT_${lang_to_var[lib.language]}): $(LIB${lib.name.upper()}_OBJS) ${mingw_lib_deps}
Craig Tiller841c8802015-09-10 13:06:37 -07001598 $(E) "[LD] Linking $@"
1599 $(Q) mkdir -p `dirname $@`
Mario Emmenlauer294dc2f2016-12-13 00:07:12 +01001600 $(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 -07001601 else
Craig Tiller38b99e92016-09-15 16:18:09 -07001602 ${out_libbase}.$(SHARED_EXT_${lang_to_var[lib.language]}): $(LIB${lib.name.upper()}_OBJS) ${lib_deps}
Craig Tiller841c8802015-09-10 13:06:37 -07001603 $(E) "[LD] Linking $@"
1604 $(Q) mkdir -p `dirname $@`
1605 ifeq ($(SYSTEM),Darwin)
Mario Emmenlauer8e883b22017-01-12 11:45:52 +01001606 $(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 -07001607 else
murgatroid99d166e382017-03-24 10:03:10 -07001608 $(Q) ${ld} ${ldflags} -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,lib${lib.name}.so.${settings.get(lang_to_var[lib.language].lower() + '_version').major} -o ${out_libbase}.$(SHARED_EXT_${lang_to_var[lib.language]}) ${common}${link_libs}
Mario Emmenlauer8e883b22017-01-12 11:45:52 +01001609 $(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}
1610 $(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 -07001611 endif
1612 endif
1613 % endif
1614 % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1615 ## If the lib was secure, we have to close the Makefile's if that tested
1616 ## the presence of OpenSSL.
Nicolas Noble53830622015-02-12 16:56:38 -08001617
Craig Tiller841c8802015-09-10 13:06:37 -07001618 endif
1619 % endif
1620 % if lib.language == 'c++':
1621 ## If the lib was C++, we have to close the Makefile's if that tested
1622 ## the presence of protobuf 3.0.0+
nnoble69ac39f2014-12-12 15:43:38 -08001623
Craig Tiller841c8802015-09-10 13:06:37 -07001624 endif
1625 % endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001626
Craig Tiller841c8802015-09-10 13:06:37 -07001627 % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1628 ifneq ($(NO_SECURE),true)
1629 % endif
1630 ifneq ($(NO_DEPS),true)
1631 -include $(LIB${lib.name.upper()}_OBJS:.o=.dep)
1632 endif
1633 % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1634 endif
1635 % endif
1636 % for src in lib.src:
1637 % if not proto_re.match(src) and any(proto_re.match(src2) for src2 in lib.src):
1638 $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: ${' '.join(proto_to_cc(src2) for src2 in lib.src if proto_re.match(src2))}
1639 % endif
1640 % endfor
1641 </%def>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001642
Craig Tiller841c8802015-09-10 13:06:37 -07001643 <%def name="maketarget(tgt)"><% has_no_sources = not tgt.src %>
1644 % if not has_no_sources:
1645 ${tgt.name.upper()}_SRC = \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001646
Craig Tiller841c8802015-09-10 13:06:37 -07001647 % for src in tgt.src:
1648 ${proto_to_cc(src)} \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001649
Craig Tiller841c8802015-09-10 13:06:37 -07001650 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001651
Craig Tiller841c8802015-09-10 13:06:37 -07001652 ${tgt.name.upper()}_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(${tgt.name.upper()}_SRC))))
1653 % endif
1654 % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
1655 ifeq ($(NO_SECURE),true)
nnoble69ac39f2014-12-12 15:43:38 -08001656
Craig Tiller841c8802015-09-10 13:06:37 -07001657 # You can't build secure targets if you don't have OpenSSL.
Nicolas Noble047b7272015-01-16 13:55:05 -08001658
Craig Tiller841c8802015-09-10 13:06:37 -07001659 $(BINDIR)/$(CONFIG)/${tgt.name}: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001660
Craig Tiller841c8802015-09-10 13:06:37 -07001661 else
nnoble69ac39f2014-12-12 15:43:38 -08001662
Craig Tiller841c8802015-09-10 13:06:37 -07001663 % endif
Craig Tiller0fe5ee72015-12-22 12:50:36 -08001664
1665 % if tgt.boringssl:
1666 # boringssl needs an override to ensure that it does not include
1667 # system openssl headers regardless of other configuration
1668 # we do so here with a target specific variable assignment
Craig Tiller78222f72016-05-10 09:55:38 -07001669 $(${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 -08001670 $(${tgt.name.upper()}_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
1671 $(${tgt.name.upper()}_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
1672 % else:
1673 % endif
1674
Craig Tiller841c8802015-09-10 13:06:37 -07001675 ##
1676 ## We're not trying to add a dependency on building zlib and openssl here,
1677 ## as it's already done in the libraries. We're assuming that the build
1678 ## trickles down, and that a secure target requires a secure version of
1679 ## a library.
1680 ##
1681 ## That simplifies the codegen a bit, but prevents a fully defined Makefile.
1682 ## I can live with that.
1683 ##
1684 % if tgt.build == 'protoc' or tgt.language == 'c++':
Nicolas Noble53830622015-02-12 16:56:38 -08001685
Craig Tiller841c8802015-09-10 13:06:37 -07001686 ifeq ($(NO_PROTOBUF),true)
Nicolas Noble53830622015-02-12 16:56:38 -08001687
Craig Tiller841c8802015-09-10 13:06:37 -07001688 # 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 -08001689
Craig Tiller841c8802015-09-10 13:06:37 -07001690 $(BINDIR)/$(CONFIG)/${tgt.name}: protobuf_dep_error
Nicolas Noble53830622015-02-12 16:56:38 -08001691
Craig Tiller841c8802015-09-10 13:06:37 -07001692 else
Nicolas Noble53830622015-02-12 16:56:38 -08001693
Craig Tiller841c8802015-09-10 13:06:37 -07001694 $(BINDIR)/$(CONFIG)/${tgt.name}: \
1695 % if not has_no_sources:
1696 $(PROTOBUF_DEP) $(${tgt.name.upper()}_OBJS)\
1697 % endif
1698 % else:
1699 $(BINDIR)/$(CONFIG)/${tgt.name}: \
1700 % if not has_no_sources:
1701 $(${tgt.name.upper()}_OBJS)\
1702 % endif
1703 % endif
1704 % for dep in tgt.deps:
1705 $(LIBDIR)/$(CONFIG)/lib${dep}.a\
1706 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001707
Craig Tiller32173c52016-03-17 14:12:45 -07001708 % if tgt.language == "c++" or tgt.boringssl or tgt.build == 'fuzzer':
Craig Tiller841c8802015-09-10 13:06:37 -07001709 ## C++ targets specificies.
1710 % if tgt.build == 'protoc':
1711 $(E) "[HOSTLD] Linking $@"
1712 $(Q) mkdir -p `dirname $@`
1713 $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) \
1714 % if not has_no_sources:
1715 $(${tgt.name.upper()}_OBJS)\
1716 % endif
1717 % else:
1718 $(E) "[LD] Linking $@"
1719 $(Q) mkdir -p `dirname $@`
1720 $(Q) $(LDXX) $(LDFLAGS) \
1721 % if not has_no_sources:
1722 $(${tgt.name.upper()}_OBJS)\
1723 % endif
1724 % endif
1725 % else:
1726 ## C-only targets specificities.
1727 $(E) "[LD] Linking $@"
1728 $(Q) mkdir -p `dirname $@`
1729 $(Q) $(LD) $(LDFLAGS) \
1730 % if not has_no_sources:
1731 $(${tgt.name.upper()}_OBJS)\
1732 % endif
1733 % endif
1734 % for dep in tgt.deps:
1735 $(LIBDIR)/$(CONFIG)/lib${dep}.a\
1736 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001737 % if tgt.language == "c++":
1738 % if tgt.build == 'protoc':
1739 $(HOST_LDLIBSXX) $(HOST_LDLIBS_PROTOC)\
1740 % else:
1741 $(LDLIBSXX) $(LDLIBS_PROTOBUF)\
1742 % endif
1743 % endif
1744 % if tgt.build == 'protoc':
1745 $(HOST_LDLIBS)\
1746 % else:
1747 $(LDLIBS)\
1748 % endif
1749 % if tgt.build == 'protoc':
1750 $(HOST_LDLIBS_PROTOC)\
1751 % elif tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
1752 $(LDLIBS_SECURE)\
1753 % endif
1754 % if tgt.language == 'c++' and tgt.build == 'test':
1755 $(GTEST_LIB)\
1756 % elif tgt.language == 'c++' and tgt.build == 'benchmark':
1757 $(GTEST_LIB)\
1758 % endif
Craig Tiller32173c52016-03-17 14:12:45 -07001759 % if tgt.build == 'fuzzer':
1760 -lFuzzer\
1761 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001762 -o $(BINDIR)/$(CONFIG)/${tgt.name}
1763 % if tgt.build == 'protoc' or tgt.language == 'c++':
Nicolas Noble53830622015-02-12 16:56:38 -08001764
Craig Tiller841c8802015-09-10 13:06:37 -07001765 endif
1766 % endif
1767 % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
nnoble69ac39f2014-12-12 15:43:38 -08001768
Craig Tiller841c8802015-09-10 13:06:37 -07001769 endif
1770 % endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001771
Craig Tiller19f3ea22017-02-17 15:17:05 -08001772 % if tgt.get('defaults', None):
1773 % for name, value in defaults.get(tgt.defaults).iteritems():
1774 $(${tgt.name.upper()}_OBJS): ${name} += ${value}
1775 % endfor
1776 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001777 % for src in tgt.src:
1778 $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: \
1779 % for dep in tgt.deps:
1780 $(LIBDIR)/$(CONFIG)/lib${dep}.a\
1781 % endfor
Craig Tillerf5371ef2015-01-12 16:40:18 -08001782
Craig Tillerab230452016-01-04 08:18:43 -08001783 % if tgt.language == 'c89':
1784 % for src in tgt.src:
Craig Tillerea21ca22016-01-04 12:34:29 -08001785 $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o : ${src}
1786 $(E) "[C] Compiling $<"
1787 $(Q) mkdir -p `dirname $@`
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01001788 $(Q) $(CC) $(CPPFLAGS) $(CFLAGS) -std=c89 -pedantic -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
Craig Tillerab230452016-01-04 08:18:43 -08001789 % endfor
1790 % endif
1791
Craig Tiller841c8802015-09-10 13:06:37 -07001792 % endfor
1793 % if not has_no_sources:
1794 deps_${tgt.name}: $(${tgt.name.upper()}_OBJS:.o=.dep)
1795 % endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001796
Craig Tiller841c8802015-09-10 13:06:37 -07001797 % if not has_no_sources:
1798 % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
1799 ifneq ($(NO_SECURE),true)
1800 % endif
1801 ifneq ($(NO_DEPS),true)
1802 -include $(${tgt.name.upper()}_OBJS:.o=.dep)
1803 endif
1804 % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
1805 endif
1806 % endif
1807 % endif
Nicolas "Pixel" Noble472bb682015-11-03 19:09:01 +01001808 % for src in tgt.src:
1809 % if not proto_re.match(src) and any(proto_re.match(src2) for src2 in tgt.src):
1810 $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: ${' '.join(proto_to_cc(src2) for src2 in tgt.src if proto_re.match(src2))}
1811 % endif
1812 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001813 </%def>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001814
Craig Tiller841c8802015-09-10 13:06:37 -07001815 ifneq ($(OPENSSL_DEP),)
1816 # This is to ensure the embedded OpenSSL is built beforehand, properly
1817 # installing headers to their final destination on the drive. We need this
1818 # otherwise parallel compilation will fail if a source is compiled first.
1819 % for src in sorted(sources_that_need_openssl):
1820 % if src not in sources_that_don_t_need_openssl:
1821 ${src}: $(OPENSSL_DEP)
1822 % endif
1823 % endfor
1824 endif
Nicolas "Pixel" Noble010f1e72015-04-23 02:23:49 +02001825
Craig Tiller841c8802015-09-10 13:06:37 -07001826 .PHONY: all strip tools \
1827 dep_error openssl_dep_error openssl_dep_message git_update stop \
1828 buildtests buildtests_c buildtests_cxx \
1829 test test_c test_cxx \
1830 install install_c install_cxx \
1831 install-headers install-headers_c install-headers_cxx \
1832 install-shared install-shared_c install-shared_cxx \
1833 install-static install-static_c install-static_cxx \
1834 strip strip-shared strip-static \
1835 strip_c strip-shared_c strip-static_c \
1836 strip_cxx strip-shared_cxx strip-static_cxx \
1837 dep_c dep_cxx bins_dep_c bins_dep_cxx \
1838 clean
Craig Tillerb79c1e12016-02-23 10:00:58 -08001839
1840 .PHONY: printvars
1841 printvars:
1842 @$(foreach V,$(sort $(.VARIABLES)), \
1843 $(if $(filter-out environment% default automatic, \
1844 $(origin $V)),$(warning $V=$($V) ($(value $V)))))