PageRenderTime 59ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/media/webrtc/trunk/Makefile.old

https://bitbucket.org/iamer/mozilla-central
Unknown | 785 lines | 737 code | 48 blank | 0 comment | 0 complexity | 8388c6e8d560f3ee86e1c5d1bc0595c6 MD5 | raw file
Possible License(s): MPL-2.0, GPL-2.0, LGPL-2.1, LGPL-3.0, MPL-2.0-no-copyleft-exception, BSD-3-Clause, Apache-2.0, JSON, 0BSD
  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. # The implicit make rules have it looking for RCS files, among other things.
  4. # We instead explicitly write all the rules we care about.
  5. # It's even quicker (saves ~200ms) to pass -r on the command line.
  6. MAKEFLAGS=-r
  7. # The source directory tree.
  8. srcdir := .
  9. abs_srcdir := $(abspath $(srcdir))
  10. # The name of the builddir.
  11. builddir_name ?= out
  12. # The V=1 flag on command line makes us verbosely print command lines.
  13. ifdef V
  14. quiet=
  15. else
  16. quiet=quiet_
  17. endif
  18. # Specify BUILDTYPE=Release on the command line for a release build.
  19. BUILDTYPE ?= Debug
  20. # Directory all our build output goes into.
  21. # Note that this must be two directories beneath src/ for unit tests to pass,
  22. # as they reach into the src/ directory for data with relative paths.
  23. builddir ?= $(builddir_name)/$(BUILDTYPE)
  24. abs_builddir := $(abspath $(builddir))
  25. depsdir := $(builddir)/.deps
  26. # Object output directory.
  27. obj := $(builddir)/obj
  28. abs_obj := $(abspath $(obj))
  29. # We build up a list of every single one of the targets so we can slurp in the
  30. # generated dependency rule Makefiles in one pass.
  31. all_deps :=
  32. # C++ apps need to be linked with g++.
  33. #
  34. # Note: flock is used to seralize linking. Linking is a memory-intensive
  35. # process so running parallel links can often lead to thrashing. To disable
  36. # the serialization, override LINK via an envrionment variable as follows:
  37. #
  38. # export LINK=g++
  39. #
  40. # This will allow make to invoke N linker processes as specified in -jN.
  41. LINK ?= flock $(builddir)/linker.lock $(CXX)
  42. CC.target ?= $(CC)
  43. CFLAGS.target ?= $(CFLAGS)
  44. CXX.target ?= $(CXX)
  45. CXXFLAGS.target ?= $(CXXFLAGS)
  46. LINK.target ?= $(LINK)
  47. LDFLAGS.target ?= $(LDFLAGS)
  48. AR.target ?= $(AR)
  49. # TODO(evan): move all cross-compilation logic to gyp-time so we don't need
  50. # to replicate this environment fallback in make as well.
  51. CC.host ?= gcc
  52. CFLAGS.host ?=
  53. CXX.host ?= g++
  54. CXXFLAGS.host ?=
  55. LINK.host ?= g++
  56. LDFLAGS.host ?=
  57. AR.host ?= ar
  58. # Define a dir function that can handle spaces.
  59. # http://www.gnu.org/software/make/manual/make.html#Syntax-of-Functions
  60. # "leading spaces cannot appear in the text of the first argument as written.
  61. # These characters can be put into the argument value by variable substitution."
  62. empty :=
  63. space := $(empty) $(empty)
  64. # http://stackoverflow.com/questions/1189781/using-make-dir-or-notdir-on-a-path-with-spaces
  65. replace_spaces = $(subst $(space),?,$1)
  66. unreplace_spaces = $(subst ?,$(space),$1)
  67. dirx = $(call unreplace_spaces,$(dir $(call replace_spaces,$1)))
  68. # Flags to make gcc output dependency info. Note that you need to be
  69. # careful here to use the flags that ccache and distcc can understand.
  70. # We write to a dep file on the side first and then rename at the end
  71. # so we can't end up with a broken dep file.
  72. depfile = $(depsdir)/$(call replace_spaces,$@).d
  73. DEPFLAGS = -MMD -MF $(depfile).raw
  74. # We have to fixup the deps output in a few ways.
  75. # (1) the file output should mention the proper .o file.
  76. # ccache or distcc lose the path to the target, so we convert a rule of
  77. # the form:
  78. # foobar.o: DEP1 DEP2
  79. # into
  80. # path/to/foobar.o: DEP1 DEP2
  81. # (2) we want missing files not to cause us to fail to build.
  82. # We want to rewrite
  83. # foobar.o: DEP1 DEP2 \
  84. # DEP3
  85. # to
  86. # DEP1:
  87. # DEP2:
  88. # DEP3:
  89. # so if the files are missing, they're just considered phony rules.
  90. # We have to do some pretty insane escaping to get those backslashes
  91. # and dollar signs past make, the shell, and sed at the same time.
  92. # Doesn't work with spaces, but that's fine: .d files have spaces in
  93. # their names replaced with other characters.
  94. define fixup_dep
  95. # The depfile may not exist if the input file didn't have any #includes.
  96. touch $(depfile).raw
  97. # Fixup path as in (1).
  98. sed -e "s|^$(notdir $@)|$@|" $(depfile).raw >> $(depfile)
  99. # Add extra rules as in (2).
  100. # We remove slashes and replace spaces with new lines;
  101. # remove blank lines;
  102. # delete the first line and append a colon to the remaining lines.
  103. sed -e 's|\\||' -e 'y| |\n|' $(depfile).raw |\
  104. grep -v '^$$' |\
  105. sed -e 1d -e 's|$$|:|' \
  106. >> $(depfile)
  107. rm $(depfile).raw
  108. endef
  109. # Command definitions:
  110. # - cmd_foo is the actual command to run;
  111. # - quiet_cmd_foo is the brief-output summary of the command.
  112. quiet_cmd_cc = CC($(TOOLSET)) $@
  113. cmd_cc = $(CC.$(TOOLSET)) $(GYP_CFLAGS) $(DEPFLAGS) $(CFLAGS.$(TOOLSET)) -c -o $@ $<
  114. quiet_cmd_cxx = CXX($(TOOLSET)) $@
  115. cmd_cxx = $(CXX.$(TOOLSET)) $(GYP_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
  116. quiet_cmd_touch = TOUCH $@
  117. cmd_touch = touch $@
  118. quiet_cmd_copy = COPY $@
  119. # send stderr to /dev/null to ignore messages when linking directories.
  120. cmd_copy = ln -f "$<" "$@" 2>/dev/null || (rm -rf "$@" && cp -af "$<" "$@")
  121. quiet_cmd_alink = AR($(TOOLSET)) $@
  122. cmd_alink = rm -f $@ && $(AR.$(TOOLSET)) crs $@ $(filter %.o,$^)
  123. quiet_cmd_alink_thin = AR($(TOOLSET)) $@
  124. cmd_alink_thin = rm -f $@ && $(AR.$(TOOLSET)) crsT $@ $(filter %.o,$^)
  125. # Due to circular dependencies between libraries :(, we wrap the
  126. # special "figure out circular dependencies" flags around the entire
  127. # input list during linking.
  128. quiet_cmd_link = LINK($(TOOLSET)) $@
  129. cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ -Wl,--start-group $(LD_INPUTS) -Wl,--end-group $(LIBS)
  130. # We support two kinds of shared objects (.so):
  131. # 1) shared_library, which is just bundling together many dependent libraries
  132. # into a link line.
  133. # 2) loadable_module, which is generating a module intended for dlopen().
  134. #
  135. # They differ only slightly:
  136. # In the former case, we want to package all dependent code into the .so.
  137. # In the latter case, we want to package just the API exposed by the
  138. # outermost module.
  139. # This means shared_library uses --whole-archive, while loadable_module doesn't.
  140. # (Note that --whole-archive is incompatible with the --start-group used in
  141. # normal linking.)
  142. # Other shared-object link notes:
  143. # - Set SONAME to the library filename so our binaries don't reference
  144. # the local, absolute paths used on the link command-line.
  145. quiet_cmd_solink = SOLINK($(TOOLSET)) $@
  146. cmd_solink = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -o $@ -Wl,--whole-archive $(LD_INPUTS) -Wl,--no-whole-archive $(LIBS)
  147. quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@
  148. 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)
  149. # Define an escape_quotes function to escape single quotes.
  150. # This allows us to handle quotes properly as long as we always use
  151. # use single quotes and escape_quotes.
  152. escape_quotes = $(subst ','\'',$(1))
  153. # This comment is here just to include a ' to unconfuse syntax highlighting.
  154. # Define an escape_vars function to escape '$' variable syntax.
  155. # This allows us to read/write command lines with shell variables (e.g.
  156. # $LD_LIBRARY_PATH), without triggering make substitution.
  157. escape_vars = $(subst $$,$$$$,$(1))
  158. # Helper that expands to a shell command to echo a string exactly as it is in
  159. # make. This uses printf instead of echo because printf's behaviour with respect
  160. # to escape sequences is more portable than echo's across different shells
  161. # (e.g., dash, bash).
  162. exact_echo = printf '%s\n' '$(call escape_quotes,$(1))'
  163. # Helper to compare the command we're about to run against the command
  164. # we logged the last time we ran the command. Produces an empty
  165. # string (false) when the commands match.
  166. # Tricky point: Make has no string-equality test function.
  167. # The kernel uses the following, but it seems like it would have false
  168. # positives, where one string reordered its arguments.
  169. # arg_check = $(strip $(filter-out $(cmd_$(1)), $(cmd_$@)) \
  170. # $(filter-out $(cmd_$@), $(cmd_$(1))))
  171. # We instead substitute each for the empty string into the other, and
  172. # say they're equal if both substitutions produce the empty string.
  173. # .d files contain ? instead of spaces, take that into account.
  174. command_changed = $(or $(subst $(cmd_$(1)),,$(cmd_$(call replace_spaces,$@))),\
  175. $(subst $(cmd_$(call replace_spaces,$@)),,$(cmd_$(1))))
  176. # Helper that is non-empty when a prerequisite changes.
  177. # Normally make does this implicitly, but we force rules to always run
  178. # so we can check their command lines.
  179. # $? -- new prerequisites
  180. # $| -- order-only dependencies
  181. prereq_changed = $(filter-out FORCE_DO_CMD,$(filter-out $|,$?))
  182. # Helper that executes all postbuilds, and deletes the output file when done
  183. # if any of the postbuilds failed.
  184. define do_postbuilds
  185. @E=0;\
  186. for p in $(POSTBUILDS); do\
  187. eval $$p;\
  188. F=$$?;\
  189. if [ $$F -ne 0 ]; then\
  190. E=$$F;\
  191. fi;\
  192. done;\
  193. if [ $$E -ne 0 ]; then\
  194. rm -rf "$@";\
  195. exit $$E;\
  196. fi
  197. endef
  198. # do_cmd: run a command via the above cmd_foo names, if necessary.
  199. # Should always run for a given target to handle command-line changes.
  200. # Second argument, if non-zero, makes it do asm/C/C++ dependency munging.
  201. # Third argument, if non-zero, makes it do POSTBUILDS processing.
  202. # Note: We intentionally do NOT call dirx for depfile, since it contains ? for
  203. # spaces already and dirx strips the ? characters.
  204. define do_cmd
  205. $(if $(or $(command_changed),$(prereq_changed)),
  206. @$(call exact_echo, $($(quiet)cmd_$(1)))
  207. @mkdir -p "$(call dirx,$@)" "$(dir $(depfile))"
  208. $(if $(findstring flock,$(word 1,$(cmd_$1))),
  209. @$(cmd_$(1))
  210. @echo " $(quiet_cmd_$(1)): Finished",
  211. @$(cmd_$(1))
  212. )
  213. @$(call exact_echo,$(call escape_vars,cmd_$(call replace_spaces,$@) := $(cmd_$(1)))) > $(depfile)
  214. @$(if $(2),$(fixup_dep))
  215. $(if $(and $(3), $(POSTBUILDS)),
  216. $(call do_postbuilds)
  217. )
  218. )
  219. endef
  220. # Declare the "all" target first so it is the default,
  221. # even though we don't have the deps yet.
  222. .PHONY: all
  223. all:
  224. # make looks for ways to re-generate included makefiles, but in our case, we
  225. # don't have a direct way. Explicitly telling make that it has nothing to do
  226. # for them makes it go faster.
  227. %.d: ;
  228. # Use FORCE_DO_CMD to force a target to run. Should be coupled with
  229. # do_cmd.
  230. .PHONY: FORCE_DO_CMD
  231. FORCE_DO_CMD:
  232. TOOLSET := host
  233. # Suffix rules, putting all outputs into $(obj).
  234. $(obj).$(TOOLSET)/%.o: $(srcdir)/%.c FORCE_DO_CMD
  235. @$(call do_cmd,cc,1)
  236. $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cc FORCE_DO_CMD
  237. @$(call do_cmd,cxx,1)
  238. $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cpp FORCE_DO_CMD
  239. @$(call do_cmd,cxx,1)
  240. $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cxx FORCE_DO_CMD
  241. @$(call do_cmd,cxx,1)
  242. $(obj).$(TOOLSET)/%.o: $(srcdir)/%.S FORCE_DO_CMD
  243. @$(call do_cmd,cc,1)
  244. $(obj).$(TOOLSET)/%.o: $(srcdir)/%.s FORCE_DO_CMD
  245. @$(call do_cmd,cc,1)
  246. # Try building from generated source, too.
  247. $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.c FORCE_DO_CMD
  248. @$(call do_cmd,cc,1)
  249. $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cc FORCE_DO_CMD
  250. @$(call do_cmd,cxx,1)
  251. $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cpp FORCE_DO_CMD
  252. @$(call do_cmd,cxx,1)
  253. $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cxx FORCE_DO_CMD
  254. @$(call do_cmd,cxx,1)
  255. $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.S FORCE_DO_CMD
  256. @$(call do_cmd,cc,1)
  257. $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.s FORCE_DO_CMD
  258. @$(call do_cmd,cc,1)
  259. $(obj).$(TOOLSET)/%.o: $(obj)/%.c FORCE_DO_CMD
  260. @$(call do_cmd,cc,1)
  261. $(obj).$(TOOLSET)/%.o: $(obj)/%.cc FORCE_DO_CMD
  262. @$(call do_cmd,cxx,1)
  263. $(obj).$(TOOLSET)/%.o: $(obj)/%.cpp FORCE_DO_CMD
  264. @$(call do_cmd,cxx,1)
  265. $(obj).$(TOOLSET)/%.o: $(obj)/%.cxx FORCE_DO_CMD
  266. @$(call do_cmd,cxx,1)
  267. $(obj).$(TOOLSET)/%.o: $(obj)/%.S FORCE_DO_CMD
  268. @$(call do_cmd,cc,1)
  269. $(obj).$(TOOLSET)/%.o: $(obj)/%.s FORCE_DO_CMD
  270. @$(call do_cmd,cc,1)
  271. TOOLSET := target
  272. # Suffix rules, putting all outputs into $(obj).
  273. $(obj).$(TOOLSET)/%.o: $(srcdir)/%.c FORCE_DO_CMD
  274. @$(call do_cmd,cc,1)
  275. $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cc FORCE_DO_CMD
  276. @$(call do_cmd,cxx,1)
  277. $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cpp FORCE_DO_CMD
  278. @$(call do_cmd,cxx,1)
  279. $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cxx FORCE_DO_CMD
  280. @$(call do_cmd,cxx,1)
  281. $(obj).$(TOOLSET)/%.o: $(srcdir)/%.S FORCE_DO_CMD
  282. @$(call do_cmd,cc,1)
  283. $(obj).$(TOOLSET)/%.o: $(srcdir)/%.s FORCE_DO_CMD
  284. @$(call do_cmd,cc,1)
  285. # Try building from generated source, too.
  286. $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.c FORCE_DO_CMD
  287. @$(call do_cmd,cc,1)
  288. $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cc FORCE_DO_CMD
  289. @$(call do_cmd,cxx,1)
  290. $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cpp FORCE_DO_CMD
  291. @$(call do_cmd,cxx,1)
  292. $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cxx FORCE_DO_CMD
  293. @$(call do_cmd,cxx,1)
  294. $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.S FORCE_DO_CMD
  295. @$(call do_cmd,cc,1)
  296. $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.s FORCE_DO_CMD
  297. @$(call do_cmd,cc,1)
  298. $(obj).$(TOOLSET)/%.o: $(obj)/%.c FORCE_DO_CMD
  299. @$(call do_cmd,cc,1)
  300. $(obj).$(TOOLSET)/%.o: $(obj)/%.cc FORCE_DO_CMD
  301. @$(call do_cmd,cxx,1)
  302. $(obj).$(TOOLSET)/%.o: $(obj)/%.cpp FORCE_DO_CMD
  303. @$(call do_cmd,cxx,1)
  304. $(obj).$(TOOLSET)/%.o: $(obj)/%.cxx FORCE_DO_CMD
  305. @$(call do_cmd,cxx,1)
  306. $(obj).$(TOOLSET)/%.o: $(obj)/%.S FORCE_DO_CMD
  307. @$(call do_cmd,cc,1)
  308. $(obj).$(TOOLSET)/%.o: $(obj)/%.s FORCE_DO_CMD
  309. @$(call do_cmd,cc,1)
  310. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  311. $(findstring $(join ^,$(prefix)),\
  312. $(join ^,All.target.mk)))),)
  313. include All.target.mk
  314. endif
  315. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  316. $(findstring $(join ^,$(prefix)),\
  317. $(join ^,base/base.target.mk)))),)
  318. include base/base.target.mk
  319. endif
  320. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  321. $(findstring $(join ^,$(prefix)),\
  322. $(join ^,net/net.target.mk)))),)
  323. include net/net.target.mk
  324. endif
  325. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  326. $(findstring $(join ^,$(prefix)),\
  327. $(join ^,peerconnection_client.target.mk)))),)
  328. include peerconnection_client.target.mk
  329. endif
  330. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  331. $(findstring $(join ^,$(prefix)),\
  332. $(join ^,third_party/expat/expat.target.mk)))),)
  333. include third_party/expat/expat.target.mk
  334. endif
  335. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  336. $(findstring $(join ^,$(prefix)),\
  337. $(join ^,third_party/jsoncpp/jsoncpp.target.mk)))),)
  338. include third_party/jsoncpp/jsoncpp.target.mk
  339. endif
  340. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  341. $(findstring $(join ^,$(prefix)),\
  342. $(join ^,third_party/libjingle/libjingle.target.mk)))),)
  343. include third_party/libjingle/libjingle.target.mk
  344. endif
  345. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  346. $(findstring $(join ^,$(prefix)),\
  347. $(join ^,third_party/libjingle/libjingle_p2p.target.mk)))),)
  348. include third_party/libjingle/libjingle_p2p.target.mk
  349. endif
  350. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  351. $(findstring $(join ^,$(prefix)),\
  352. $(join ^,third_party/libjingle/libjingle_peerconnection.target.mk)))),)
  353. include third_party/libjingle/libjingle_peerconnection.target.mk
  354. endif
  355. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  356. $(findstring $(join ^,$(prefix)),\
  357. $(join ^,third_party/libjingle/peerconnection_server.target.mk)))),)
  358. include third_party/libjingle/peerconnection_server.target.mk
  359. endif
  360. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  361. $(findstring $(join ^,$(prefix)),\
  362. $(join ^,third_party/libjpeg_turbo/libjpeg.target.mk)))),)
  363. include third_party/libjpeg_turbo/libjpeg.target.mk
  364. endif
  365. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  366. $(findstring $(join ^,$(prefix)),\
  367. $(join ^,third_party/libsrtp/libsrtp.target.mk)))),)
  368. include third_party/libsrtp/libsrtp.target.mk
  369. endif
  370. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  371. $(findstring $(join ^,$(prefix)),\
  372. $(join ^,third_party/libsrtp/rdbx_driver.target.mk)))),)
  373. include third_party/libsrtp/rdbx_driver.target.mk
  374. endif
  375. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  376. $(findstring $(join ^,$(prefix)),\
  377. $(join ^,third_party/libsrtp/replay_driver.target.mk)))),)
  378. include third_party/libsrtp/replay_driver.target.mk
  379. endif
  380. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  381. $(findstring $(join ^,$(prefix)),\
  382. $(join ^,third_party/libsrtp/roc_driver.target.mk)))),)
  383. include third_party/libsrtp/roc_driver.target.mk
  384. endif
  385. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  386. $(findstring $(join ^,$(prefix)),\
  387. $(join ^,third_party/libsrtp/rtpw.target.mk)))),)
  388. include third_party/libsrtp/rtpw.target.mk
  389. endif
  390. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  391. $(findstring $(join ^,$(prefix)),\
  392. $(join ^,third_party/libsrtp/srtp_driver.target.mk)))),)
  393. include third_party/libsrtp/srtp_driver.target.mk
  394. endif
  395. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  396. $(findstring $(join ^,$(prefix)),\
  397. $(join ^,third_party/libsrtp/srtp_runtest.target.mk)))),)
  398. include third_party/libsrtp/srtp_runtest.target.mk
  399. endif
  400. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  401. $(findstring $(join ^,$(prefix)),\
  402. $(join ^,third_party/libsrtp/srtp_test_aes_calc.target.mk)))),)
  403. include third_party/libsrtp/srtp_test_aes_calc.target.mk
  404. endif
  405. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  406. $(findstring $(join ^,$(prefix)),\
  407. $(join ^,third_party/libsrtp/srtp_test_cipher_driver.target.mk)))),)
  408. include third_party/libsrtp/srtp_test_cipher_driver.target.mk
  409. endif
  410. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  411. $(findstring $(join ^,$(prefix)),\
  412. $(join ^,third_party/libsrtp/srtp_test_datatypes_driver.target.mk)))),)
  413. include third_party/libsrtp/srtp_test_datatypes_driver.target.mk
  414. endif
  415. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  416. $(findstring $(join ^,$(prefix)),\
  417. $(join ^,third_party/libsrtp/srtp_test_env.target.mk)))),)
  418. include third_party/libsrtp/srtp_test_env.target.mk
  419. endif
  420. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  421. $(findstring $(join ^,$(prefix)),\
  422. $(join ^,third_party/libsrtp/srtp_test_kernel_driver.target.mk)))),)
  423. include third_party/libsrtp/srtp_test_kernel_driver.target.mk
  424. endif
  425. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  426. $(findstring $(join ^,$(prefix)),\
  427. $(join ^,third_party/libsrtp/srtp_test_rand_gen.target.mk)))),)
  428. include third_party/libsrtp/srtp_test_rand_gen.target.mk
  429. endif
  430. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  431. $(findstring $(join ^,$(prefix)),\
  432. $(join ^,third_party/libsrtp/srtp_test_sha1_driver.target.mk)))),)
  433. include third_party/libsrtp/srtp_test_sha1_driver.target.mk
  434. endif
  435. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  436. $(findstring $(join ^,$(prefix)),\
  437. $(join ^,third_party/libsrtp/srtp_test_stat_driver.target.mk)))),)
  438. include third_party/libsrtp/srtp_test_stat_driver.target.mk
  439. endif
  440. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  441. $(findstring $(join ^,$(prefix)),\
  442. $(join ^,third_party/libvpx/gen_asm_offsets.target.mk)))),)
  443. include third_party/libvpx/gen_asm_offsets.target.mk
  444. endif
  445. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  446. $(findstring $(join ^,$(prefix)),\
  447. $(join ^,third_party/libvpx/libvpx.target.mk)))),)
  448. include third_party/libvpx/libvpx.target.mk
  449. endif
  450. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  451. $(findstring $(join ^,$(prefix)),\
  452. $(join ^,third_party/libvpx/libvpx_asm_offsets.target.mk)))),)
  453. include third_party/libvpx/libvpx_asm_offsets.target.mk
  454. endif
  455. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  456. $(findstring $(join ^,$(prefix)),\
  457. $(join ^,third_party/libvpx/libvpx_obj_int_extract.host.mk)))),)
  458. include third_party/libvpx/libvpx_obj_int_extract.host.mk
  459. endif
  460. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  461. $(findstring $(join ^,$(prefix)),\
  462. $(join ^,third_party/libvpx/simple_decoder.target.mk)))),)
  463. include third_party/libvpx/simple_decoder.target.mk
  464. endif
  465. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  466. $(findstring $(join ^,$(prefix)),\
  467. $(join ^,third_party/libvpx/simple_encoder.target.mk)))),)
  468. include third_party/libvpx/simple_encoder.target.mk
  469. endif
  470. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  471. $(findstring $(join ^,$(prefix)),\
  472. $(join ^,third_party/libyuv/libyuv.target.mk)))),)
  473. include third_party/libyuv/libyuv.target.mk
  474. endif
  475. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  476. $(findstring $(join ^,$(prefix)),\
  477. $(join ^,third_party/protobuf/protobuf_full_do_not_use.host.mk)))),)
  478. include third_party/protobuf/protobuf_full_do_not_use.host.mk
  479. endif
  480. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  481. $(findstring $(join ^,$(prefix)),\
  482. $(join ^,third_party/protobuf/protobuf_full_do_not_use.target.mk)))),)
  483. include third_party/protobuf/protobuf_full_do_not_use.target.mk
  484. endif
  485. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  486. $(findstring $(join ^,$(prefix)),\
  487. $(join ^,third_party/protobuf/protobuf_lite.host.mk)))),)
  488. include third_party/protobuf/protobuf_lite.host.mk
  489. endif
  490. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  491. $(findstring $(join ^,$(prefix)),\
  492. $(join ^,third_party/protobuf/protobuf_lite.target.mk)))),)
  493. include third_party/protobuf/protobuf_lite.target.mk
  494. endif
  495. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  496. $(findstring $(join ^,$(prefix)),\
  497. $(join ^,third_party/protobuf/protoc.host.mk)))),)
  498. include third_party/protobuf/protoc.host.mk
  499. endif
  500. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  501. $(findstring $(join ^,$(prefix)),\
  502. $(join ^,third_party/protobuf/py_proto.target.mk)))),)
  503. include third_party/protobuf/py_proto.target.mk
  504. endif
  505. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  506. $(findstring $(join ^,$(prefix)),\
  507. $(join ^,third_party/webrtc/common_audio/resampler.target.mk)))),)
  508. include third_party/webrtc/common_audio/resampler.target.mk
  509. endif
  510. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  511. $(findstring $(join ^,$(prefix)),\
  512. $(join ^,third_party/webrtc/common_audio/signal_processing.target.mk)))),)
  513. include third_party/webrtc/common_audio/signal_processing.target.mk
  514. endif
  515. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  516. $(findstring $(join ^,$(prefix)),\
  517. $(join ^,third_party/webrtc/common_audio/vad.target.mk)))),)
  518. include third_party/webrtc/common_audio/vad.target.mk
  519. endif
  520. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  521. $(findstring $(join ^,$(prefix)),\
  522. $(join ^,third_party/webrtc/common_video/common_video.target.mk)))),)
  523. include third_party/webrtc/common_video/common_video.target.mk
  524. endif
  525. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  526. $(findstring $(join ^,$(prefix)),\
  527. $(join ^,third_party/webrtc/modules/CNG.target.mk)))),)
  528. include third_party/webrtc/modules/CNG.target.mk
  529. endif
  530. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  531. $(findstring $(join ^,$(prefix)),\
  532. $(join ^,third_party/webrtc/modules/G711.target.mk)))),)
  533. include third_party/webrtc/modules/G711.target.mk
  534. endif
  535. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  536. $(findstring $(join ^,$(prefix)),\
  537. $(join ^,third_party/webrtc/modules/G722.target.mk)))),)
  538. include third_party/webrtc/modules/G722.target.mk
  539. endif
  540. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  541. $(findstring $(join ^,$(prefix)),\
  542. $(join ^,third_party/webrtc/modules/NetEq.target.mk)))),)
  543. include third_party/webrtc/modules/NetEq.target.mk
  544. endif
  545. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  546. $(findstring $(join ^,$(prefix)),\
  547. $(join ^,third_party/webrtc/modules/PCM16B.target.mk)))),)
  548. include third_party/webrtc/modules/PCM16B.target.mk
  549. endif
  550. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  551. $(findstring $(join ^,$(prefix)),\
  552. $(join ^,third_party/webrtc/modules/audio_coding_module.target.mk)))),)
  553. include third_party/webrtc/modules/audio_coding_module.target.mk
  554. endif
  555. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  556. $(findstring $(join ^,$(prefix)),\
  557. $(join ^,third_party/webrtc/modules/audio_conference_mixer.target.mk)))),)
  558. include third_party/webrtc/modules/audio_conference_mixer.target.mk
  559. endif
  560. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  561. $(findstring $(join ^,$(prefix)),\
  562. $(join ^,third_party/webrtc/modules/audio_device.target.mk)))),)
  563. include third_party/webrtc/modules/audio_device.target.mk
  564. endif
  565. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  566. $(findstring $(join ^,$(prefix)),\
  567. $(join ^,third_party/webrtc/modules/audio_processing.target.mk)))),)
  568. include third_party/webrtc/modules/audio_processing.target.mk
  569. endif
  570. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  571. $(findstring $(join ^,$(prefix)),\
  572. $(join ^,third_party/webrtc/modules/audio_processing_sse2.target.mk)))),)
  573. include third_party/webrtc/modules/audio_processing_sse2.target.mk
  574. endif
  575. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  576. $(findstring $(join ^,$(prefix)),\
  577. $(join ^,third_party/webrtc/modules/audioproc_debug_proto.target.mk)))),)
  578. include third_party/webrtc/modules/audioproc_debug_proto.target.mk
  579. endif
  580. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  581. $(findstring $(join ^,$(prefix)),\
  582. $(join ^,third_party/webrtc/modules/bitrate_controller.target.mk)))),)
  583. include third_party/webrtc/modules/bitrate_controller.target.mk
  584. endif
  585. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  586. $(findstring $(join ^,$(prefix)),\
  587. $(join ^,third_party/webrtc/modules/iLBC.target.mk)))),)
  588. include third_party/webrtc/modules/iLBC.target.mk
  589. endif
  590. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  591. $(findstring $(join ^,$(prefix)),\
  592. $(join ^,third_party/webrtc/modules/iSAC.target.mk)))),)
  593. include third_party/webrtc/modules/iSAC.target.mk
  594. endif
  595. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  596. $(findstring $(join ^,$(prefix)),\
  597. $(join ^,third_party/webrtc/modules/iSACFix.target.mk)))),)
  598. include third_party/webrtc/modules/iSACFix.target.mk
  599. endif
  600. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  601. $(findstring $(join ^,$(prefix)),\
  602. $(join ^,third_party/webrtc/modules/media_file.target.mk)))),)
  603. include third_party/webrtc/modules/media_file.target.mk
  604. endif
  605. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  606. $(findstring $(join ^,$(prefix)),\
  607. $(join ^,third_party/webrtc/modules/remote_bitrate_estimator.target.mk)))),)
  608. include third_party/webrtc/modules/remote_bitrate_estimator.target.mk
  609. endif
  610. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  611. $(findstring $(join ^,$(prefix)),\
  612. $(join ^,third_party/webrtc/modules/rtp_rtcp.target.mk)))),)
  613. include third_party/webrtc/modules/rtp_rtcp.target.mk
  614. endif
  615. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  616. $(findstring $(join ^,$(prefix)),\
  617. $(join ^,third_party/webrtc/modules/udp_transport.target.mk)))),)
  618. include third_party/webrtc/modules/udp_transport.target.mk
  619. endif
  620. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  621. $(findstring $(join ^,$(prefix)),\
  622. $(join ^,third_party/webrtc/modules/video_capture_module.target.mk)))),)
  623. include third_party/webrtc/modules/video_capture_module.target.mk
  624. endif
  625. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  626. $(findstring $(join ^,$(prefix)),\
  627. $(join ^,third_party/webrtc/modules/video_coding/codecs/vp8/webrtc_vp8.target.mk)))),)
  628. include third_party/webrtc/modules/video_coding/codecs/vp8/webrtc_vp8.target.mk
  629. endif
  630. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  631. $(findstring $(join ^,$(prefix)),\
  632. $(join ^,third_party/webrtc/modules/video_processing.target.mk)))),)
  633. include third_party/webrtc/modules/video_processing.target.mk
  634. endif
  635. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  636. $(findstring $(join ^,$(prefix)),\
  637. $(join ^,third_party/webrtc/modules/video_processing_sse2.target.mk)))),)
  638. include third_party/webrtc/modules/video_processing_sse2.target.mk
  639. endif
  640. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  641. $(findstring $(join ^,$(prefix)),\
  642. $(join ^,third_party/webrtc/modules/video_render_module.target.mk)))),)
  643. include third_party/webrtc/modules/video_render_module.target.mk
  644. endif
  645. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  646. $(findstring $(join ^,$(prefix)),\
  647. $(join ^,third_party/webrtc/modules/webrtc_i420.target.mk)))),)
  648. include third_party/webrtc/modules/webrtc_i420.target.mk
  649. endif
  650. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  651. $(findstring $(join ^,$(prefix)),\
  652. $(join ^,third_party/webrtc/modules/webrtc_utility.target.mk)))),)
  653. include third_party/webrtc/modules/webrtc_utility.target.mk
  654. endif
  655. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  656. $(findstring $(join ^,$(prefix)),\
  657. $(join ^,third_party/webrtc/modules/webrtc_video_coding.target.mk)))),)
  658. include third_party/webrtc/modules/webrtc_video_coding.target.mk
  659. endif
  660. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  661. $(findstring $(join ^,$(prefix)),\
  662. $(join ^,third_party/webrtc/system_wrappers/source/system_wrappers.target.mk)))),)
  663. include third_party/webrtc/system_wrappers/source/system_wrappers.target.mk
  664. endif
  665. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  666. $(findstring $(join ^,$(prefix)),\
  667. $(join ^,third_party/webrtc/video_engine/video_engine_core.target.mk)))),)
  668. include third_party/webrtc/video_engine/video_engine_core.target.mk
  669. endif
  670. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  671. $(findstring $(join ^,$(prefix)),\
  672. $(join ^,third_party/webrtc/voice_engine/voice_engine_core.target.mk)))),)
  673. include third_party/webrtc/voice_engine/voice_engine_core.target.mk
  674. endif
  675. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  676. $(findstring $(join ^,$(prefix)),\
  677. $(join ^,third_party/yasm/config_sources.host.mk)))),)
  678. include third_party/yasm/config_sources.host.mk
  679. endif
  680. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  681. $(findstring $(join ^,$(prefix)),\
  682. $(join ^,third_party/yasm/generate_files.host.mk)))),)
  683. include third_party/yasm/generate_files.host.mk
  684. endif
  685. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  686. $(findstring $(join ^,$(prefix)),\
  687. $(join ^,third_party/yasm/genmacro.host.mk)))),)
  688. include third_party/yasm/genmacro.host.mk
  689. endif
  690. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  691. $(findstring $(join ^,$(prefix)),\
  692. $(join ^,third_party/yasm/genmodule.host.mk)))),)
  693. include third_party/yasm/genmodule.host.mk
  694. endif
  695. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  696. $(findstring $(join ^,$(prefix)),\
  697. $(join ^,third_party/yasm/genperf.host.mk)))),)
  698. include third_party/yasm/genperf.host.mk
  699. endif
  700. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  701. $(findstring $(join ^,$(prefix)),\
  702. $(join ^,third_party/yasm/genperf_libs.host.mk)))),)
  703. include third_party/yasm/genperf_libs.host.mk
  704. endif
  705. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  706. $(findstring $(join ^,$(prefix)),\
  707. $(join ^,third_party/yasm/genstring.host.mk)))),)
  708. include third_party/yasm/genstring.host.mk
  709. endif
  710. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  711. $(findstring $(join ^,$(prefix)),\
  712. $(join ^,third_party/yasm/genversion.host.mk)))),)
  713. include third_party/yasm/genversion.host.mk
  714. endif
  715. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  716. $(findstring $(join ^,$(prefix)),\
  717. $(join ^,third_party/yasm/re2c.host.mk)))),)
  718. include third_party/yasm/re2c.host.mk
  719. endif
  720. ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
  721. $(findstring $(join ^,$(prefix)),\
  722. $(join ^,third_party/yasm/yasm.host.mk)))),)
  723. include third_party/yasm/yasm.host.mk
  724. endif
  725. quiet_cmd_regen_makefile = ACTION Regenerating $@
  726. cmd_regen_makefile = ./build/gyp_chromium -fmake --ignore-environment "--toplevel-dir=." -I/home/jesup/src/mozilla/webrtc_import7/webrtc_update/trunk/build/common.gypi -I/home/jesup/src/mozilla/webrtc_import7/webrtc_update/trunk/supplement/supplement.gypi "--depth=." peerconnection_all.gyp
  727. Makefile: third_party/webrtc/build/common.gypi third_party/webrtc/common_video/common_video.gyp third_party/webrtc/video_engine/video_engine.gyp third_party/webrtc/modules/audio_coding/neteq/neteq.gypi third_party/libvpx/libvpx_srcs_arm.gypi build/filename_rules.gypi third_party/webrtc/modules/media_file/source/media_file.gypi third_party/jsoncpp/jsoncpp.gyp base/base.gyp third_party/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator.gypi third_party/webrtc/modules/rtp_rtcp/source/rtp_rtcp_tests.gypi third_party/webrtc/modules/audio_processing/audio_processing.gypi third_party/webrtc/modules/video_processing/main/source/video_processing.gypi third_party/webrtc/system_wrappers/source/system_wrappers.gyp supplement/supplement.gypi third_party/webrtc/modules/audio_coding/codecs/ilbc/ilbc.gypi third_party/webrtc/modules/utility/source/utility.gypi third_party/webrtc/voice_engine/test/voice_engine_tests.gypi build/internal/release_impl.gypi third_party/webrtc/modules/audio_coding/codecs/isac/isacfix_test.gypi third_party/yasm/yasm_compile.gypi net/net.gyp third_party/webrtc/modules/audio_coding/codecs/isac/isac_test.gypi third_party/webrtc/modules/audio_coding/codecs/cng/cng.gypi third_party/libvpx/libvpx_srcs_x86_64.gypi third_party/webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.gypi third_party/webrtc/modules/audio_device/audio_device.gypi third_party/libjingle/libjingle.gyp build/internal/release_impl_official.gypi build/internal/release_defaults.gypi third_party/webrtc/modules/rtp_rtcp/source/rtp_rtcp.gypi third_party/webrtc/modules/video_render/main/source/video_render.gypi third_party/libjpeg_turbo/libjpeg.gyp third_party/webrtc/modules/rtp_rtcp/test/testAPI/test_api.gypi third_party/webrtc/modules/udp_transport/source/udp_transport.gypi third_party/libvpx/libvpx_srcs_arm_neon.gypi third_party/webrtc/voice_engine/voice_engine.gyp third_party/webrtc/common_audio/resampler/resampler.gypi third_party/webrtc/modules/audio_conference_mixer/source/audio_conference_mixer.gypi build/win_precompile.gypi third_party/expat/expat.gyp third_party/webrtc/modules/video_coding/main/source/video_coding_test.gypi third_party/yasm/yasm.gyp third_party/webrtc/modules/video_capture/main/source/video_capture.gypi third_party/webrtc/video_engine/test/libvietest/libvietest.gypi third_party/webrtc/modules/video_coding/codecs/vp8/vp8.gyp third_party/webrtc/modules/bitrate_controller/bitrate_controller.gypi third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/isacfix.gypi build/ios/mac_build.gypi third_party/webrtc/modules/video_coding/main/source/video_coding.gypi third_party/webrtc/modules/audio_coding/main/source/audio_coding_module.gypi build/release.gypi peerconnection.gyp build/common.gypi third_party/webrtc/video_engine/video_engine_core.gypi third_party/webrtc/build/arm_neon.gypi third_party/libvpx/libvpx.gyp third_party/webrtc/common_audio/common_audio.gyp third_party/libyuv/libyuv.gyp third_party/webrtc/modules/audio_coding/codecs/isac/main/source/isac.gypi third_party/webrtc/modules/video_processing/main/test/vpm_tests.gypi third_party/webrtc/voice_engine/voice_engine_core.gypi third_party/webrtc/modules/rtp_rtcp/test/testFec/test_fec.gypi third_party/webrtc/modules/video_coding/codecs/tools/video_codecs_tools.gypi third_party/libsrtp/libsrtp.gyp peerconnection_all.gyp third_party/webrtc/modules/audio_coding/codecs/g711/g711.gypi third_party/webrtc/modules/audio_processing/audio_processing_tests.gypi third_party/libvpx/libvpx_srcs_x86.gypi third_party/webrtc/modules/modules.gyp third_party/webrtc/common_audio/signal_processing/signal_processing.gypi third_party/webrtc/video_engine/test/auto_test/vie_auto_test.gypi third_party/libvpx/libvpx_srcs_mips.gypi third_party/webrtc/common_audio/vad/vad.gypi third_party/webrtc/modules/video_coding/codecs/test/video_codecs_test_framework.gypi third_party/webrtc/modules/video_coding/codecs/i420/main/source/i420.gypi third_party/webrtc/modules/audio_coding/codecs/g722/g722.gypi third_party/webrtc/modules/video_coding/codecs/test_framework/test_framework.gypi third_party/webrtc/build/protoc.gypi third_party/protobuf/protobuf.gyp
  728. $(call do_cmd,regen_makefile)
  729. # "all" is a concatenation of the "all" targets from all the included
  730. # sub-makefiles. This is just here to clarify.
  731. all:
  732. # Add in dependency-tracking rules. $(all_deps) is the list of every single
  733. # target in our tree. Only consider the ones with .d (dependency) info:
  734. d_files := $(wildcard $(foreach f,$(all_deps),$(depsdir)/$(f).d))
  735. ifneq ($(d_files),)
  736. include $(d_files)
  737. endif