|
| 1 | +# We borrow heavily from the kernel build setup, though we are simpler since |
| 2 | +# we don't have Kconfig tweaking settings on us. |
| 3 | + |
| 4 | +# The implicit make rules have it looking for RCS files, among other things. |
| 5 | +# We instead explicitly write all the rules we care about. |
| 6 | +# It's even quicker (saves ~200ms) to pass -r on the command line. |
| 7 | +MAKEFLAGS=-r |
| 8 | + |
| 9 | +# The source directory tree. |
| 10 | +srcdir := ../../../../.. |
| 11 | +abs_srcdir := $(abspath $(srcdir)) |
| 12 | + |
| 13 | +# The name of the builddir. |
| 14 | +builddir_name ?= out |
| 15 | + |
| 16 | +# The V=1 flag on command line makes us verbosely print command lines. |
| 17 | +ifdef V |
| 18 | + quiet= |
| 19 | +else |
| 20 | + quiet=quiet_ |
| 21 | +endif |
| 22 | + |
| 23 | +# Specify BUILDTYPE=Release on the command line for a release build. |
| 24 | +BUILDTYPE ?= Debug |
| 25 | + |
| 26 | +# Directory all our build output goes into. |
| 27 | +# Note that this must be two directories beneath src/ for unit tests to pass, |
| 28 | +# as they reach into the src/ directory for data with relative paths. |
| 29 | +builddir ?= $(builddir_name)/$(BUILDTYPE) |
| 30 | +abs_builddir := $(abspath $(builddir)) |
| 31 | +depsdir := $(builddir)/.deps |
| 32 | + |
| 33 | +# Object output directory. |
| 34 | +obj := $(builddir)/obj |
| 35 | +abs_obj := $(abspath $(obj)) |
| 36 | + |
| 37 | +# We build up a list of every single one of the targets so we can slurp in the |
| 38 | +# generated dependency rule Makefiles in one pass. |
| 39 | +all_deps := |
| 40 | + |
| 41 | + |
| 42 | + |
| 43 | +# C++ apps need to be linked with g++. |
| 44 | +# |
| 45 | +# Note: flock is used to seralize linking. Linking is a memory-intensive |
| 46 | +# process so running parallel links can often lead to thrashing. To disable |
| 47 | +# the serialization, override LINK via an envrionment variable as follows: |
| 48 | +# |
| 49 | +# export LINK=g++ |
| 50 | +# |
| 51 | +# This will allow make to invoke N linker processes as specified in -jN. |
| 52 | +LINK ?= flock $(builddir)/linker.lock $(CXX) |
| 53 | + |
| 54 | +CC.target ?= $(CC) |
| 55 | +CFLAGS.target ?= $(CFLAGS) |
| 56 | +CXX.target ?= $(CXX) |
| 57 | +CXXFLAGS.target ?= $(CXXFLAGS) |
| 58 | +LINK.target ?= $(LINK) |
| 59 | +LDFLAGS.target ?= $(LDFLAGS) |
| 60 | +AR.target ?= $(AR) |
| 61 | +ARFLAGS.target ?= crsT |
| 62 | + |
| 63 | +# N.B.: the logic of which commands to run should match the computation done |
| 64 | +# in gyp's make.py where ARFLAGS.host etc. is computed. |
| 65 | +# TODO(evan): move all cross-compilation logic to gyp-time so we don't need |
| 66 | +# to replicate this environment fallback in make as well. |
| 67 | +CC.host ?= gcc |
| 68 | +CFLAGS.host ?= |
| 69 | +CXX.host ?= g++ |
| 70 | +CXXFLAGS.host ?= |
| 71 | +LINK.host ?= g++ |
| 72 | +LDFLAGS.host ?= |
| 73 | +AR.host ?= ar |
| 74 | +ARFLAGS.host := crs |
| 75 | + |
| 76 | +# Define a dir function that can handle spaces. |
| 77 | +# http://www.gnu.org/software/make/manual/make.html#Syntax-of-Functions |
| 78 | +# "leading spaces cannot appear in the text of the first argument as written. |
| 79 | +# These characters can be put into the argument value by variable substitution." |
| 80 | +empty := |
| 81 | +space := $(empty) $(empty) |
| 82 | + |
| 83 | +# http://stackoverflow.com/questions/1189781/using-make-dir-or-notdir-on-a-path-with-spaces |
| 84 | +replace_spaces = $(subst $(space),?,$1) |
| 85 | +unreplace_spaces = $(subst ?,$(space),$1) |
| 86 | +dirx = $(call unreplace_spaces,$(dir $(call replace_spaces,$1))) |
| 87 | + |
| 88 | +# Flags to make gcc output dependency info. Note that you need to be |
| 89 | +# careful here to use the flags that ccache and distcc can understand. |
| 90 | +# We write to a dep file on the side first and then rename at the end |
| 91 | +# so we can't end up with a broken dep file. |
| 92 | +depfile = $(depsdir)/$(call replace_spaces,$@).d |
| 93 | +DEPFLAGS = -MMD -MF $(depfile).raw |
| 94 | + |
| 95 | +# We have to fixup the deps output in a few ways. |
| 96 | +# (1) the file output should mention the proper .o file. |
| 97 | +# ccache or distcc lose the path to the target, so we convert a rule of |
| 98 | +# the form: |
| 99 | +# foobar.o: DEP1 DEP2 |
| 100 | +# into |
| 101 | +# path/to/foobar.o: DEP1 DEP2 |
| 102 | +# (2) we want missing files not to cause us to fail to build. |
| 103 | +# We want to rewrite |
| 104 | +# foobar.o: DEP1 DEP2 \ |
| 105 | +# DEP3 |
| 106 | +# to |
| 107 | +# DEP1: |
| 108 | +# DEP2: |
| 109 | +# DEP3: |
| 110 | +# so if the files are missing, they're just considered phony rules. |
| 111 | +# We have to do some pretty insane escaping to get those backslashes |
| 112 | +# and dollar signs past make, the shell, and sed at the same time. |
| 113 | +# Doesn't work with spaces, but that's fine: .d files have spaces in |
| 114 | +# their names replaced with other characters. |
| 115 | +define fixup_dep |
| 116 | +# The depfile may not exist if the input file didn't have any #includes. |
| 117 | +touch $(depfile).raw |
| 118 | +# Fixup path as in (1). |
| 119 | +sed -e "s|^$(notdir $@)|$@|" $(depfile).raw >> $(depfile) |
| 120 | +# Add extra rules as in (2). |
| 121 | +# We remove slashes and replace spaces with new lines; |
| 122 | +# remove blank lines; |
| 123 | +# delete the first line and append a colon to the remaining lines. |
| 124 | +sed -e 's|\\||' -e 'y| |\n|' $(depfile).raw |\ |
| 125 | + grep -v '^$$' |\ |
| 126 | + sed -e 1d -e 's|$$|:|' \ |
| 127 | + >> $(depfile) |
| 128 | +rm $(depfile).raw |
| 129 | +endef |
| 130 | + |
| 131 | +# Command definitions: |
| 132 | +# - cmd_foo is the actual command to run; |
| 133 | +# - quiet_cmd_foo is the brief-output summary of the command. |
| 134 | + |
| 135 | +quiet_cmd_cc = CC($(TOOLSET)) $@ |
| 136 | +cmd_cc = $(CC.$(TOOLSET)) $(GYP_CFLAGS) $(DEPFLAGS) $(CFLAGS.$(TOOLSET)) -c -o $@ $< |
| 137 | + |
| 138 | +quiet_cmd_cxx = CXX($(TOOLSET)) $@ |
| 139 | +cmd_cxx = $(CXX.$(TOOLSET)) $(GYP_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $< |
| 140 | + |
| 141 | +quiet_cmd_touch = TOUCH $@ |
| 142 | +cmd_touch = touch $@ |
| 143 | + |
| 144 | +quiet_cmd_copy = COPY $@ |
| 145 | +# send stderr to /dev/null to ignore messages when linking directories. |
| 146 | +cmd_copy = ln -f "$<" "$@" 2>/dev/null || (rm -rf "$@" && cp -af "$<" "$@") |
| 147 | + |
| 148 | +quiet_cmd_alink = AR($(TOOLSET)) $@ |
| 149 | +cmd_alink = rm -f $@ && $(AR.$(TOOLSET)) $(ARFLAGS.$(TOOLSET)) $@ $(filter %.o,$^) |
| 150 | + |
| 151 | +# Due to circular dependencies between libraries :(, we wrap the |
| 152 | +# special "figure out circular dependencies" flags around the entire |
| 153 | +# input list during linking. |
| 154 | +quiet_cmd_link = LINK($(TOOLSET)) $@ |
| 155 | +cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ -Wl,--start-group $(LD_INPUTS) -Wl,--end-group $(LIBS) |
| 156 | + |
| 157 | +# We support two kinds of shared objects (.so): |
| 158 | +# 1) shared_library, which is just bundling together many dependent libraries |
| 159 | +# into a link line. |
| 160 | +# 2) loadable_module, which is generating a module intended for dlopen(). |
| 161 | +# |
| 162 | +# They differ only slightly: |
| 163 | +# In the former case, we want to package all dependent code into the .so. |
| 164 | +# In the latter case, we want to package just the API exposed by the |
| 165 | +# outermost module. |
| 166 | +# This means shared_library uses --whole-archive, while loadable_module doesn't. |
| 167 | +# (Note that --whole-archive is incompatible with the --start-group used in |
| 168 | +# normal linking.) |
| 169 | + |
| 170 | +# Other shared-object link notes: |
| 171 | +# - Set SONAME to the library filename so our binaries don't reference |
| 172 | +# the local, absolute paths used on the link command-line. |
| 173 | +quiet_cmd_solink = SOLINK($(TOOLSET)) $@ |
| 174 | +cmd_solink = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -o $@ -Wl,--whole-archive $(LD_INPUTS) -Wl,--no-whole-archive $(LIBS) |
| 175 | + |
| 176 | +quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@ |
| 177 | +cmd_solink_module = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -o $@ -Wl,--start-group $(filter-out FORCE_DO_CMD, $^) -Wl,--end-group $(LIBS) |
| 178 | + |
| 179 | + |
| 180 | +# Define an escape_quotes function to escape single quotes. |
| 181 | +# This allows us to handle quotes properly as long as we always use |
| 182 | +# use single quotes and escape_quotes. |
| 183 | +escape_quotes = $(subst ','\'',$(1)) |
| 184 | +# This comment is here just to include a ' to unconfuse syntax highlighting. |
| 185 | +# Define an escape_vars function to escape '$' variable syntax. |
| 186 | +# This allows us to read/write command lines with shell variables (e.g. |
| 187 | +# $LD_LIBRARY_PATH), without triggering make substitution. |
| 188 | +escape_vars = $(subst $$,$$$$,$(1)) |
| 189 | +# Helper that expands to a shell command to echo a string exactly as it is in |
| 190 | +# make. This uses printf instead of echo because printf's behaviour with respect |
| 191 | +# to escape sequences is more portable than echo's across different shells |
| 192 | +# (e.g., dash, bash). |
| 193 | +exact_echo = printf '%s\n' '$(call escape_quotes,$(1))' |
| 194 | + |
| 195 | +# Helper to compare the command we're about to run against the command |
| 196 | +# we logged the last time we ran the command. Produces an empty |
| 197 | +# string (false) when the commands match. |
| 198 | +# Tricky point: Make has no string-equality test function. |
| 199 | +# The kernel uses the following, but it seems like it would have false |
| 200 | +# positives, where one string reordered its arguments. |
| 201 | +# arg_check = $(strip $(filter-out $(cmd_$(1)), $(cmd_$@)) \ |
| 202 | +# $(filter-out $(cmd_$@), $(cmd_$(1)))) |
| 203 | +# We instead substitute each for the empty string into the other, and |
| 204 | +# say they're equal if both substitutions produce the empty string. |
| 205 | +# .d files contain ? instead of spaces, take that into account. |
| 206 | +command_changed = $(or $(subst $(cmd_$(1)),,$(cmd_$(call replace_spaces,$@))),\ |
| 207 | + $(subst $(cmd_$(call replace_spaces,$@)),,$(cmd_$(1)))) |
| 208 | + |
| 209 | +# Helper that is non-empty when a prerequisite changes. |
| 210 | +# Normally make does this implicitly, but we force rules to always run |
| 211 | +# so we can check their command lines. |
| 212 | +# $? -- new prerequisites |
| 213 | +# $| -- order-only dependencies |
| 214 | +prereq_changed = $(filter-out FORCE_DO_CMD,$(filter-out $|,$?)) |
| 215 | + |
| 216 | +# Helper that executes all postbuilds, and deletes the output file when done |
| 217 | +# if any of the postbuilds failed. |
| 218 | +define do_postbuilds |
| 219 | + @E=0;\ |
| 220 | + for p in $(POSTBUILDS); do\ |
| 221 | + eval $$p;\ |
| 222 | + F=$$?;\ |
| 223 | + if [ $$F -ne 0 ]; then\ |
| 224 | + E=$$F;\ |
| 225 | + fi;\ |
| 226 | + done;\ |
| 227 | + if [ $$E -ne 0 ]; then\ |
| 228 | + rm -rf "$@";\ |
| 229 | + exit $$E;\ |
| 230 | + fi |
| 231 | +endef |
| 232 | + |
| 233 | +# do_cmd: run a command via the above cmd_foo names, if necessary. |
| 234 | +# Should always run for a given target to handle command-line changes. |
| 235 | +# Second argument, if non-zero, makes it do asm/C/C++ dependency munging. |
| 236 | +# Third argument, if non-zero, makes it do POSTBUILDS processing. |
| 237 | +# Note: We intentionally do NOT call dirx for depfile, since it contains ? for |
| 238 | +# spaces already and dirx strips the ? characters. |
| 239 | +define do_cmd |
| 240 | +$(if $(or $(command_changed),$(prereq_changed)), |
| 241 | + @$(call exact_echo, $($(quiet)cmd_$(1))) |
| 242 | + @mkdir -p "$(call dirx,$@)" "$(dir $(depfile))" |
| 243 | + $(if $(findstring flock,$(word 1,$(cmd_$1))), |
| 244 | + @$(cmd_$(1)) |
| 245 | + @echo " $(quiet_cmd_$(1)): Finished", |
| 246 | + @$(cmd_$(1)) |
| 247 | + ) |
| 248 | + @$(call exact_echo,$(call escape_vars,cmd_$(call replace_spaces,$@) := $(cmd_$(1)))) > $(depfile) |
| 249 | + @$(if $(2),$(fixup_dep)) |
| 250 | + $(if $(and $(3), $(POSTBUILDS)), |
| 251 | + $(call do_postbuilds) |
| 252 | + ) |
| 253 | +) |
| 254 | +endef |
| 255 | + |
| 256 | +# Declare the "all" target first so it is the default, |
| 257 | +# even though we don't have the deps yet. |
| 258 | +.PHONY: all |
| 259 | +all: |
| 260 | + |
| 261 | +# Use FORCE_DO_CMD to force a target to run. Should be coupled with |
| 262 | +# do_cmd. |
| 263 | +.PHONY: FORCE_DO_CMD |
| 264 | +FORCE_DO_CMD: |
| 265 | + |
| 266 | +TOOLSET := target |
| 267 | +# Suffix rules, putting all outputs into $(obj). |
| 268 | +$(obj).$(TOOLSET)/%.o: $(srcdir)/%.c FORCE_DO_CMD |
| 269 | + @$(call do_cmd,cc,1) |
| 270 | +$(obj).$(TOOLSET)/%.o: $(srcdir)/%.cc FORCE_DO_CMD |
| 271 | + @$(call do_cmd,cxx,1) |
| 272 | +$(obj).$(TOOLSET)/%.o: $(srcdir)/%.cpp FORCE_DO_CMD |
| 273 | + @$(call do_cmd,cxx,1) |
| 274 | +$(obj).$(TOOLSET)/%.o: $(srcdir)/%.cxx FORCE_DO_CMD |
| 275 | + @$(call do_cmd,cxx,1) |
| 276 | +$(obj).$(TOOLSET)/%.o: $(srcdir)/%.S FORCE_DO_CMD |
| 277 | + @$(call do_cmd,cc,1) |
| 278 | +$(obj).$(TOOLSET)/%.o: $(srcdir)/%.s FORCE_DO_CMD |
| 279 | + @$(call do_cmd,cc,1) |
| 280 | + |
| 281 | +# Try building from generated source, too. |
| 282 | +$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.c FORCE_DO_CMD |
| 283 | + @$(call do_cmd,cc,1) |
| 284 | +$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cc FORCE_DO_CMD |
| 285 | + @$(call do_cmd,cxx,1) |
| 286 | +$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cpp FORCE_DO_CMD |
| 287 | + @$(call do_cmd,cxx,1) |
| 288 | +$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cxx FORCE_DO_CMD |
| 289 | + @$(call do_cmd,cxx,1) |
| 290 | +$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.S FORCE_DO_CMD |
| 291 | + @$(call do_cmd,cc,1) |
| 292 | +$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.s FORCE_DO_CMD |
| 293 | + @$(call do_cmd,cc,1) |
| 294 | + |
| 295 | +$(obj).$(TOOLSET)/%.o: $(obj)/%.c FORCE_DO_CMD |
| 296 | + @$(call do_cmd,cc,1) |
| 297 | +$(obj).$(TOOLSET)/%.o: $(obj)/%.cc FORCE_DO_CMD |
| 298 | + @$(call do_cmd,cxx,1) |
| 299 | +$(obj).$(TOOLSET)/%.o: $(obj)/%.cpp FORCE_DO_CMD |
| 300 | + @$(call do_cmd,cxx,1) |
| 301 | +$(obj).$(TOOLSET)/%.o: $(obj)/%.cxx FORCE_DO_CMD |
| 302 | + @$(call do_cmd,cxx,1) |
| 303 | +$(obj).$(TOOLSET)/%.o: $(obj)/%.S FORCE_DO_CMD |
| 304 | + @$(call do_cmd,cc,1) |
| 305 | +$(obj).$(TOOLSET)/%.o: $(obj)/%.s FORCE_DO_CMD |
| 306 | + @$(call do_cmd,cc,1) |
| 307 | + |
| 308 | + |
| 309 | +ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ |
| 310 | + $(findstring $(join ^,$(prefix)),\ |
| 311 | + $(join ^,src/libuv/run-benchmarks.target.mk)))),) |
| 312 | + include src/libuv/run-benchmarks.target.mk |
| 313 | +endif |
| 314 | +ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ |
| 315 | + $(findstring $(join ^,$(prefix)),\ |
| 316 | + $(join ^,src/libuv/run-tests.target.mk)))),) |
| 317 | + include src/libuv/run-tests.target.mk |
| 318 | +endif |
| 319 | +ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ |
| 320 | + $(findstring $(join ^,$(prefix)),\ |
| 321 | + $(join ^,src/libuv/uv.target.mk)))),) |
| 322 | + include src/libuv/uv.target.mk |
| 323 | +endif |
| 324 | + |
| 325 | +#quiet_cmd_regen_makefile = ACTION Regenerating $@ |
| 326 | +#cmd_regen_makefile = ./src/libuv/build/gyp/gyp -fmake --ignore-environment "--toplevel-dir=." -Isrc/libuv/common.gypi "--depth=." "--generator-output=mk/libuv/arm/unix/android" "-Ddefault_configuration=Default" "-Dcomponent=static_library" "-Dlibrary=static_library" "-Dtarget_arch=arm" "-DOS=linux" src/libuv/uv.gyp |
| 327 | +#Makefile: $(srcdir)/src/libuv/uv.gyp $(srcdir)/src/libuv/common.gypi |
| 328 | +# $(call do_cmd,regen_makefile) |
| 329 | + |
| 330 | +# "all" is a concatenation of the "all" targets from all the included |
| 331 | +# sub-makefiles. This is just here to clarify. |
| 332 | +all: |
| 333 | + |
| 334 | +# Add in dependency-tracking rules. $(all_deps) is the list of every single |
| 335 | +# target in our tree. Only consider the ones with .d (dependency) info: |
| 336 | +d_files := $(wildcard $(foreach f,$(all_deps),$(depsdir)/$(f).d)) |
| 337 | +ifneq ($(d_files),) |
| 338 | + # Rather than include each individual .d file, concatenate them into a |
| 339 | + # single file which make is able to load faster. We split this into |
| 340 | + # commands that take 1000 files at a time to avoid overflowing the |
| 341 | + # command line. |
| 342 | + $(shell cat $(wordlist 1,1000,$(d_files)) > $(depsdir)/all.deps) |
| 343 | + |
| 344 | + ifneq ($(word 1001,$(d_files)),) |
| 345 | + $(error Found unprocessed dependency files (gyp didn't generate enough rules!)) |
| 346 | + endif |
| 347 | + |
| 348 | + # make looks for ways to re-generate included makefiles, but in our case, we |
| 349 | + # don't have a direct way. Explicitly telling make that it has nothing to do |
| 350 | + # for them makes it go faster. |
| 351 | + $(depsdir)/all.deps: ; |
| 352 | + |
| 353 | + include $(depsdir)/all.deps |
| 354 | +endif |
0 commit comments