blob: 2e3d75d819e3ea719bc8363f52e338eff3fdcf5e [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']
Nicolas "Pixel" Nobled7c6c6e2018-06-26 23:20:26 +020040 CHECK_WARNINGS=PREFERRED_WARNINGS + ['no-shift-negative-value', 'no-unused-but-set-variable', 'no-maybe-uninitialized']
Craig Tiller78222f72016-05-10 09:55:38 -070041
42 def warning_var(fmt, warning):
Nicolas "Pixel" Noblec6ed8232018-06-23 10:22:49 +020043 return fmt % warning.replace('-', '_').replace('+', 'X').upper()
Craig Tiller78222f72016-05-10 09:55:38 -070044
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
Nicolas "Pixel" Nobleb71da612018-06-24 21:56:32 +0200194 CHECK_NO_CXX14_COMPAT_WORKS_CMD = $(CC) -std=c++11 -Werror -Wno-c++14-compat -o $(TMPOUT) -c test/build/no-c++14-compat.cc
195 HAS_WORKING_NO_CXX14_COMPAT = $(shell $(CHECK_NO_CXX14_COMPAT_WORKS_CMD) 2> /dev/null && echo true || echo false)
196 ifeq ($(HAS_WORKING_NO_CXX14_COMPAT),true)
197 W_NO_CXX14_COMPAT=-Wno-c++14-compat
198 endif
199
Craig Tiller78222f72016-05-10 09:55:38 -0700200 %for warning in CHECK_WARNINGS:
201 ${warning_var('CHECK_%s_WORKS_CMD', warning)} = $(CC) -std=c99 -Werror -W${warning} -o $(TMPOUT) -c test/build/${warning}.c
202 ${warning_var('HAS_WORKING_%s', warning)} = $(shell $(${warning_var('CHECK_%s_WORKS_CMD', warning)}) 2> /dev/null && echo true || echo false)
203 ifeq ($(${warning_var('HAS_WORKING_%s', warning)}),true)
204 ${warning_var('W_%s', warning)}=-W${warning}
205 ${warning_var('NO_W_%s', warning)}=-W${neg_warning(warning)}
Craig Tiller804b8552016-02-23 16:50:24 -0800206 endif
Craig Tiller78222f72016-05-10 09:55:38 -0700207 %endfor
Craig Tiller16872b82016-01-25 10:55:20 -0800208
Craig Tiller841c8802015-09-10 13:06:37 -0700209 # The HOST compiler settings are used to compile the protoc plugins.
210 # In most cases, you won't have to change anything, but if you are
211 # cross-compiling, you can override these variables from GNU make's
212 # command line: make CC=cross-gcc HOST_CC=gcc
Nicolas Noble047b7272015-01-16 13:55:05 -0800213
Nicolas "Pixel" Noble1a8eb852016-01-26 22:33:19 +0100214 HOST_CC ?= $(CC)
215 HOST_CXX ?= $(CXX)
216 HOST_LD ?= $(LD)
217 HOST_LDXX ?= $(LDXX)
nnoble72309c62014-12-12 11:42:26 -0800218
Craig Tiller78222f72016-05-10 09:55:38 -0700219 CFLAGS += -std=c99 -Wsign-conversion -Wconversion ${' '.join(warning_var('$(W_%s)', warning) for warning in PREFERRED_WARNINGS)}
Craig Tiller841c8802015-09-10 13:06:37 -0700220 CXXFLAGS += -std=c++11
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700221 ifeq ($(SYSTEM),Darwin)
222 CXXFLAGS += -stdlib=libc++
223 endif
ncteisenf9d7c272017-11-06 20:32:57 -0800224 % for arg in ['CFLAGS', 'CXXFLAGS', 'CPPFLAGS', 'COREFLAGS', 'LDFLAGS', 'DEFINES']:
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +0100225 % if defaults.get('global', []).get(arg, None) is not None:
226 ${arg} += ${defaults.get('global').get(arg)}
227 % endif
228 % endfor
Nicolas Noblef8681182015-03-18 14:25:44 -0700229
Craig Tiller841c8802015-09-10 13:06:37 -0700230 CPPFLAGS += $(CPPFLAGS_$(CONFIG))
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800231 CFLAGS += $(CFLAGS_$(CONFIG))
232 CXXFLAGS += $(CXXFLAGS_$(CONFIG))
Craig Tiller841c8802015-09-10 13:06:37 -0700233 DEFINES += $(DEFINES_$(CONFIG)) INSTALL_PREFIX=\"$(prefix)\"
234 LDFLAGS += $(LDFLAGS_$(CONFIG))
Nicolas "Pixel" Noble482d7612015-07-16 23:43:30 +0200235
Craig Tiller841c8802015-09-10 13:06:37 -0700236 ifneq ($(SYSTEM),MINGW32)
237 PIC_CPPFLAGS = -fPIC
238 CPPFLAGS += -fPIC
239 LDFLAGS += -fPIC
240 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800241
Craig Tiller841c8802015-09-10 13:06:37 -0700242 INCLUDES = . include $(GENDIR)
243 LDFLAGS += -Llibs/$(CONFIG)
Nicolas "Pixel" Noble3adab742015-06-02 00:33:06 +0200244
Craig Tiller841c8802015-09-10 13:06:37 -0700245 ifeq ($(SYSTEM),Darwin)
246 ifneq ($(wildcard /usr/local/ssl/include),)
247 INCLUDES += /usr/local/ssl/include
248 endif
249 ifneq ($(wildcard /opt/local/include),)
250 INCLUDES += /opt/local/include
251 endif
252 ifneq ($(wildcard /usr/local/include),)
253 INCLUDES += /usr/local/include
254 endif
255 LIBS = m z
256 ifneq ($(wildcard /usr/local/ssl/lib),)
257 LDFLAGS += -L/usr/local/ssl/lib
258 endif
259 ifneq ($(wildcard /opt/local/lib),)
260 LDFLAGS += -L/opt/local/lib
261 endif
262 ifneq ($(wildcard /usr/local/lib),)
263 LDFLAGS += -L/usr/local/lib
264 endif
265 endif
Nicolas Noblef8681182015-03-18 14:25:44 -0700266
Craig Tiller841c8802015-09-10 13:06:37 -0700267 ifeq ($(SYSTEM),Linux)
Craig Tiller1b1e2382016-02-03 07:33:56 -0800268 LIBS = dl rt m pthread
Craig Tiller841c8802015-09-10 13:06:37 -0700269 LDFLAGS += -pthread
270 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800271
Craig Tiller841c8802015-09-10 13:06:37 -0700272 ifeq ($(SYSTEM),MINGW32)
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100273 LIBS = m pthread ws2_32
Craig Tiller841c8802015-09-10 13:06:37 -0700274 LDFLAGS += -pthread
275 endif
Nicolas Noblef8681182015-03-18 14:25:44 -0700276
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700277 #
278 # The steps for cross-compiling are as follows:
279 # First, clone and make install of grpc using the native compilers for the host.
280 # Also, install protoc (e.g., from a package like apt-get)
281 # Then clone a fresh grpc for the actual cross-compiled build
282 # Set the environment variable GRPC_CROSS_COMPILE to true
283 # Set CC, CXX, LD, LDXX, AR, and STRIP to the cross-compiling binaries
284 # Also set PROTOBUF_CONFIG_OPTS to indicate cross-compilation to protobuf (e.g.,
285 # PROTOBUF_CONFIG_OPTS="--host=arm-linux --with-protoc=/usr/local/bin/protoc" )
286 # Set HAS_PKG_CONFIG=false
287 # To build tests, go to third_party/gflags and follow its ccmake instructions
288 # Make sure that you enable building shared libraries and set your prefix to
289 # something useful like /usr/local/cross
290 # You will also need to set GRPC_CROSS_LDOPTS and GRPC_CROSS_AROPTS to hold
291 # additional required arguments for LD and AR (examples below)
292 # Then you can do a make from the cross-compiling fresh clone!
293 #
294 ifeq ($(GRPC_CROSS_COMPILE),true)
295 LDFLAGS += $(GRPC_CROSS_LDOPTS) # e.g. -L/usr/local/lib -L/usr/local/cross/lib
296 AROPTS = $(GRPC_CROSS_AROPTS) # e.g., rc --target=elf32-little
297 USE_BUILT_PROTOC = false
298 endif
299
Mahak Mukhifb059a22017-04-18 14:40:00 -0700300 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 -0700301 GTEST_LIB += -lgflags
302 ifeq ($(V),1)
303 E = @:
304 Q =
305 else
306 E = @echo
307 Q = @
308 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800309
Craig Tiller38b99e92016-09-15 16:18:09 -0700310 CORE_VERSION = ${settings.core_version}
311 CPP_VERSION = ${settings.cpp_version}
312 CSHARP_VERSION = ${settings.csharp_version}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800313
Craig Tiller841c8802015-09-10 13:06:37 -0700314 CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
315 CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800316
Craig Tiller841c8802015-09-10 13:06:37 -0700317 LDFLAGS += $(ARCH_FLAGS)
318 LDLIBS += $(addprefix -l, $(LIBS))
319 LDLIBSXX += $(addprefix -l, $(LIBSXX))
nnoble72309c62014-12-12 11:42:26 -0800320
murgatroid99c36f6ea2016-10-03 09:24:09 -0700321
322 % for arg in ['CFLAGS', 'CXXFLAGS', 'CPPFLAGS', 'LDFLAGS', 'DEFINES', 'LDLIBS']:
323 ${arg} += $(EXTRA_${arg})
324 % endfor
325
Craig Tiller841c8802015-09-10 13:06:37 -0700326 HOST_CPPFLAGS = $(CPPFLAGS)
327 HOST_CFLAGS = $(CFLAGS)
328 HOST_CXXFLAGS = $(CXXFLAGS)
329 HOST_LDFLAGS = $(LDFLAGS)
330 HOST_LDLIBS = $(LDLIBS)
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800331
Craig Tiller841c8802015-09-10 13:06:37 -0700332 # These are automatically computed variables.
333 # There shouldn't be any need to change anything from now on.
nnoble69ac39f2014-12-12 15:43:38 -0800334
Craig Tiller841c8802015-09-10 13:06:37 -0700335 -include cache.mk
murgatroid9924e2f4a2015-06-29 11:12:01 -0700336
Craig Tiller841c8802015-09-10 13:06:37 -0700337 CACHE_MK =
murgatroid99aa521572015-07-10 14:49:12 -0700338
Craig Tiller841c8802015-09-10 13:06:37 -0700339 HAS_PKG_CONFIG ?= $(shell command -v $(PKG_CONFIG) >/dev/null 2>&1 && echo true || echo false)
murgatroid99aa521572015-07-10 14:49:12 -0700340
Craig Tiller841c8802015-09-10 13:06:37 -0700341 ifeq ($(HAS_PKG_CONFIG), true)
342 CACHE_MK += HAS_PKG_CONFIG = true,
343 endif
nnoble69ac39f2014-12-12 15:43:38 -0800344
Craig Tiller38b99e92016-09-15 16:18:09 -0700345 CORE_PC_TEMPLATE = prefix=$(prefix),\
Craig Tiller841c8802015-09-10 13:06:37 -0700346 exec_prefix=${'\$${prefix}'},\
347 includedir=${'\$${prefix}'}/include,\
348 libdir=${'\$${exec_prefix}'}/lib,\
349 ,\
350 Name: $(PC_NAME),\
351 Description: $(PC_DESCRIPTION),\
Craig Tiller38b99e92016-09-15 16:18:09 -0700352 Version: $(CORE_VERSION),\
353 Cflags: -I${'\$${includedir}'} $(PC_CFLAGS),\
354 Requires.private: $(PC_REQUIRES_PRIVATE),\
355 Libs: -L${'\$${libdir}'} $(PC_LIB),\
356 Libs.private: $(PC_LIBS_PRIVATE)
357
358 CPP_PC_TEMPLATE = prefix=$(prefix),\
359 exec_prefix=${'\$${prefix}'},\
360 includedir=${'\$${prefix}'}/include,\
361 libdir=${'\$${exec_prefix}'}/lib,\
362 ,\
363 Name: $(PC_NAME),\
364 Description: $(PC_DESCRIPTION),\
365 Version: $(CPP_VERSION),\
366 Cflags: -I${'\$${includedir}'} $(PC_CFLAGS),\
367 Requires.private: $(PC_REQUIRES_PRIVATE),\
368 Libs: -L${'\$${libdir}'} $(PC_LIB),\
369 Libs.private: $(PC_LIBS_PRIVATE)
370
371 CSHARP_PC_TEMPLATE = prefix=$(prefix),\
372 exec_prefix=${'\$${prefix}'},\
373 includedir=${'\$${prefix}'}/include,\
374 libdir=${'\$${exec_prefix}'}/lib,\
375 ,\
376 Name: $(PC_NAME),\
377 Description: $(PC_DESCRIPTION),\
378 Version: $(CSHARP_VERSION),\
Craig Tiller841c8802015-09-10 13:06:37 -0700379 Cflags: -I${'\$${includedir}'} $(PC_CFLAGS),\
380 Requires.private: $(PC_REQUIRES_PRIVATE),\
381 Libs: -L${'\$${libdir}'} $(PC_LIB),\
382 Libs.private: $(PC_LIBS_PRIVATE)
murgatroid998faab232015-06-30 17:24:21 -0700383
Craig Tiller841c8802015-09-10 13:06:37 -0700384 ifeq ($(SYSTEM),MINGW32)
Mario Emmenlauer121d2892016-12-12 23:49:27 +0100385 EXECUTABLE_SUFFIX = .exe
Craig Tiller38b99e92016-09-15 16:18:09 -0700386 SHARED_EXT_CORE = dll
387 SHARED_EXT_CPP = dll
388 SHARED_EXT_CSHARP = dll
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100389 SHARED_PREFIX =
Craig Tiller27f70842016-09-15 16:21:54 -0700390 SHARED_VERSION_CORE = -${settings.core_version.major}
391 SHARED_VERSION_CPP = -${settings.cpp_version.major}
392 SHARED_VERSION_CSHARP = -${settings.csharp_version.major}
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100393 else ifeq ($(SYSTEM),Darwin)
Yuchen Zeng6694bb02017-01-23 17:09:51 -0800394 EXECUTABLE_SUFFIX =
Craig Tiller38b99e92016-09-15 16:18:09 -0700395 SHARED_EXT_CORE = dylib
396 SHARED_EXT_CPP = dylib
397 SHARED_EXT_CSHARP = dylib
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100398 SHARED_PREFIX = lib
Craig Tiller27f70842016-09-15 16:21:54 -0700399 SHARED_VERSION_CORE =
400 SHARED_VERSION_CPP =
401 SHARED_VERSION_CSHARP =
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100402 else
Yuchen Zeng6694bb02017-01-23 17:09:51 -0800403 EXECUTABLE_SUFFIX =
Craig Tiller38b99e92016-09-15 16:18:09 -0700404 SHARED_EXT_CORE = so.$(CORE_VERSION)
405 SHARED_EXT_CPP = so.$(CPP_VERSION)
406 SHARED_EXT_CSHARP = so.$(CSHARP_VERSION)
Nicolas "Pixel" Noblec4e57e32016-01-30 21:05:35 +0100407 SHARED_PREFIX = lib
Craig Tiller27f70842016-09-15 16:21:54 -0700408 SHARED_VERSION_CORE =
409 SHARED_VERSION_CPP =
410 SHARED_VERSION_CSHARP =
Craig Tiller841c8802015-09-10 13:06:37 -0700411 endif
nnoble5b7f32a2014-12-22 08:12:44 -0800412
Craig Tiller841c8802015-09-10 13:06:37 -0700413 ifeq ($(wildcard .git),)
414 IS_GIT_FOLDER = false
415 else
416 IS_GIT_FOLDER = true
417 endif
nnoble69ac39f2014-12-12 15:43:38 -0800418
Craig Tiller841c8802015-09-10 13:06:37 -0700419 ifeq ($(HAS_PKG_CONFIG),true)
420 OPENSSL_ALPN_CHECK_CMD = $(PKG_CONFIG) --atleast-version=1.0.2 openssl
Craig Tiller841c8802015-09-10 13:06:37 -0700421 ZLIB_CHECK_CMD = $(PKG_CONFIG) --exists zlib
Srini Polavarapucdc0e282018-03-26 18:16:15 -0700422 PROTOBUF_CHECK_CMD = $(PKG_CONFIG) --atleast-version=3.5.0 protobuf
Yuchen Zengf8b6d6f2017-06-02 15:36:25 -0700423 CARES_CHECK_CMD = $(PKG_CONFIG) --atleast-version=1.11.0 libcares
Craig Tiller841c8802015-09-10 13:06:37 -0700424 else # HAS_PKG_CONFIG
murgatroid9924e2f4a2015-06-29 11:12:01 -0700425
Craig Tiller841c8802015-09-10 13:06:37 -0700426 ifeq ($(SYSTEM),MINGW32)
427 OPENSSL_LIBS = ssl32 eay32
428 else
429 OPENSSL_LIBS = ssl crypto
430 endif
Nicolas Noblef8681182015-03-18 14:25:44 -0700431
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +0100432 OPENSSL_ALPN_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/openssl-alpn.c $(addprefix -l, $(OPENSSL_LIBS)) $(LDFLAGS)
Craig Tillerb79c1e12016-02-23 10:00:58 -0800433 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 +0100434 ZLIB_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/zlib.c -lz $(LDFLAGS)
435 PROTOBUF_CHECK_CMD = $(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $(TMPOUT) test/build/protobuf.cc -lprotobuf $(LDFLAGS)
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700436 CARES_CHECK_CMD = $(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $(TMPOUT) test/build/c-ares.c -lcares $(LDFLAGS)
Craig Tiller297fafa2015-01-15 15:46:39 -0800437
Craig Tiller841c8802015-09-10 13:06:37 -0700438 endif # HAS_PKG_CONFIG
murgatroid9924e2f4a2015-06-29 11:12:01 -0700439
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +0100440 PERFTOOLS_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/perftools.c -lprofiler $(LDFLAGS)
murgatroid996d9e4012015-07-08 10:22:45 -0700441
Craig Tiller841c8802015-09-10 13:06:37 -0700442 PROTOC_CHECK_CMD = which protoc > /dev/null
443 PROTOC_CHECK_VERSION_CMD = protoc --version | grep -q libprotoc.3
444 DTRACE_CHECK_CMD = which dtrace > /dev/null
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +0100445 SYSTEMTAP_HEADERS_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/systemtap.c $(LDFLAGS)
murgatroid9924e2f4a2015-06-29 11:12:01 -0700446
Craig Tiller841c8802015-09-10 13:06:37 -0700447 ifndef REQUIRE_CUSTOM_LIBRARIES_$(CONFIG)
448 HAS_SYSTEM_PERFTOOLS ?= $(shell $(PERFTOOLS_CHECK_CMD) 2> /dev/null && echo true || echo false)
449 ifeq ($(HAS_SYSTEM_PERFTOOLS),true)
450 DEFINES += GRPC_HAVE_PERFTOOLS
451 LIBS += profiler
452 CACHE_MK += HAS_SYSTEM_PERFTOOLS = true,
453 endif
454 endif
nnoble69ac39f2014-12-12 15:43:38 -0800455
Craig Tiller841c8802015-09-10 13:06:37 -0700456 HAS_SYSTEM_PROTOBUF_VERIFY = $(shell $(PROTOBUF_CHECK_CMD) 2> /dev/null && echo true || echo false)
457 ifndef REQUIRE_CUSTOM_LIBRARIES_$(CONFIG)
458 HAS_SYSTEM_OPENSSL_ALPN ?= $(shell $(OPENSSL_ALPN_CHECK_CMD) 2> /dev/null && echo true || echo false)
459 ifeq ($(HAS_SYSTEM_OPENSSL_ALPN),true)
Craig Tiller841c8802015-09-10 13:06:37 -0700460 CACHE_MK += HAS_SYSTEM_OPENSSL_ALPN = true,
Craig Tiller841c8802015-09-10 13:06:37 -0700461 endif
462 HAS_SYSTEM_ZLIB ?= $(shell $(ZLIB_CHECK_CMD) 2> /dev/null && echo true || echo false)
463 ifeq ($(HAS_SYSTEM_ZLIB),true)
464 CACHE_MK += HAS_SYSTEM_ZLIB = true,
465 endif
466 HAS_SYSTEM_PROTOBUF ?= $(HAS_SYSTEM_PROTOBUF_VERIFY)
467 ifeq ($(HAS_SYSTEM_PROTOBUF),true)
468 CACHE_MK += HAS_SYSTEM_PROTOBUF = true,
469 endif
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700470 HAS_SYSTEM_CARES ?= $(shell $(CARES_CHECK_CMD) 2> /dev/null && echo true || echo false)
471 ifeq ($(HAS_SYSTEM_CARES),true)
472 CACHE_MK += HAS_SYSTEM_CARES = true,
473 endif
Craig Tiller841c8802015-09-10 13:06:37 -0700474 else
475 # override system libraries if the config requires a custom compiled library
476 HAS_SYSTEM_OPENSSL_ALPN = false
Craig Tiller841c8802015-09-10 13:06:37 -0700477 HAS_SYSTEM_ZLIB = false
478 HAS_SYSTEM_PROTOBUF = false
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700479 HAS_SYSTEM_CARES = false
Craig Tiller841c8802015-09-10 13:06:37 -0700480 endif
nnoble69ac39f2014-12-12 15:43:38 -0800481
Craig Tiller841c8802015-09-10 13:06:37 -0700482 HAS_PROTOC ?= $(shell $(PROTOC_CHECK_CMD) 2> /dev/null && echo true || echo false)
483 ifeq ($(HAS_PROTOC),true)
484 CACHE_MK += HAS_PROTOC = true,
485 HAS_VALID_PROTOC ?= $(shell $(PROTOC_CHECK_VERSION_CMD) 2> /dev/null && echo true || echo false)
486 ifeq ($(HAS_VALID_PROTOC),true)
487 CACHE_MK += HAS_VALID_PROTOC = true,
488 endif
489 else
490 HAS_VALID_PROTOC = false
491 endif
Nicolas Noble53830622015-02-12 16:56:38 -0800492
Craig Tiller841c8802015-09-10 13:06:37 -0700493 # Check for Systemtap (https://sourceware.org/systemtap/), first by making sure <sys/sdt.h> is present
494 # in the system and secondly by checking for the "dtrace" binary (on Linux, this is part of the Systemtap
495 # distribution. It's part of the base system on BSD/Solaris machines).
496 ifndef HAS_SYSTEMTAP
497 HAS_SYSTEMTAP_HEADERS = $(shell $(SYSTEMTAP_HEADERS_CHECK_CMD) 2> /dev/null && echo true || echo false)
498 HAS_DTRACE = $(shell $(DTRACE_CHECK_CMD) 2> /dev/null && echo true || echo false)
499 HAS_SYSTEMTAP = false
500 ifeq ($(HAS_SYSTEMTAP_HEADERS),true)
501 ifeq ($(HAS_DTRACE),true)
502 HAS_SYSTEMTAP = true
503 endif
504 endif
505 endif
David Garcia Quintas611b7362015-04-27 15:49:31 -0700506
Craig Tiller841c8802015-09-10 13:06:37 -0700507 ifeq ($(HAS_SYSTEMTAP),true)
508 CACHE_MK += HAS_SYSTEMTAP = true,
509 endif
nnoble69ac39f2014-12-12 15:43:38 -0800510
Craig Tiller841c8802015-09-10 13:06:37 -0700511 # Note that for testing purposes, one can do:
512 # make HAS_EMBEDDED_OPENSSL_ALPN=false
513 # to emulate the fact we do not have OpenSSL in the third_party folder.
Craig Tillerb79c1e12016-02-23 10:00:58 -0800514 ifneq ($(wildcard third_party/${openssl_fallback.extraction_dir}/libssl.a),)
515 HAS_EMBEDDED_OPENSSL_ALPN = third_party/${openssl_fallback.extraction_dir}
516 else ifeq ($(wildcard third_party/boringssl/include/openssl/ssl.h),)
Craig Tiller841c8802015-09-10 13:06:37 -0700517 HAS_EMBEDDED_OPENSSL_ALPN = false
518 else
Craig Tillerb79c1e12016-02-23 10:00:58 -0800519 CAN_COMPILE_EMBEDDED_OPENSSL ?= $(shell $(BORINGSSL_COMPILE_CHECK_CMD) 2> /dev/null && echo true || echo false)
520 HAS_EMBEDDED_OPENSSL_ALPN = $(CAN_COMPILE_EMBEDDED_OPENSSL)
Craig Tiller841c8802015-09-10 13:06:37 -0700521 endif
nnoble69ac39f2014-12-12 15:43:38 -0800522
Craig Tiller841c8802015-09-10 13:06:37 -0700523 ifeq ($(wildcard third_party/zlib/zlib.h),)
524 HAS_EMBEDDED_ZLIB = false
525 else
526 HAS_EMBEDDED_ZLIB = true
527 endif
nnoble69ac39f2014-12-12 15:43:38 -0800528
Craig Tiller841c8802015-09-10 13:06:37 -0700529 ifeq ($(wildcard third_party/protobuf/src/google/protobuf/descriptor.pb.h),)
530 HAS_EMBEDDED_PROTOBUF = false
531 ifneq ($(HAS_VALID_PROTOC),true)
532 NO_PROTOC = true
533 endif
534 else
535 HAS_EMBEDDED_PROTOBUF = true
536 endif
Nicolas Noble53830622015-02-12 16:56:38 -0800537
Yuchen Zeng6694bb02017-01-23 17:09:51 -0800538 ifeq ($(wildcard third_party/cares/cares/ares.h),)
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700539 HAS_EMBEDDED_CARES = false
540 else
541 HAS_EMBEDDED_CARES = true
542 endif
543
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100544 PC_REQUIRES_GRPC =
Craig Tiller841c8802015-09-10 13:06:37 -0700545 PC_LIBS_GRPC =
murgatroid998faab232015-06-30 17:24:21 -0700546
Craig Tiller841c8802015-09-10 13:06:37 -0700547 ifeq ($(HAS_SYSTEM_ZLIB),false)
Craig Tiller3dca23a2016-01-21 11:44:55 -0800548 ifeq ($(HAS_EMBEDDED_ZLIB), true)
549 EMBED_ZLIB ?= true
Craig Tiller841c8802015-09-10 13:06:37 -0700550 else
551 DEP_MISSING += zlib
Craig Tiller3dca23a2016-01-21 11:44:55 -0800552 EMBED_ZLIB ?= broken
Craig Tiller841c8802015-09-10 13:06:37 -0700553 endif
554 else
Craig Tiller3dca23a2016-01-21 11:44:55 -0800555 EMBED_ZLIB ?= false
556 endif
557
558 ifeq ($(EMBED_ZLIB),true)
559 ZLIB_DEP = $(LIBDIR)/$(CONFIG)/libz.a
560 ZLIB_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libz.a
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +0100561 ZLIB_MERGE_OBJS = $(LIBZ_OBJS)
Craig Tiller3dca23a2016-01-21 11:44:55 -0800562 CPPFLAGS += -Ithird_party/zlib
Craig Tiller3dca23a2016-01-21 11:44:55 -0800563 else
Craig Tiller841c8802015-09-10 13:06:37 -0700564 ifeq ($(HAS_PKG_CONFIG),true)
565 CPPFLAGS += $(shell $(PKG_CONFIG) --cflags zlib)
566 LDFLAGS += $(shell $(PKG_CONFIG) --libs-only-L zlib)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800567 LIBS += $(patsubst -l%,%,$(shell $(PKG_CONFIG) --libs-only-l zlib))
Craig Tiller841c8802015-09-10 13:06:37 -0700568 PC_REQUIRES_GRPC += zlib
569 else
570 PC_LIBS_GRPC += -lz
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800571 LIBS += z
Craig Tiller841c8802015-09-10 13:06:37 -0700572 endif
573 endif
nnoble69ac39f2014-12-12 15:43:38 -0800574
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700575 CARES_PKG_CONFIG = false
576
Yuchen Zengb1b21152016-08-12 11:27:30 -0700577 ifeq ($(HAS_SYSTEM_CARES),false)
578 ifeq ($(HAS_EMBEDDED_CARES), true)
579 EMBED_CARES ?= true
580 else
581 DEP_MISSING += cares
582 EMBED_CARES ?= broken
583 endif
584 else
585 EMBED_CARES ?= false
586 endif
587
Alexander Polcyn690dde62017-10-18 00:20:33 -0700588 ADDRESS_SORTING_DEP = $(LIBDIR)/$(CONFIG)/libaddress_sorting.a
589 ADDRESS_SORTING_MERGE_OBJS = $(LIBADDRESS_SORTING_OBJS)
590 ADDRESS_SORTING_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libaddress_sorting.a
Alex Polcyn77f64f72018-03-01 19:22:53 +0000591 CPPFLAGS := -Ithird_party/address_sorting/include $(CPPFLAGS)
Alexander Polcyn690dde62017-10-18 00:20:33 -0700592
Yuchen Zengb1b21152016-08-12 11:27:30 -0700593 ifeq ($(EMBED_CARES),true)
Yuchen Zeng15141a62016-08-17 18:56:04 -0700594 CARES_DEP = $(LIBDIR)/$(CONFIG)/libares.a
595 CARES_MERGE_OBJS = $(LIBARES_OBJS)
596 CARES_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libares.a
Yuchen Zeng6694bb02017-01-23 17:09:51 -0800597 CPPFLAGS := -Ithird_party/cares -Ithird_party/cares/cares $(CPPFLAGS)
Yuchen Zengb1b21152016-08-12 11:27:30 -0700598 else
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700599 ifeq ($(HAS_PKG_CONFIG),true)
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700600 PC_REQUIRES_GRPC += libcares
601 CPPFLAGS += $(shell $(PKG_CONFIG) --cflags libcares)
Yuchen Zengdf2a7b72016-08-18 14:57:03 -0700602 LDFLAGS += $(shell $(PKG_CONFIG) --libs-only-L libcares)
603 LIBS += $(patsubst -l%,%,$(shell $(PKG_CONFIG) --libs-only-l libcares))
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700604 else
605 PC_LIBS_GRPC += -lcares
Yuchen Zengdf2a7b72016-08-18 14:57:03 -0700606 LIBS += cares
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700607 endif
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700608 endif
609
Craig Tiller841c8802015-09-10 13:06:37 -0700610 OPENSSL_PKG_CONFIG = false
murgatroid99da7a9942015-06-29 14:57:37 -0700611
Craig Tiller841c8802015-09-10 13:06:37 -0700612 PC_REQUIRES_SECURE =
613 PC_LIBS_SECURE =
murgatroid998faab232015-06-30 17:24:21 -0700614
Craig Tiller841c8802015-09-10 13:06:37 -0700615 ifeq ($(HAS_SYSTEM_OPENSSL_ALPN),true)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800616 EMBED_OPENSSL ?= false
617 NO_SECURE ?= false
618 else # HAS_SYSTEM_OPENSSL_ALPN=false
Craig Tillerb79c1e12016-02-23 10:00:58 -0800619 ifneq ($(HAS_EMBEDDED_OPENSSL_ALPN),false)
620 EMBED_OPENSSL ?= $(HAS_EMBEDDED_OPENSSL_ALPN)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800621 NO_SECURE ?= false
622 else # HAS_EMBEDDED_OPENSSL_ALPN=false
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800623 NO_SECURE ?= true
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800624 endif # HAS_EMBEDDED_OPENSSL_ALPN
625 endif # HAS_SYSTEM_OPENSSL_ALPN
626
627 OPENSSL_DEP :=
628 OPENSSL_MERGE_LIBS :=
629 ifeq ($(NO_SECURE),false)
630 ifeq ($(EMBED_OPENSSL),true)
631 OPENSSL_DEP += $(LIBDIR)/$(CONFIG)/libboringssl.a
632 OPENSSL_MERGE_LIBS += $(LIBDIR)/$(CONFIG)/libboringssl.a
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +0100633 OPENSSL_MERGE_OBJS += $(LIBBORINGSSL_OBJS)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800634 # need to prefix these to ensure overriding system libraries
635 CPPFLAGS := -Ithird_party/boringssl/include $(CPPFLAGS)
Craig Tillerb79c1e12016-02-23 10:00:58 -0800636 else ifneq ($(EMBED_OPENSSL),false)
637 OPENSSL_DEP += $(EMBED_OPENSSL)/libssl.a $(EMBED_OPENSSL)/libcrypto.a
638 OPENSSL_MERGE_LIBS += $(EMBED_OPENSSL)/libssl.a $(EMBED_OPENSSL)/libcrypto.a
639 OPENSSL_MERGE_OBJS += $(wildcard $(EMBED_OPENSSL)/grpc_obj/*.o)
640 # need to prefix these to ensure overriding system libraries
641 CPPFLAGS := -I$(EMBED_OPENSSL)/include $(CPPFLAGS)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800642 else # EMBED_OPENSSL=false
Craig Tiller841c8802015-09-10 13:06:37 -0700643 ifeq ($(HAS_PKG_CONFIG),true)
644 OPENSSL_PKG_CONFIG = true
645 PC_REQUIRES_SECURE = openssl
646 CPPFLAGS := $(shell $(PKG_CONFIG) --cflags openssl) $(CPPFLAGS)
647 LDFLAGS_OPENSSL_PKG_CONFIG = $(shell $(PKG_CONFIG) --libs-only-L openssl)
648 ifeq ($(SYSTEM),Linux)
649 ifneq ($(LDFLAGS_OPENSSL_PKG_CONFIG),)
650 LDFLAGS_OPENSSL_PKG_CONFIG += $(shell $(PKG_CONFIG) --libs-only-L openssl | sed s/L/Wl,-rpath,/)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800651 endif # LDFLAGS_OPENSSL_PKG_CONFIG=''
652 endif # System=Linux
Craig Tiller841c8802015-09-10 13:06:37 -0700653 LDFLAGS := $(LDFLAGS_OPENSSL_PKG_CONFIG) $(LDFLAGS)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800654 else # HAS_PKG_CONFIG=false
Craig Tiller841c8802015-09-10 13:06:37 -0700655 LIBS_SECURE = $(OPENSSL_LIBS)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800656 endif # HAS_PKG_CONFIG
Nicolas "Pixel" Noble494d65d2018-05-15 00:06:04 +0200657 ifeq ($(DISABLE_ALPN),true)
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800658 CPPFLAGS += -DTSI_OPENSSL_ALPN_SUPPORT=0
659 LIBS_SECURE = $(OPENSSL_LIBS)
Nicolas "Pixel" Noble494d65d2018-05-15 00:06:04 +0200660 endif # DISABLE_ALPN
Craig Tiller841c8802015-09-10 13:06:37 -0700661 PC_LIBS_SECURE = $(addprefix -l, $(LIBS_SECURE))
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800662 endif # EMBED_OPENSSL
663 endif # NO_SECURE
nnoble69ac39f2014-12-12 15:43:38 -0800664
Craig Tiller841c8802015-09-10 13:06:37 -0700665 ifeq ($(OPENSSL_PKG_CONFIG),true)
666 LDLIBS_SECURE += $(shell $(PKG_CONFIG) --libs-only-l openssl)
667 else
668 LDLIBS_SECURE += $(addprefix -l, $(LIBS_SECURE))
669 endif
nnoble5b7f32a2014-12-22 08:12:44 -0800670
Jan Tattermusch96510252018-05-07 19:33:20 +0200671 # gpr .pc file
672 PC_NAME = gpr
673 PC_DESCRIPTION = gRPC platform support library
674 PC_CFLAGS =
675 PC_REQUIRES_PRIVATE = $(PC_REQUIRES_GPR)
676 PC_LIBS_PRIVATE = $(PC_LIBS_GPR)
677 PC_LIB = -lgpr
678 GPR_PC_FILE := $(CORE_PC_TEMPLATE)
679
Craig Tiller841c8802015-09-10 13:06:37 -0700680 # grpc .pc file
681 PC_NAME = gRPC
Craig Tillerda179ce2016-02-09 12:01:53 -0800682 PC_DESCRIPTION = high performance general RPC framework
683 PC_CFLAGS =
Jan Tattermuschcf854622018-08-13 21:00:19 +0200684 PC_REQUIRES_PRIVATE = gpr $(PC_REQUIRES_GRPC) $(PC_REQUIRES_SECURE)
Craig Tiller841c8802015-09-10 13:06:37 -0700685 PC_LIBS_PRIVATE = $(PC_LIBS_GRPC) $(PC_LIBS_SECURE)
686 PC_LIB = -lgrpc
Craig Tiller38b99e92016-09-15 16:18:09 -0700687 GRPC_PC_FILE := $(CORE_PC_TEMPLATE)
murgatroid998faab232015-06-30 17:24:21 -0700688
Craig Tiller4a67be42016-02-09 12:40:32 -0800689 # grpc_unsecure .pc file
Craig Tiller841c8802015-09-10 13:06:37 -0700690 PC_NAME = gRPC unsecure
Craig Tillerda179ce2016-02-09 12:01:53 -0800691 PC_DESCRIPTION = high performance general RPC framework without SSL
692 PC_CFLAGS =
Jan Tattermuschcf854622018-08-13 21:00:19 +0200693 PC_REQUIRES_PRIVATE = gpr $(PC_REQUIRES_GRPC)
Craig Tiller841c8802015-09-10 13:06:37 -0700694 PC_LIBS_PRIVATE = $(PC_LIBS_GRPC)
695 PC_LIB = -lgrpc
Craig Tiller38b99e92016-09-15 16:18:09 -0700696 GRPC_UNSECURE_PC_FILE := $(CORE_PC_TEMPLATE)
murgatroid998faab232015-06-30 17:24:21 -0700697
Craig Tiller841c8802015-09-10 13:06:37 -0700698 PROTOBUF_PKG_CONFIG = false
murgatroid99da7a9942015-06-29 14:57:37 -0700699
Craig Tiller841c8802015-09-10 13:06:37 -0700700 PC_REQUIRES_GRPCXX =
701 PC_LIBS_GRPCXX =
murgatroid998faab232015-06-30 17:24:21 -0700702
Mahak Mukhifb059a22017-04-18 14:40:00 -0700703 CPPFLAGS := -Ithird_party/googletest/googletest/include -Ithird_party/googletest/googlemock/include $(CPPFLAGS)
Craig Tiller16f6dac2015-08-24 17:00:04 -0700704
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700705 PROTOC_PLUGINS_ALL =\
706 % for tgt in targets:
707 % if tgt.build == 'protoc':
708 $(BINDIR)/$(CONFIG)/${tgt.name}\
709 % endif
710 % endfor
711
712 PROTOC_PLUGINS_DIR = $(BINDIR)/$(CONFIG)
713
Craig Tiller841c8802015-09-10 13:06:37 -0700714 ifeq ($(HAS_SYSTEM_PROTOBUF),true)
715 ifeq ($(HAS_PKG_CONFIG),true)
716 PROTOBUF_PKG_CONFIG = true
717 PC_REQUIRES_GRPCXX = protobuf
718 CPPFLAGS := $(shell $(PKG_CONFIG) --cflags protobuf) $(CPPFLAGS)
719 LDFLAGS_PROTOBUF_PKG_CONFIG = $(shell $(PKG_CONFIG) --libs-only-L protobuf)
720 ifeq ($(SYSTEM),Linux)
721 ifneq ($(LDFLAGS_PROTOBUF_PKG_CONFIG),)
722 LDFLAGS_PROTOBUF_PKG_CONFIG += $(shell $(PKG_CONFIG) --libs-only-L protobuf | sed s/L/Wl,-rpath,/)
723 endif
724 endif
725 else
726 PC_LIBS_GRPCXX = -lprotobuf
727 endif
Nicolas "Pixel" Noblef7fbdd42016-07-25 20:31:22 +0200728 PROTOC_PLUGINS = $(PROTOC_PLUGINS_ALL)
Craig Tiller841c8802015-09-10 13:06:37 -0700729 else
730 ifeq ($(HAS_EMBEDDED_PROTOBUF),true)
731 PROTOBUF_DEP = $(LIBDIR)/$(CONFIG)/protobuf/libprotobuf.a
732 CPPFLAGS := -Ithird_party/protobuf/src $(CPPFLAGS)
733 LDFLAGS := -L$(LIBDIR)/$(CONFIG)/protobuf $(LDFLAGS)
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700734 ifneq ($(USE_BUILT_PROTOC),false)
Craig Tiller841c8802015-09-10 13:06:37 -0700735 PROTOC = $(BINDIR)/$(CONFIG)/protobuf/protoc
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700736 PROTOC_PLUGINS = $(PROTOC_PLUGINS_ALL)
737 else
738 PROTOC_PLUGINS =
739 PROTOC_PLUGINS_DIR = $(prefix)/bin
740 endif
Craig Tiller841c8802015-09-10 13:06:37 -0700741 else
742 NO_PROTOBUF = true
743 endif
744 endif
Nicolas Noble53830622015-02-12 16:56:38 -0800745
Craig Tiller841c8802015-09-10 13:06:37 -0700746 LIBS_PROTOBUF = protobuf
747 LIBS_PROTOC = protoc protobuf
Nicolas Noble53830622015-02-12 16:56:38 -0800748
Craig Tiller841c8802015-09-10 13:06:37 -0700749 HOST_LDLIBS_PROTOC += $(addprefix -l, $(LIBS_PROTOC))
Nicolas Noble53830622015-02-12 16:56:38 -0800750
Craig Tiller841c8802015-09-10 13:06:37 -0700751 ifeq ($(PROTOBUF_PKG_CONFIG),true)
752 LDLIBS_PROTOBUF += $(shell $(PKG_CONFIG) --libs-only-l protobuf)
753 else
754 LDLIBS_PROTOBUF += $(addprefix -l, $(LIBS_PROTOBUF))
755 endif
murgatroid9924e2f4a2015-06-29 11:12:01 -0700756
Craig Tiller841c8802015-09-10 13:06:37 -0700757 # grpc++ .pc file
758 PC_NAME = gRPC++
759 PC_DESCRIPTION = C++ wrapper for gRPC
760 PC_CFLAGS =
761 PC_REQUIRES_PRIVATE = grpc $(PC_REQUIRES_GRPCXX)
762 PC_LIBS_PRIVATE = $(PC_LIBS_GRPCXX)
763 PC_LIB = -lgrpc++
Craig Tiller38b99e92016-09-15 16:18:09 -0700764 GRPCXX_PC_FILE := $(CPP_PC_TEMPLATE)
murgatroid998faab232015-06-30 17:24:21 -0700765
Craig Tiller841c8802015-09-10 13:06:37 -0700766 # grpc++_unsecure .pc file
767 PC_NAME = gRPC++ unsecure
768 PC_DESCRIPTION = C++ wrapper for gRPC without SSL
769 PC_CFLAGS =
770 PC_REQUIRES_PRIVATE = grpc_unsecure $(PC_REQUIRES_GRPCXX)
771 PC_LIBS_PRIVATE = $(PC_LIBS_GRPCXX)
772 PC_LIB = -lgrpc++
Craig Tiller38b99e92016-09-15 16:18:09 -0700773 GRPCXX_UNSECURE_PC_FILE := $(CPP_PC_TEMPLATE)
murgatroid998faab232015-06-30 17:24:21 -0700774
Craig Tiller841c8802015-09-10 13:06:37 -0700775 ifeq ($(MAKECMDGOALS),clean)
776 NO_DEPS = true
777 endif
nnoble69ac39f2014-12-12 15:43:38 -0800778
Craig Tiller841c8802015-09-10 13:06:37 -0700779 .SECONDARY = %.pb.h %.pb.cc
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800780
Craig Tiller841c8802015-09-10 13:06:37 -0700781 ifeq ($(DEP_MISSING),)
782 all: static shared plugins\
783 % for tgt in targets:
784 % if tgt.build == 'all':
785 $(BINDIR)/$(CONFIG)/${tgt.name}\
786 % endif
787 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800788
Craig Tiller841c8802015-09-10 13:06:37 -0700789 dep_error:
790 @echo "You shouldn't see this message - all of your dependencies are correct."
791 else
792 all: dep_error git_update stop
nnoble69ac39f2014-12-12 15:43:38 -0800793
Craig Tiller841c8802015-09-10 13:06:37 -0700794 dep_error:
795 @echo
796 @echo "DEPENDENCY ERROR"
797 @echo
798 @echo "You are missing system dependencies that are essential to build grpc,"
799 @echo "and the third_party directory doesn't have them:"
800 @echo
801 @echo " $(DEP_MISSING)"
802 @echo
803 @echo "Installing the development packages for your system will solve"
804 @echo "this issue. Please consult INSTALL to get more information."
805 @echo
806 @echo "If you need information about why these tests failed, run:"
807 @echo
808 @echo " make run_dep_checks"
809 @echo
810 endif
nnoble69ac39f2014-12-12 15:43:38 -0800811
Craig Tiller841c8802015-09-10 13:06:37 -0700812 git_update:
813 ifeq ($(IS_GIT_FOLDER),true)
814 @echo "Additionally, since you are in a git clone, you can download the"
815 @echo "missing dependencies in third_party by running the following command:"
816 @echo
817 @echo " git submodule update --init"
818 @echo
819 endif
nnoble69ac39f2014-12-12 15:43:38 -0800820
Craig Tiller841c8802015-09-10 13:06:37 -0700821 openssl_dep_error: openssl_dep_message git_update stop
nnoble69ac39f2014-12-12 15:43:38 -0800822
Craig Tiller841c8802015-09-10 13:06:37 -0700823 protobuf_dep_error: protobuf_dep_message git_update stop
Nicolas Noble53830622015-02-12 16:56:38 -0800824
Craig Tiller841c8802015-09-10 13:06:37 -0700825 protoc_dep_error: protoc_dep_message git_update stop
Nicolas Noble53830622015-02-12 16:56:38 -0800826
Craig Tiller841c8802015-09-10 13:06:37 -0700827 openssl_dep_message:
828 @echo
829 @echo "DEPENDENCY ERROR"
830 @echo
Craig Tillerb79c1e12016-02-23 10:00:58 -0800831 @echo "The target you are trying to run requires an OpenSSL implementation."
832 @echo "Your system doesn't have one, and either the third_party directory"
833 @echo "doesn't have it, or your compiler can't build BoringSSL."
Craig Tiller841c8802015-09-10 13:06:37 -0700834 @echo
835 @echo "Please consult INSTALL to get more information."
836 @echo
837 @echo "If you need information about why these tests failed, run:"
838 @echo
839 @echo " make run_dep_checks"
840 @echo
nnoble69ac39f2014-12-12 15:43:38 -0800841
Craig Tiller841c8802015-09-10 13:06:37 -0700842 protobuf_dep_message:
843 @echo
844 @echo "DEPENDENCY ERROR"
845 @echo
Srini Polavarapucdc0e282018-03-26 18:16:15 -0700846 @echo "The target you are trying to run requires protobuf 3.5.0+"
Craig Tiller841c8802015-09-10 13:06:37 -0700847 @echo "Your system doesn't have it, and neither does the third_party directory."
848 @echo
849 @echo "Please consult INSTALL to get more information."
850 @echo
851 @echo "If you need information about why these tests failed, run:"
852 @echo
853 @echo " make run_dep_checks"
854 @echo
Nicolas Noble53830622015-02-12 16:56:38 -0800855
Craig Tiller841c8802015-09-10 13:06:37 -0700856 protoc_dep_message:
857 @echo
858 @echo "DEPENDENCY ERROR"
859 @echo
Srini Polavarapucdc0e282018-03-26 18:16:15 -0700860 @echo "The target you are trying to run requires protobuf-compiler 3.5.0+"
Craig Tiller841c8802015-09-10 13:06:37 -0700861 @echo "Your system doesn't have it, and neither does the third_party directory."
862 @echo
863 @echo "Please consult INSTALL to get more information."
864 @echo
865 @echo "If you need information about why these tests failed, run:"
866 @echo
867 @echo " make run_dep_checks"
868 @echo
Nicolas Noble53830622015-02-12 16:56:38 -0800869
Craig Tiller841c8802015-09-10 13:06:37 -0700870 systemtap_dep_error:
871 @echo
872 @echo "DEPENDENCY ERROR"
873 @echo
874 @echo "Under the '$(CONFIG)' configutation, the target you are trying "
875 @echo "to build requires systemtap 2.7+ (on Linux) or dtrace (on other "
876 @echo "platforms such as Solaris and *BSD). "
877 @echo
878 @echo "Please consult INSTALL to get more information."
879 @echo
David Garcia Quintas8954e902015-04-29 09:46:33 -0700880
Craig Tiller841c8802015-09-10 13:06:37 -0700881 stop:
882 @false
nnoble69ac39f2014-12-12 15:43:38 -0800883
Craig Tiller841c8802015-09-10 13:06:37 -0700884 % for tgt in targets:
885 ${tgt.name}: $(BINDIR)/$(CONFIG)/${tgt.name}
886 % endfor
ctiller09cb6d52014-12-19 17:38:22 -0800887
Craig Tiller841c8802015-09-10 13:06:37 -0700888 run_dep_checks:
889 $(OPENSSL_ALPN_CHECK_CMD) || true
Craig Tiller841c8802015-09-10 13:06:37 -0700890 $(ZLIB_CHECK_CMD) || true
891 $(PERFTOOLS_CHECK_CMD) || true
892 $(PROTOBUF_CHECK_CMD) || true
893 $(PROTOC_CHECK_VERSION_CMD) || true
Yuchen Zeng9b5aa632016-07-26 19:09:56 -0700894 $(CARES_CHECK_CMD) || true
nnoble69ac39f2014-12-12 15:43:38 -0800895
Craig Tiller841c8802015-09-10 13:06:37 -0700896 third_party/protobuf/configure:
897 $(E) "[AUTOGEN] Preparing protobuf"
898 $(Q)(cd third_party/protobuf ; autoreconf -f -i -Wall,no-obsolete)
Nicolas Noble53830622015-02-12 16:56:38 -0800899
Craig Tiller841c8802015-09-10 13:06:37 -0700900 $(LIBDIR)/$(CONFIG)/protobuf/libprotobuf.a: third_party/protobuf/configure
901 $(E) "[MAKE] Building protobuf"
Vijay Pai52338fb2018-01-11 00:25:00 -0800902 $(Q)mkdir -p $(LIBDIR)/$(CONFIG)/protobuf
Vijay Paicc7eb8e2016-07-19 19:03:55 -0700903 $(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 -0700904 $(Q)$(MAKE) -C third_party/protobuf clean
905 $(Q)$(MAKE) -C third_party/protobuf
Craig Tiller841c8802015-09-10 13:06:37 -0700906 $(Q)mkdir -p $(BINDIR)/$(CONFIG)/protobuf
907 $(Q)cp third_party/protobuf/src/.libs/libprotoc.a $(LIBDIR)/$(CONFIG)/protobuf
908 $(Q)cp third_party/protobuf/src/.libs/libprotobuf.a $(LIBDIR)/$(CONFIG)/protobuf
909 $(Q)cp third_party/protobuf/src/protoc $(BINDIR)/$(CONFIG)/protobuf
Nicolas Noble53830622015-02-12 16:56:38 -0800910
Craig Tiller841c8802015-09-10 13:06:37 -0700911 static: static_c static_cxx
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800912
Craig Tillereda85c62016-07-01 12:45:19 -0700913 static_c: pc_c pc_c_unsecure cache.mk \
Craig Tiller841c8802015-09-10 13:06:37 -0700914 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100915 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700916 % if lib.build == 'all' and lib.language == 'c' and not lib.get('external_deps', None):
917 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
918 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100919 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700920 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800921
922
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100923 static_cxx: pc_cxx pc_cxx_unsecure cache.mk \
Craig Tiller841c8802015-09-10 13:06:37 -0700924 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100925 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700926 % if lib.build == 'all' and lib.language == 'c++':
927 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
928 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100929 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700930 % endfor
nnoble29e1d292014-12-01 10:27:40 -0800931
932
Jan Tattermusch081c27b2018-07-23 22:59:02 +0200933 static_csharp: static_c \
934 % for lib in libs:
935 % if 'Makefile' in lib.get('build_system', ['Makefile']):
936 % if lib.build == 'all' and lib.language == 'csharp':
937 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
938 % endif
939 % endif
940 % endfor
941
942
Craig Tiller841c8802015-09-10 13:06:37 -0700943 shared: shared_c shared_cxx
nnoble29e1d292014-12-01 10:27:40 -0800944
Craig Tillereda85c62016-07-01 12:45:19 -0700945 shared_c: pc_c pc_c_unsecure cache.mk\
Craig Tiller841c8802015-09-10 13:06:37 -0700946 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100947 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700948 % if lib.build == 'all' and lib.language == 'c' and not lib.get('external_deps', None):
Craig Tiller27f70842016-09-15 16:21:54 -0700949 $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)\
Craig Tiller841c8802015-09-10 13:06:37 -0700950 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100951 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700952 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800953
Craig Tiller841c8802015-09-10 13:06:37 -0700954 shared_cxx: pc_cxx pc_cxx_unsecure cache.mk\
955 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100956 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700957 % if lib.build == 'all' and lib.language == 'c++':
Craig Tiller27f70842016-09-15 16:21:54 -0700958 $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)\
Craig Tiller841c8802015-09-10 13:06:37 -0700959 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100960 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700961 % endfor
nnoble29e1d292014-12-01 10:27:40 -0800962
963
Craig Tiller841c8802015-09-10 13:06:37 -0700964 shared_csharp: shared_c \
965 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100966 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -0700967 % if lib.build == 'all' and lib.language == 'csharp':
Craig Tiller27f70842016-09-15 16:21:54 -0700968 $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP)\
Craig Tiller841c8802015-09-10 13:06:37 -0700969 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100970 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700971 % endfor
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -0800972
Craig Tiller841c8802015-09-10 13:06:37 -0700973 grpc_csharp_ext: shared_csharp
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -0800974
Craig Tiller841c8802015-09-10 13:06:37 -0700975 plugins: $(PROTOC_PLUGINS)
Nicolas "Pixel" Noble522d7122015-02-19 01:28:02 +0100976
Craig Tiller841c8802015-09-10 13:06:37 -0700977 privatelibs: privatelibs_c privatelibs_cxx
nnoble29e1d292014-12-01 10:27:40 -0800978
Craig Tiller841c8802015-09-10 13:06:37 -0700979 privatelibs_c: \
980 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100981 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800982 % 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 -0700983 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
984 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100985 % endif
Craig Tiller841c8802015-09-10 13:06:37 -0700986 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800987
Jan Tattermusch96510252018-05-07 19:33:20 +0200988 pc_c: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc $(LIBDIR)/$(CONFIG)/pkgconfig/gpr.pc
murgatroid998faab232015-06-30 17:24:21 -0700989
Jan Tattermusch96510252018-05-07 19:33:20 +0200990 pc_c_unsecure: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc $(LIBDIR)/$(CONFIG)/pkgconfig/gpr.pc
murgatroid998faab232015-06-30 17:24:21 -0700991
Craig Tiller841c8802015-09-10 13:06:37 -0700992 pc_cxx: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc
murgatroid998faab232015-06-30 17:24:21 -0700993
Craig Tiller841c8802015-09-10 13:06:37 -0700994 pc_cxx_unsecure: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800995
vjpai20410922016-06-15 09:21:42 -0700996 ifeq ($(EMBED_OPENSSL),true)
Craig Tiller841c8802015-09-10 13:06:37 -0700997 privatelibs_cxx: \
998 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100999 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001000 % if lib.build == 'private' and lib.language == 'c++' and not lib.get('external_deps', None):
1001 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
1002 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001003 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001004 % endfor
Craig Tillereda85c62016-07-01 12:45:19 -07001005
vjpai20410922016-06-15 09:21:42 -07001006 else
1007 privatelibs_cxx: \
1008 % for lib in libs:
1009 % if 'Makefile' in lib.get('build_system', ['Makefile']):
1010 % if lib.build == 'private' and lib.language == 'c++' and not lib.get('external_deps', None) and not lib.boringssl:
1011 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a\
1012 % endif
1013 % endif
1014 % endfor
Craig Tillereda85c62016-07-01 12:45:19 -07001015
vjpai20410922016-06-15 09:21:42 -07001016 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001017
1018
Craig Tillereda85c62016-07-01 12:45:19 -07001019 buildtests: buildtests_c buildtests_cxx
nnoble29e1d292014-12-01 10:27:40 -08001020
Craig Tiller3824b6e2015-12-09 11:19:59 -08001021 buildtests_c: privatelibs_c <%text>\</%text>
Craig Tiller841c8802015-09-10 13:06:37 -07001022 % for tgt in targets:
1023 % if tgt.build == 'test' and not tgt.language == 'c++' and not tgt.get('external_deps', None):
Craig Tiller3824b6e2015-12-09 11:19:59 -08001024 $(BINDIR)/$(CONFIG)/${tgt.name} <%text>\</%text>
Craig Tiller841c8802015-09-10 13:06:37 -07001025 % endif
1026 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001027
1028
vjpai20410922016-06-15 09:21:42 -07001029 ifeq ($(EMBED_OPENSSL),true)
Craig Tillereda85c62016-07-01 12:45:19 -07001030 buildtests_cxx: privatelibs_cxx <%text>\</%text>
Craig Tiller841c8802015-09-10 13:06:37 -07001031 % for tgt in targets:
1032 % if tgt.build == 'test' and tgt.language == 'c++' and not tgt.get('external_deps', None):
Craig Tiller3824b6e2015-12-09 11:19:59 -08001033 $(BINDIR)/$(CONFIG)/${tgt.name} <%text>\</%text>
Craig Tiller841c8802015-09-10 13:06:37 -07001034 % endif
1035 % endfor
Craig Tillereda85c62016-07-01 12:45:19 -07001036
vjpai20410922016-06-15 09:21:42 -07001037 else
Craig Tillereda85c62016-07-01 12:45:19 -07001038 buildtests_cxx: privatelibs_cxx <%text>\</%text>
vjpai20410922016-06-15 09:21:42 -07001039 % for tgt in targets:
1040 % if tgt.build == 'test' and tgt.language == 'c++' and not tgt.get('external_deps', None) and not tgt.boringssl:
1041 $(BINDIR)/$(CONFIG)/${tgt.name} <%text>\</%text>
1042 % endif
1043 % endfor
Craig Tillereda85c62016-07-01 12:45:19 -07001044
vjpai20410922016-06-15 09:21:42 -07001045 endif
nnoble29e1d292014-12-01 10:27:40 -08001046
1047
Craig Tillereda85c62016-07-01 12:45:19 -07001048 test: test_c test_cxx
nnoble29e1d292014-12-01 10:27:40 -08001049
Craig Tillereda85c62016-07-01 12:45:19 -07001050 flaky_test: flaky_test_c flaky_test_cxx
Nicolas "Pixel" Noble4251d562015-05-22 19:43:39 +02001051
Craig Tiller841c8802015-09-10 13:06:37 -07001052 test_c: buildtests_c
1053 % for tgt in targets:
1054 % 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):
1055 $(E) "[RUN] Testing ${tgt.name}"
1056 $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 )
1057 % endif
1058 % endfor
Nicolas "Pixel" Noble4251d562015-05-22 19:43:39 +02001059
1060
Craig Tiller841c8802015-09-10 13:06:37 -07001061 flaky_test_c: buildtests_c
1062 % for tgt in targets:
1063 % 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):
1064 $(E) "[RUN] Testing ${tgt.name}"
1065 $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 )
1066 % endif
1067 % endfor
nnoble29e1d292014-12-01 10:27:40 -08001068
1069
Craig Tillereda85c62016-07-01 12:45:19 -07001070 test_cxx: buildtests_cxx
Craig Tiller841c8802015-09-10 13:06:37 -07001071 % for tgt in targets:
1072 % 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):
1073 $(E) "[RUN] Testing ${tgt.name}"
1074 $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 )
1075 % endif
1076 % endfor
Nicolas "Pixel" Noble4251d562015-05-22 19:43:39 +02001077
1078
Craig Tiller841c8802015-09-10 13:06:37 -07001079 flaky_test_cxx: buildtests_cxx
1080 % for tgt in targets:
1081 % 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):
1082 $(E) "[RUN] Testing ${tgt.name}"
1083 $(Q) $(BINDIR)/$(CONFIG)/${tgt.name} || ( echo test ${tgt.name} failed ; exit 1 )
1084 % endif
1085 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001086
1087
Craig Tiller841c8802015-09-10 13:06:37 -07001088 test_python: static_c
1089 $(E) "[RUN] Testing python code"
1090 $(Q) tools/run_tests/run_tests.py -lpython -c$(CONFIG)
Nicolas "Pixel" Noble051a28f2015-03-17 22:54:54 +01001091
1092
Craig Tiller841c8802015-09-10 13:06:37 -07001093 tools: tools_c tools_cxx
Craig Tiller7552f0f2015-06-19 17:46:20 -07001094
1095
Craig Tiller841c8802015-09-10 13:06:37 -07001096 tools_c: privatelibs_c\
1097 % for tgt in targets:
1098 % if tgt.build == 'tool' and not tgt.language=='c++':
1099 $(BINDIR)/$(CONFIG)/${tgt.name}\
1100 % endif
1101 % endfor
Craig Tiller7552f0f2015-06-19 17:46:20 -07001102
1103
Craig Tiller841c8802015-09-10 13:06:37 -07001104 tools_cxx: privatelibs_cxx\
1105 % for tgt in targets:
1106 % if tgt.build == 'tool' and tgt.language=='c++':
1107 $(BINDIR)/$(CONFIG)/${tgt.name}\
1108 % endif
1109 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001110
1111
Craig Tiller841c8802015-09-10 13:06:37 -07001112 buildbenchmarks: privatelibs\
1113 % for tgt in targets:
1114 % if tgt.build == 'benchmark':
1115 $(BINDIR)/$(CONFIG)/${tgt.name}\
1116 % endif
1117 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001118
1119
Craig Tiller841c8802015-09-10 13:06:37 -07001120 benchmarks: buildbenchmarks
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001121
Craig Tiller841c8802015-09-10 13:06:37 -07001122 strip: strip-static strip-shared
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001123
Craig Tiller841c8802015-09-10 13:06:37 -07001124 strip-static: strip-static_c strip-static_cxx
nnoble20e2e3f2014-12-16 15:37:57 -08001125
Craig Tiller841c8802015-09-10 13:06:37 -07001126 strip-shared: strip-shared_c strip-shared_cxx
nnoble20e2e3f2014-12-16 15:37:57 -08001127
Nicolas Noble047b7272015-01-16 13:55:05 -08001128
Craig Tiller841c8802015-09-10 13:06:37 -07001129 # TODO(nnoble): the strip target is stripping in-place, instead
1130 # of copying files in a temporary folder.
1131 # This prevents proper debugging after running make install.
Nicolas Noble047b7272015-01-16 13:55:05 -08001132
Craig Tiller841c8802015-09-10 13:06:37 -07001133 strip-static_c: static_c
1134 ifeq ($(CONFIG),opt)
1135 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001136 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001137 % if lib.language == "c":
1138 % if lib.build == "all":
1139 % if not lib.get('external_deps', None):
1140 $(E) "[STRIP] Stripping lib${lib.name}.a"
1141 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a
1142 % endif
1143 % endif
1144 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001145 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001146 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001147 endif
nnoble85a49262014-12-08 18:14:03 -08001148
Craig Tiller841c8802015-09-10 13:06:37 -07001149 strip-static_cxx: static_cxx
1150 ifeq ($(CONFIG),opt)
1151 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001152 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001153 % if lib.language == "c++":
1154 % if lib.build == "all":
1155 $(E) "[STRIP] Stripping lib${lib.name}.a"
1156 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a
1157 % endif
1158 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001159 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001160 % endfor
1161 endif
Nicolas "Pixel" Noble4ef9b862015-08-14 19:35:24 +02001162
Craig Tiller841c8802015-09-10 13:06:37 -07001163 strip-shared_c: shared_c
1164 ifeq ($(CONFIG),opt)
1165 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001166 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001167 % if lib.language == "c":
1168 % if lib.build == "all":
1169 % if not lib.get('external_deps', None):
Craig Tiller27f70842016-09-15 16:21:54 -07001170 $(E) "[STRIP] Stripping $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
1171 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
Craig Tiller841c8802015-09-10 13:06:37 -07001172 % endif
1173 % endif
1174 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001175 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001176 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001177 endif
nnoble85a49262014-12-08 18:14:03 -08001178
Craig Tiller841c8802015-09-10 13:06:37 -07001179 strip-shared_cxx: shared_cxx
1180 ifeq ($(CONFIG),opt)
1181 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001182 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001183 % if lib.language == "c++":
1184 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001185 $(E) "[STRIP] Stripping $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
1186 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
Craig Tiller841c8802015-09-10 13:06:37 -07001187 % endif
1188 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001189 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001190 % endfor
1191 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001192
Craig Tiller841c8802015-09-10 13:06:37 -07001193 strip-shared_csharp: shared_csharp
1194 ifeq ($(CONFIG),opt)
1195 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001196 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001197 % if lib.language == "csharp":
1198 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001199 $(E) "[STRIP] Stripping $(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP)"
1200 $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)${lib.name}$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP)
Craig Tiller841c8802015-09-10 13:06:37 -07001201 % endif
1202 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001203 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001204 % endfor
1205 endif
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -08001206
Craig Tiller841c8802015-09-10 13:06:37 -07001207 cache.mk::
1208 $(E) "[MAKE] Generating $@"
1209 $(Q) echo "$(CACHE_MK)" | tr , '\n' >$@
murgatroid99aa521572015-07-10 14:49:12 -07001210
Jan Tattermusch96510252018-05-07 19:33:20 +02001211 $(LIBDIR)/$(CONFIG)/pkgconfig/gpr.pc:
1212 $(E) "[MAKE] Generating $@"
1213 $(Q) mkdir -p $(@D)
1214 $(Q) echo "$(GPR_PC_FILE)" | tr , '\n' >$@
1215
Craig Tiller841c8802015-09-10 13:06:37 -07001216 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc:
1217 $(E) "[MAKE] Generating $@"
1218 $(Q) mkdir -p $(@D)
1219 $(Q) echo "$(GRPC_PC_FILE)" | tr , '\n' >$@
murgatroid998faab232015-06-30 17:24:21 -07001220
Craig Tiller841c8802015-09-10 13:06:37 -07001221 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc:
1222 $(E) "[MAKE] Generating $@"
1223 $(Q) mkdir -p $(@D)
1224 $(Q) echo "$(GRPC_UNSECURE_PC_FILE)" | tr , '\n' >$@
murgatroid998faab232015-06-30 17:24:21 -07001225
Craig Tiller841c8802015-09-10 13:06:37 -07001226 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc:
1227 $(E) "[MAKE] Generating $@"
1228 $(Q) mkdir -p $(@D)
1229 $(Q) echo "$(GRPCXX_PC_FILE)" | tr , '\n' >$@
murgatroid998faab232015-06-30 17:24:21 -07001230
Craig Tiller841c8802015-09-10 13:06:37 -07001231 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc:
1232 $(E) "[MAKE] Generating $@"
1233 $(Q) mkdir -p $(@D)
1234 $(Q) echo "$(GRPCXX_UNSECURE_PC_FILE)" | tr , '\n' >$@
murgatroid998faab232015-06-30 17:24:21 -07001235
Craig Tiller841c8802015-09-10 13:06:37 -07001236 % for p in protos:
1237 ifeq ($(NO_PROTOC),true)
1238 $(GENDIR)/${p}.pb.cc: protoc_dep_error
1239 $(GENDIR)/${p}.grpc.pb.cc: protoc_dep_error
1240 else
Mahak Mukhifb059a22017-04-18 14:40:00 -07001241 <%
1242 pluginflags=""
1243 %>
1244 % if p in ["src/proto/grpc/testing/compiler_test", "src/proto/grpc/testing/echo"]:
1245 <%
1246 pluginflags="generate_mock_code=true:"
1247 %>
1248 % endif
Craig Tiller1b4e3302015-12-17 16:35:00 -08001249 $(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 -07001250 $(E) "[PROTOC] Generating protobuf CC file from $<"
1251 $(Q) mkdir -p `dirname $@`
David Garcia Quintase68ed6f2016-06-17 12:49:14 -07001252 $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
Nicolas "Pixel" Noble0caebbf2015-04-09 23:08:51 +02001253
Vijay Paie00f2a32017-07-31 01:04:45 -07001254 $(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 -07001255 $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
1256 $(Q) mkdir -p `dirname $@`
Mahak Mukhifb059a22017-04-18 14:40:00 -07001257 $(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 -07001258 endif
nnoble72309c62014-12-12 11:42:26 -08001259
Craig Tiller841c8802015-09-10 13:06:37 -07001260 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001261
Craig Tiller841c8802015-09-10 13:06:37 -07001262 ifeq ($(CONFIG),stapprof)
1263 src/core/profiling/stap_timers.c: $(GENDIR)/src/core/profiling/stap_probes.h
1264 ifeq ($(HAS_SYSTEMTAP),true)
1265 $(GENDIR)/src/core/profiling/stap_probes.h: src/core/profiling/stap_probes.d
1266 $(E) "[DTRACE] Compiling $<"
1267 $(Q) mkdir -p `dirname $@`
1268 $(Q) $(DTRACE) -C -h -s $< -o $@
1269 else
1270 $(GENDIR)/src/core/profiling/stap_probes.h: systemtap_dep_error stop
1271 endif
1272 endif
David Garcia Quintas611b7362015-04-27 15:49:31 -07001273
Craig Tiller841c8802015-09-10 13:06:37 -07001274 $(OBJDIR)/$(CONFIG)/%.o : %.c
1275 $(E) "[C] Compiling $<"
1276 $(Q) mkdir -p `dirname $@`
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01001277 $(Q) $(CC) $(CPPFLAGS) $(CFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001278
Craig Tiller841c8802015-09-10 13:06:37 -07001279 $(OBJDIR)/$(CONFIG)/%.o : $(GENDIR)/%.pb.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
Craig Tiller841c8802015-09-10 13:06:37 -07001284 $(OBJDIR)/$(CONFIG)/src/compiler/%.o : src/compiler/%.cc
1285 $(E) "[HOSTCXX] Compiling $<"
1286 $(Q) mkdir -p `dirname $@`
1287 $(Q) $(HOST_CXX) $(HOST_CXXFLAGS) $(HOST_CPPFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
nnoble72309c62014-12-12 11:42:26 -08001288
ncteisenf9d7c272017-11-06 20:32:57 -08001289 $(OBJDIR)/$(CONFIG)/src/core/%.o : src/core/%.cc
1290 $(E) "[CXX] Compiling $<"
1291 $(Q) mkdir -p `dirname $@`
1292 $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(COREFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
1293
1294 $(OBJDIR)/$(CONFIG)/test/core/%.o : test/core/%.cc
1295 $(E) "[CXX] Compiling $<"
1296 $(Q) mkdir -p `dirname $@`
1297 $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(COREFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
1298
Craig Tiller841c8802015-09-10 13:06:37 -07001299 $(OBJDIR)/$(CONFIG)/%.o : %.cc
1300 $(E) "[CXX] Compiling $<"
1301 $(Q) mkdir -p `dirname $@`
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01001302 $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001303
Nicolas "Pixel" Noblecbdf1322018-06-14 00:53:15 +02001304 $(OBJDIR)/$(CONFIG)/%.o : %.cpp
1305 $(E) "[CXX] Compiling $<"
1306 $(Q) mkdir -p `dirname $@`
1307 $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
1308
murgatroid99a3c55352016-08-10 13:41:31 -07001309 install: install_c install_cxx install-plugins install-certs
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001310
Craig Tiller841c8802015-09-10 13:06:37 -07001311 install_c: install-headers_c install-static_c install-shared_c
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001312
Craig Tiller841c8802015-09-10 13:06:37 -07001313 install_cxx: install-headers_cxx install-static_cxx install-shared_cxx
nnoble85a49262014-12-08 18:14:03 -08001314
Craig Tiller841c8802015-09-10 13:06:37 -07001315 install_csharp: install-shared_csharp install_c
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -08001316
Craig Tiller841c8802015-09-10 13:06:37 -07001317 install_grpc_csharp_ext: install_csharp
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -08001318
Craig Tiller841c8802015-09-10 13:06:37 -07001319 install-headers: install-headers_c install-headers_cxx
nnoble85a49262014-12-08 18:14:03 -08001320
Craig Tiller841c8802015-09-10 13:06:37 -07001321 install-headers_c:
1322 $(E) "[INSTALL] Installing public C headers"
1323 $(Q) $(foreach h, $(PUBLIC_HEADERS_C), $(INSTALL) -d $(prefix)/$(dir $(h)) && ) exit 0 || exit 1
1324 $(Q) $(foreach h, $(PUBLIC_HEADERS_C), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1
nnoble85a49262014-12-08 18:14:03 -08001325
Craig Tiller841c8802015-09-10 13:06:37 -07001326 install-headers_cxx:
1327 $(E) "[INSTALL] Installing public C++ headers"
1328 $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) -d $(prefix)/$(dir $(h)) && ) exit 0 || exit 1
1329 $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1
nnoble85a49262014-12-08 18:14:03 -08001330
Craig Tiller841c8802015-09-10 13:06:37 -07001331 install-static: install-static_c install-static_cxx
nnoble85a49262014-12-08 18:14:03 -08001332
Craig Tiller841c8802015-09-10 13:06:37 -07001333 install-static_c: static_c strip-static_c install-pkg-config_c
1334 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001335 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001336 % if lib.language == "c":
1337 % if lib.build == "all":
1338 % if not lib.get('external_deps', None):
1339 $(E) "[INSTALL] Installing lib${lib.name}.a"
1340 $(Q) $(INSTALL) -d $(prefix)/lib
1341 $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a $(prefix)/lib/lib${lib.name}.a
1342 % endif
1343 % endif
1344 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001345 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001346 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001347
Craig Tiller841c8802015-09-10 13:06:37 -07001348 install-static_cxx: static_cxx strip-static_cxx install-pkg-config_cxx
1349 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001350 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001351 % if lib.language == "c++":
1352 % if lib.build == "all":
1353 $(E) "[INSTALL] Installing lib${lib.name}.a"
1354 $(Q) $(INSTALL) -d $(prefix)/lib
1355 $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a $(prefix)/lib/lib${lib.name}.a
1356 % endif
1357 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001358 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001359 % endfor
nnoble85a49262014-12-08 18:14:03 -08001360
Craig Tiller841c8802015-09-10 13:06:37 -07001361 <%def name="install_shared(lang_filter)">\
1362 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001363 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001364 % if lib.language == lang_filter:
1365 % if lib.build == "all":
1366 % if not lib.get('external_deps', None):
Craig Tiller27f70842016-09-15 16:21:54 -07001367 $(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 +01001368 $(Q) $(INSTALL) -d $(prefix)/lib
Mario Emmenlauer8e883b22017-01-12 11:45:52 +01001369 $(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 -07001370 ifeq ($(SYSTEM),MINGW32)
Mario Emmenlauer44b2d082017-01-13 12:35:49 +01001371 $(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 +01001372 else ifneq ($(SYSTEM),Darwin)
Craig Tiller27f70842016-09-15 16:21:54 -07001373 $(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}
1374 $(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 -07001375 endif
1376 % endif
1377 % endif
1378 % endif
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001379 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001380 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001381 ifneq ($(SYSTEM),MINGW32)
1382 ifneq ($(SYSTEM),Darwin)
1383 $(Q) ldconfig || true
1384 endif
1385 endif
1386 </%def>
nnoble85a49262014-12-08 18:14:03 -08001387
Craig Tiller841c8802015-09-10 13:06:37 -07001388 install-shared_c: shared_c strip-shared_c install-pkg-config_c
1389 ${install_shared("c")}
Nicolas "Pixel" Noble522d7122015-02-19 01:28:02 +01001390
Craig Tiller841c8802015-09-10 13:06:37 -07001391 install-shared_cxx: shared_cxx strip-shared_cxx install-shared_c install-pkg-config_cxx
1392 ${install_shared("c++")}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001393
Craig Tiller841c8802015-09-10 13:06:37 -07001394 install-shared_csharp: shared_csharp strip-shared_csharp
1395 ${install_shared("csharp")}
Nicolas "Pixel" Noble522d7122015-02-19 01:28:02 +01001396
Craig Tiller841c8802015-09-10 13:06:37 -07001397 install-plugins: $(PROTOC_PLUGINS)
Craig Tiller841c8802015-09-10 13:06:37 -07001398 $(E) "[INSTALL] Installing grpc protoc plugins"
1399 % for tgt in targets:
1400 % if tgt.build == 'protoc':
1401 $(Q) $(INSTALL) -d $(prefix)/bin
1402 $(Q) $(INSTALL) $(BINDIR)/$(CONFIG)/${tgt.name} $(prefix)/bin/${tgt.name}
1403 % endif
1404 % endfor
Jan Tattermusch2ec0b3e2015-02-18 15:03:12 -08001405
Tobias Jungel5e176d52018-01-23 10:30:55 +01001406 install-grpc-cli: grpc_cli
1407 $(E) "[INSTALL] Installing grpc cli"
1408 $(Q) $(INSTALL) -d $(prefix)/bin
1409 $(Q) $(INSTALL) $(BINDIR)/$(CONFIG)/grpc_cli $(prefix)/bin/grpc_cli
1410
Craig Tillereda85c62016-07-01 12:45:19 -07001411 install-pkg-config_c: pc_c pc_c_unsecure
Craig Tiller841c8802015-09-10 13:06:37 -07001412 $(E) "[INSTALL] Installing C pkg-config files"
1413 $(Q) $(INSTALL) -d $(prefix)/lib/pkgconfig
Jan Tattermusch96510252018-05-07 19:33:20 +02001414 $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/gpr.pc $(prefix)/lib/pkgconfig/gpr.pc
ncteisenbddedb92017-12-20 13:49:46 -05001415 $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc $(prefix)/lib/pkgconfig/grpc.pc
1416 $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc $(prefix)/lib/pkgconfig/grpc_unsecure.pc
murgatroid998faab232015-06-30 17:24:21 -07001417
Craig Tiller841c8802015-09-10 13:06:37 -07001418 install-pkg-config_cxx: pc_cxx pc_cxx_unsecure
1419 $(E) "[INSTALL] Installing C++ pkg-config files"
1420 $(Q) $(INSTALL) -d $(prefix)/lib/pkgconfig
ncteisenbddedb92017-12-20 13:49:46 -05001421 $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc $(prefix)/lib/pkgconfig/grpc++.pc
1422 $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc $(prefix)/lib/pkgconfig/grpc++_unsecure.pc
murgatroid998faab232015-06-30 17:24:21 -07001423
Craig Tiller841c8802015-09-10 13:06:37 -07001424 install-certs: etc/roots.pem
1425 $(E) "[INSTALL] Installing root certificates"
1426 $(Q) $(INSTALL) -d $(prefix)/share/grpc
1427 $(Q) $(INSTALL) etc/roots.pem $(prefix)/share/grpc/roots.pem
Nicolas "Pixel" Noble161ea232015-02-22 05:48:53 +01001428
Craig Tiller841c8802015-09-10 13:06:37 -07001429 clean:
1430 $(E) "[CLEAN] Cleaning build directories."
1431 $(Q) $(RM) -rf $(OBJDIR) $(LIBDIR) $(BINDIR) $(GENDIR) cache.mk
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001432
1433
Craig Tiller841c8802015-09-10 13:06:37 -07001434 # The various libraries
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001435
Craig Tiller841c8802015-09-10 13:06:37 -07001436 % for lib in libs:
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001437 % if 'Makefile' in lib.get('build_system', ['Makefile']):
Craig Tiller841c8802015-09-10 13:06:37 -07001438 ${makelib(lib)}
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001439 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001440 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001441
1442
Craig Tiller841c8802015-09-10 13:06:37 -07001443 # All of the test targets, and protoc plugins
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001444
Craig Tiller841c8802015-09-10 13:06:37 -07001445 % for tgt in targets:
1446 ${maketarget(tgt)}
1447 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001448
Craig Tiller841c8802015-09-10 13:06:37 -07001449 <%def name="makelib(lib)">
1450 LIB${lib.name.upper()}_SRC = \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001451
Craig Tiller841c8802015-09-10 13:06:37 -07001452 % for src in lib.src:
1453 ${proto_to_cc(src)} \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001454
Craig Tiller841c8802015-09-10 13:06:37 -07001455 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001456
Craig Tiller841c8802015-09-10 13:06:37 -07001457 % if "public_headers" in lib:
1458 % if lib.language == "c++":
1459 PUBLIC_HEADERS_CXX += \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001460
Craig Tiller841c8802015-09-10 13:06:37 -07001461 % else:
1462 PUBLIC_HEADERS_C += \\
nnoble85a49262014-12-08 18:14:03 -08001463
Craig Tiller841c8802015-09-10 13:06:37 -07001464 % endif
1465 % for hdr in lib.public_headers:
1466 ${hdr} \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001467
Craig Tiller841c8802015-09-10 13:06:37 -07001468 % endfor
1469 % endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001470
Craig Tiller841c8802015-09-10 13:06:37 -07001471 LIB${lib.name.upper()}_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIB${lib.name.upper()}_SRC))))
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001472
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01001473 % if lib.get('defaults', None):
1474 % for name, value in defaults.get(lib.defaults).iteritems():
1475 $(LIB${lib.name.upper()}_OBJS): ${name} += ${value}
1476 % endfor
Craig Tiller0fe5ee72015-12-22 12:50:36 -08001477 % endif
1478
Craig Tiller841c8802015-09-10 13:06:37 -07001479 ## If the library requires OpenSSL, let's add some restrictions.
1480 % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1481 ifeq ($(NO_SECURE),true)
nnoble69ac39f2014-12-12 15:43:38 -08001482
Craig Tiller841c8802015-09-10 13:06:37 -07001483 # You can't build secure libraries if you don't have OpenSSL.
Nicolas Noble047b7272015-01-16 13:55:05 -08001484
Craig Tiller841c8802015-09-10 13:06:37 -07001485 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001486
Craig Tiller841c8802015-09-10 13:06:37 -07001487 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001488 $(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 -07001489 % endif
nnoble5b7f32a2014-12-22 08:12:44 -08001490
Craig Tiller841c8802015-09-10 13:06:37 -07001491 else
nnoble69ac39f2014-12-12 15:43:38 -08001492
Craig Tiller841c8802015-09-10 13:06:37 -07001493 % if lib.language == 'c++':
1494 ifeq ($(NO_PROTOBUF),true)
Nicolas Noble53830622015-02-12 16:56:38 -08001495
Craig Tiller841c8802015-09-10 13:06:37 -07001496 # 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 -08001497
Craig Tiller841c8802015-09-10 13:06:37 -07001498 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: protobuf_dep_error
Nicolas Noble53830622015-02-12 16:56:38 -08001499
Craig Tiller841c8802015-09-10 13:06:37 -07001500 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001501 $(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 -07001502 % endif
Nicolas Noble53830622015-02-12 16:56:38 -08001503
Craig Tiller841c8802015-09-10 13:06:37 -07001504 else
1505 % endif
Nicolas Noble53830622015-02-12 16:56:38 -08001506
Alexander Polcyn690dde62017-10-18 00:20:33 -07001507 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP)\
Craig Tiller841c8802015-09-10 13:06:37 -07001508 ## The else here corresponds to the if secure earlier.
1509 % else:
1510 % if lib.language == 'c++':
1511 ifeq ($(NO_PROTOBUF),true)
Nicolas Noble53830622015-02-12 16:56:38 -08001512
Craig Tiller841c8802015-09-10 13:06:37 -07001513 # 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 -08001514
Craig Tiller841c8802015-09-10 13:06:37 -07001515 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: protobuf_dep_error
Nicolas Noble53830622015-02-12 16:56:38 -08001516
Craig Tiller841c8802015-09-10 13:06:37 -07001517 % if lib.build == "all":
Craig Tiller27f70842016-09-15 16:21:54 -07001518 $(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 -07001519 % endif
Nicolas Noble53830622015-02-12 16:56:38 -08001520
Craig Tiller841c8802015-09-10 13:06:37 -07001521 else
Nicolas Noble53830622015-02-12 16:56:38 -08001522
Craig Tiller841c8802015-09-10 13:06:37 -07001523 % endif
Yuchen Zeng78f9f942016-08-05 18:21:57 -07001524 $(LIBDIR)/$(CONFIG)/lib${lib.name}.a: \
Alexander Polcyn80f9c2a2018-05-16 20:15:16 -07001525 % if lib.name not in ['z', 'ares', 'address_sorting']:
Nicolas "Pixel" Nobled649c212016-01-27 20:27:30 +01001526 $(ZLIB_DEP) \
Yuchen Zeng15141a62016-08-17 18:56:04 -07001527 $(CARES_DEP) \
Alexander Polcyn690dde62017-10-18 00:20:33 -07001528 $(ADDRESS_SORTING_DEP) \
1529 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001530 % endif
1531 % if lib.language == 'c++':
1532 $(PROTOBUF_DEP)\
1533 % endif
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001534 $(LIB${lib.name.upper()}_OBJS) \
1535 % if lib.get('baselib', False):
Craig Tiller1298afd2016-02-09 12:29:17 -08001536 $(LIBGPR_OBJS) \
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001537 $(ZLIB_MERGE_OBJS) \
Yuchen Zeng15141a62016-08-17 18:56:04 -07001538 $(CARES_MERGE_OBJS) \
Alexander Polcyn690dde62017-10-18 00:20:33 -07001539 $(ADDRESS_SORTING_MERGE_OBJS) \
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001540 % if lib.get('secure', 'check') == True:
1541 $(OPENSSL_MERGE_OBJS) \
1542 % endif
1543 % endif
1544
Craig Tiller841c8802015-09-10 13:06:37 -07001545 $(E) "[AR] Creating $@"
1546 $(Q) mkdir -p `dirname $@`
1547 $(Q) rm -f $(LIBDIR)/$(CONFIG)/lib${lib.name}.a
Vijay Paicc7eb8e2016-07-19 19:03:55 -07001548 $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/lib${lib.name}.a $(LIB${lib.name.upper()}_OBJS) \
Craig Tiller841c8802015-09-10 13:06:37 -07001549 % if lib.get('baselib', False):
Craig Tiller1298afd2016-02-09 12:29:17 -08001550 $(LIBGPR_OBJS) \
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001551 $(ZLIB_MERGE_OBJS) \
Yuchen Zeng15141a62016-08-17 18:56:04 -07001552 $(CARES_MERGE_OBJS) \
Alexander Polcyn690dde62017-10-18 00:20:33 -07001553 $(ADDRESS_SORTING_MERGE_OBJS) \
Craig Tiller841c8802015-09-10 13:06:37 -07001554 % if lib.get('secure', 'check') == True:
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001555 $(OPENSSL_MERGE_OBJS) \
Craig Tiller841c8802015-09-10 13:06:37 -07001556 % endif
1557 % endif
Nicolas "Pixel" Noblef51a9012016-02-03 07:39:43 +01001558
Craig Tiller841c8802015-09-10 13:06:37 -07001559 ifeq ($(SYSTEM),Darwin)
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +01001560 $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/lib${lib.name}.a
Craig Tiller841c8802015-09-10 13:06:37 -07001561 endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001562
Craig Tiller841c8802015-09-10 13:06:37 -07001563 <%
Nicolas "Pixel" Noble010f1e72015-04-23 02:23:49 +02001564
Craig Tiller841c8802015-09-10 13:06:37 -07001565 if lib.language == 'c++':
1566 ld = '$(LDXX)'
1567 else:
1568 ld = '$(LD)'
nnoble5b7f32a2014-12-22 08:12:44 -08001569
Craig Tiller40c8fba2016-09-15 16:29:09 -07001570 out_mingbase = '$(LIBDIR)/$(CONFIG)/' + lib.name + '$(SHARED_VERSION_' + lang_to_var[lib.language] + ')'
1571 out_libbase = '$(LIBDIR)/$(CONFIG)/lib' + lib.name + '$(SHARED_VERSION_' + lang_to_var[lib.language] + ')'
nnoble5b7f32a2014-12-22 08:12:44 -08001572
Nicolas "Pixel" Noble8087d702017-02-01 02:23:50 +01001573 common = '$(LIB' + lib.name.upper() + '_OBJS)'
nnoble5b7f32a2014-12-22 08:12:44 -08001574
Craig Tillerd7b1bdf2016-11-04 16:20:13 -07001575 link_libs = ''
Alexander Polcyn690dde62017-10-18 00:20:33 -07001576 lib_deps = ' $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP)'
Craig Tiller841c8802015-09-10 13:06:37 -07001577 mingw_libs = ''
Alexander Polcyn690dde62017-10-18 00:20:33 -07001578 mingw_lib_deps = ' $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP)'
Craig Tiller841c8802015-09-10 13:06:37 -07001579 if lib.language == 'c++':
1580 lib_deps += ' $(PROTOBUF_DEP)'
1581 mingw_lib_deps += ' $(PROTOBUF_DEP)'
Jan Tattermusch324140c2016-01-12 08:54:01 -08001582 if lib.get('deps_linkage', None) == 'static':
1583 for dep in lib.get('deps', []):
1584 lib_archive = '$(LIBDIR)/$(CONFIG)/lib' + dep + '.a'
1585 common = common + ' ' + lib_archive
1586 lib_deps = lib_deps + ' ' + lib_archive
1587 mingw_lib_deps = mingw_lib_deps + ' ' + lib_archive
1588 else:
1589 for dep in lib.get('deps', []):
Craig Tillerd7b1bdf2016-11-04 16:20:13 -07001590 dep_lib = None
1591 for dl in libs:
1592 if dl.name == dep:
1593 dep_lib = dl
1594 assert dep_lib, 'lib %s not found (in %s)' % (dep, lib.name)
1595 link_libs = link_libs + ' -l' + dep
1596 lib_deps = lib_deps + ' $(LIBDIR)/$(CONFIG)/lib' + dep + '.$(SHARED_EXT_' + lang_to_var[dep_lib.language] + ')'
Mario Emmenlauer44b2d082017-01-13 12:35:49 +01001597 mingw_libs = mingw_libs + ' -l' + dep + '$(SHARED_VERSION_' + lang_to_var[dep_lib.language] + ')-dll'
Mario Emmenlauer8e883b22017-01-12 11:45:52 +01001598 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 -08001599
Craig Tiller841c8802015-09-10 13:06:37 -07001600 security = lib.get('secure', 'check')
1601 if security == True:
1602 common = common + ' $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE)'
Alexander Polcyn690dde62017-10-18 00:20:33 -07001603 common = common + ' $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS)'
Nicolas "Pixel" Noblea7c162c2015-07-24 20:21:51 +02001604
Craig Tiller841c8802015-09-10 13:06:37 -07001605 if security in [True, 'check']:
1606 for src in lib.src:
1607 if not proto_re.match(src):
1608 sources_that_need_openssl.add(src)
1609 else:
1610 for src in lib.src:
1611 sources_that_don_t_need_openssl.add(src)
Nicolas "Pixel" Noble061690d2015-03-06 22:58:58 +01001612
Craig Tiller841c8802015-09-10 13:06:37 -07001613 if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1614 lib_deps = lib_deps + ' $(OPENSSL_DEP)'
1615 mingw_lib_deps = mingw_lib_deps + ' $(OPENSSL_DEP)'
Nicolas "Pixel" Nobledda049c2015-02-21 00:39:32 +01001616
Craig Tiller841c8802015-09-10 13:06:37 -07001617 if lib.language == 'c++':
1618 common = common + ' $(LDLIBSXX) $(LDLIBS_PROTOBUF)'
Craig Tiller4bef7ce2016-02-02 08:38:43 -08001619
1620 ldflags = '$(LDFLAGS)'
1621 if lib.get('LDFLAGS', None):
1622 ldflags += ' ' + lib['LDFLAGS']
Nicolas "Pixel" Noble8087d702017-02-01 02:23:50 +01001623
1624 common = common + ' $(LDLIBS)'
Craig Tiller841c8802015-09-10 13:06:37 -07001625 %>
nnoble5b7f32a2014-12-22 08:12:44 -08001626
Craig Tiller841c8802015-09-10 13:06:37 -07001627 % if lib.build == "all":
1628 ifeq ($(SYSTEM),MINGW32)
Craig Tiller38b99e92016-09-15 16:18:09 -07001629 ${out_mingbase}.$(SHARED_EXT_${lang_to_var[lib.language]}): $(LIB${lib.name.upper()}_OBJS) ${mingw_lib_deps}
Craig Tiller841c8802015-09-10 13:06:37 -07001630 $(E) "[LD] Linking $@"
1631 $(Q) mkdir -p `dirname $@`
Mario Emmenlauer294dc2f2016-12-13 00:07:12 +01001632 $(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 -07001633 else
Craig Tiller38b99e92016-09-15 16:18:09 -07001634 ${out_libbase}.$(SHARED_EXT_${lang_to_var[lib.language]}): $(LIB${lib.name.upper()}_OBJS) ${lib_deps}
Craig Tiller841c8802015-09-10 13:06:37 -07001635 $(E) "[LD] Linking $@"
1636 $(Q) mkdir -p `dirname $@`
1637 ifeq ($(SYSTEM),Darwin)
Mario Emmenlauer8e883b22017-01-12 11:45:52 +01001638 $(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 -07001639 else
murgatroid99d166e382017-03-24 10:03:10 -07001640 $(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 +01001641 $(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}
1642 $(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 -07001643 endif
1644 endif
1645 % endif
1646 % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1647 ## If the lib was secure, we have to close the Makefile's if that tested
1648 ## the presence of OpenSSL.
Nicolas Noble53830622015-02-12 16:56:38 -08001649
Craig Tiller841c8802015-09-10 13:06:37 -07001650 endif
1651 % endif
1652 % if lib.language == 'c++':
1653 ## If the lib was C++, we have to close the Makefile's if that tested
Srini Polavarapucdc0e282018-03-26 18:16:15 -07001654 ## the presence of protobuf 3.5.0+
nnoble69ac39f2014-12-12 15:43:38 -08001655
Craig Tiller841c8802015-09-10 13:06:37 -07001656 endif
1657 % endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001658
Craig Tiller841c8802015-09-10 13:06:37 -07001659 % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1660 ifneq ($(NO_SECURE),true)
1661 % endif
1662 ifneq ($(NO_DEPS),true)
1663 -include $(LIB${lib.name.upper()}_OBJS:.o=.dep)
1664 endif
1665 % if lib.get('secure', 'check') == True or lib.get('secure', 'check') == 'check':
1666 endif
1667 % endif
1668 % for src in lib.src:
1669 % if not proto_re.match(src) and any(proto_re.match(src2) for src2 in lib.src):
1670 $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: ${' '.join(proto_to_cc(src2) for src2 in lib.src if proto_re.match(src2))}
1671 % endif
1672 % endfor
1673 </%def>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001674
Craig Tiller841c8802015-09-10 13:06:37 -07001675 <%def name="maketarget(tgt)"><% has_no_sources = not tgt.src %>
1676 % if not has_no_sources:
1677 ${tgt.name.upper()}_SRC = \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001678
Craig Tiller841c8802015-09-10 13:06:37 -07001679 % for src in tgt.src:
1680 ${proto_to_cc(src)} \\
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001681
Craig Tiller841c8802015-09-10 13:06:37 -07001682 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001683
Craig Tiller841c8802015-09-10 13:06:37 -07001684 ${tgt.name.upper()}_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(${tgt.name.upper()}_SRC))))
1685 % endif
1686 % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
1687 ifeq ($(NO_SECURE),true)
nnoble69ac39f2014-12-12 15:43:38 -08001688
Craig Tiller841c8802015-09-10 13:06:37 -07001689 # You can't build secure targets if you don't have OpenSSL.
Nicolas Noble047b7272015-01-16 13:55:05 -08001690
Craig Tiller841c8802015-09-10 13:06:37 -07001691 $(BINDIR)/$(CONFIG)/${tgt.name}: openssl_dep_error
nnoble69ac39f2014-12-12 15:43:38 -08001692
Craig Tiller841c8802015-09-10 13:06:37 -07001693 else
nnoble69ac39f2014-12-12 15:43:38 -08001694
Craig Tiller841c8802015-09-10 13:06:37 -07001695 % endif
Craig Tiller0fe5ee72015-12-22 12:50:36 -08001696
1697 % if tgt.boringssl:
1698 # boringssl needs an override to ensure that it does not include
1699 # system openssl headers regardless of other configuration
1700 # we do so here with a target specific variable assignment
Craig Tiller78222f72016-05-10 09:55:38 -07001701 $(${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 -08001702 $(${tgt.name.upper()}_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
1703 $(${tgt.name.upper()}_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
1704 % else:
1705 % endif
1706
Craig Tiller841c8802015-09-10 13:06:37 -07001707 ##
1708 ## We're not trying to add a dependency on building zlib and openssl here,
1709 ## as it's already done in the libraries. We're assuming that the build
1710 ## trickles down, and that a secure target requires a secure version of
1711 ## a library.
1712 ##
1713 ## That simplifies the codegen a bit, but prevents a fully defined Makefile.
1714 ## I can live with that.
1715 ##
1716 % if tgt.build == 'protoc' or tgt.language == 'c++':
Nicolas Noble53830622015-02-12 16:56:38 -08001717
Craig Tiller841c8802015-09-10 13:06:37 -07001718 ifeq ($(NO_PROTOBUF),true)
Nicolas Noble53830622015-02-12 16:56:38 -08001719
Srini Polavarapucdc0e282018-03-26 18:16:15 -07001720 # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
Nicolas Noble53830622015-02-12 16:56:38 -08001721
Craig Tiller841c8802015-09-10 13:06:37 -07001722 $(BINDIR)/$(CONFIG)/${tgt.name}: protobuf_dep_error
Nicolas Noble53830622015-02-12 16:56:38 -08001723
Craig Tiller841c8802015-09-10 13:06:37 -07001724 else
Nicolas Noble53830622015-02-12 16:56:38 -08001725
Craig Tiller841c8802015-09-10 13:06:37 -07001726 $(BINDIR)/$(CONFIG)/${tgt.name}: \
1727 % if not has_no_sources:
1728 $(PROTOBUF_DEP) $(${tgt.name.upper()}_OBJS)\
1729 % endif
1730 % else:
1731 $(BINDIR)/$(CONFIG)/${tgt.name}: \
1732 % if not has_no_sources:
1733 $(${tgt.name.upper()}_OBJS)\
1734 % endif
1735 % endif
1736 % for dep in tgt.deps:
1737 $(LIBDIR)/$(CONFIG)/lib${dep}.a\
1738 % endfor
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001739
Craig Tiller32173c52016-03-17 14:12:45 -07001740 % if tgt.language == "c++" or tgt.boringssl or tgt.build == 'fuzzer':
Craig Tiller841c8802015-09-10 13:06:37 -07001741 ## C++ targets specificies.
1742 % if tgt.build == 'protoc':
1743 $(E) "[HOSTLD] Linking $@"
1744 $(Q) mkdir -p `dirname $@`
1745 $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) \
1746 % if not has_no_sources:
1747 $(${tgt.name.upper()}_OBJS)\
1748 % endif
1749 % else:
1750 $(E) "[LD] Linking $@"
1751 $(Q) mkdir -p `dirname $@`
1752 $(Q) $(LDXX) $(LDFLAGS) \
1753 % if not has_no_sources:
1754 $(${tgt.name.upper()}_OBJS)\
1755 % endif
1756 % endif
1757 % else:
1758 ## C-only targets specificities.
1759 $(E) "[LD] Linking $@"
1760 $(Q) mkdir -p `dirname $@`
1761 $(Q) $(LD) $(LDFLAGS) \
1762 % if not has_no_sources:
1763 $(${tgt.name.upper()}_OBJS)\
1764 % endif
1765 % endif
1766 % for dep in tgt.deps:
1767 $(LIBDIR)/$(CONFIG)/lib${dep}.a\
1768 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001769 % if tgt.language == "c++":
1770 % if tgt.build == 'protoc':
1771 $(HOST_LDLIBSXX) $(HOST_LDLIBS_PROTOC)\
1772 % else:
1773 $(LDLIBSXX) $(LDLIBS_PROTOBUF)\
1774 % endif
1775 % endif
1776 % if tgt.build == 'protoc':
1777 $(HOST_LDLIBS)\
1778 % else:
1779 $(LDLIBS)\
1780 % endif
1781 % if tgt.build == 'protoc':
1782 $(HOST_LDLIBS_PROTOC)\
1783 % elif tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
1784 $(LDLIBS_SECURE)\
1785 % endif
1786 % if tgt.language == 'c++' and tgt.build == 'test':
1787 $(GTEST_LIB)\
1788 % elif tgt.language == 'c++' and tgt.build == 'benchmark':
1789 $(GTEST_LIB)\
1790 % endif
Craig Tiller32173c52016-03-17 14:12:45 -07001791 % if tgt.build == 'fuzzer':
1792 -lFuzzer\
1793 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001794 -o $(BINDIR)/$(CONFIG)/${tgt.name}
1795 % if tgt.build == 'protoc' or tgt.language == 'c++':
Nicolas Noble53830622015-02-12 16:56:38 -08001796
Craig Tiller841c8802015-09-10 13:06:37 -07001797 endif
1798 % endif
1799 % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
nnoble69ac39f2014-12-12 15:43:38 -08001800
Craig Tiller841c8802015-09-10 13:06:37 -07001801 endif
1802 % endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001803
Craig Tiller19f3ea22017-02-17 15:17:05 -08001804 % if tgt.get('defaults', None):
1805 % for name, value in defaults.get(tgt.defaults).iteritems():
1806 $(${tgt.name.upper()}_OBJS): ${name} += ${value}
1807 % endfor
1808 % endif
Craig Tiller841c8802015-09-10 13:06:37 -07001809 % for src in tgt.src:
1810 $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: \
1811 % for dep in tgt.deps:
1812 $(LIBDIR)/$(CONFIG)/lib${dep}.a\
1813 % endfor
Craig Tillerf5371ef2015-01-12 16:40:18 -08001814
Craig Tillerab230452016-01-04 08:18:43 -08001815 % if tgt.language == 'c89':
1816 % for src in tgt.src:
Craig Tillerea21ca22016-01-04 12:34:29 -08001817 $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o : ${src}
1818 $(E) "[C] Compiling $<"
1819 $(Q) mkdir -p `dirname $@`
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01001820 $(Q) $(CC) $(CPPFLAGS) $(CFLAGS) -std=c89 -pedantic -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
Craig Tillerab230452016-01-04 08:18:43 -08001821 % endfor
1822 % endif
1823
Craig Tiller841c8802015-09-10 13:06:37 -07001824 % endfor
1825 % if not has_no_sources:
1826 deps_${tgt.name}: $(${tgt.name.upper()}_OBJS:.o=.dep)
1827 % endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001828
Craig Tiller841c8802015-09-10 13:06:37 -07001829 % if not has_no_sources:
1830 % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
1831 ifneq ($(NO_SECURE),true)
1832 % endif
1833 ifneq ($(NO_DEPS),true)
1834 -include $(${tgt.name.upper()}_OBJS:.o=.dep)
1835 endif
1836 % if tgt.get('secure', 'check') == True or tgt.get('secure', 'check') == 'check':
1837 endif
1838 % endif
1839 % endif
Nicolas "Pixel" Noble472bb682015-11-03 19:09:01 +01001840 % for src in tgt.src:
1841 % if not proto_re.match(src) and any(proto_re.match(src2) for src2 in tgt.src):
1842 $(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: ${' '.join(proto_to_cc(src2) for src2 in tgt.src if proto_re.match(src2))}
1843 % endif
1844 % endfor
Craig Tiller841c8802015-09-10 13:06:37 -07001845 </%def>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001846
Craig Tiller841c8802015-09-10 13:06:37 -07001847 ifneq ($(OPENSSL_DEP),)
1848 # This is to ensure the embedded OpenSSL is built beforehand, properly
1849 # installing headers to their final destination on the drive. We need this
1850 # otherwise parallel compilation will fail if a source is compiled first.
1851 % for src in sorted(sources_that_need_openssl):
1852 % if src not in sources_that_don_t_need_openssl:
1853 ${src}: $(OPENSSL_DEP)
1854 % endif
1855 % endfor
1856 endif
Nicolas "Pixel" Noble010f1e72015-04-23 02:23:49 +02001857
Craig Tiller841c8802015-09-10 13:06:37 -07001858 .PHONY: all strip tools \
1859 dep_error openssl_dep_error openssl_dep_message git_update stop \
1860 buildtests buildtests_c buildtests_cxx \
1861 test test_c test_cxx \
1862 install install_c install_cxx \
1863 install-headers install-headers_c install-headers_cxx \
1864 install-shared install-shared_c install-shared_cxx \
1865 install-static install-static_c install-static_cxx \
1866 strip strip-shared strip-static \
1867 strip_c strip-shared_c strip-static_c \
1868 strip_cxx strip-shared_cxx strip-static_cxx \
1869 dep_c dep_cxx bins_dep_c bins_dep_cxx \
1870 clean
Craig Tillerb79c1e12016-02-23 10:00:58 -08001871
1872 .PHONY: printvars
1873 printvars:
1874 @$(foreach V,$(sort $(.VARIABLES)), \
1875 $(if $(filter-out environment% default automatic, \
1876 $(origin $V)),$(warning $V=$($V) ($(value $V)))))