Skip to content

Commit

Permalink
Prevent top-level submodule build targets from running in parallel; r…
Browse files Browse the repository at this point in the history
…educe phantom dependency invalidation; don't touch submodule dummy file unless it successfully built.
  • Loading branch information
Brian J. Burg committed Oct 5, 2012
1 parent 1c42849 commit 3a5d9bd
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions Makefile.in
Expand Up @@ -102,33 +102,30 @@ ENV_RFLAGS_$(1) = RUSTFLAGS="$$(strip $$(CFG_RUSTC_FLAGS)) $$(addprefix -L $$(B)
# whenever a submodule changes
# TODO: this may be a bit brutish, but is there a better way?
ROUGH_DEPS_$(1)=$$(call rwildcard,$$(S)src/$(1),*h *c *cpp *rs *rc)

DONE_DEPS_$(1)=$$(foreach dep,$$(DEPS_$(1)),$$(DONE_$$(dep)))
# the main target for a submodule
# --
# this depends on the phony command, which enforces an ordering between parallel
# recursive makes, but causes the phony command to always run whether or not
# anything has actually changes.
$$(DONE_$(1)) : $$(DEPS_$(1)) $$(ROUGH_DEPS_$(1))
$$(DONE_$(1)) : $$(DONE_DEPS_$(1)) $$(ROUGH_DEPS_$(1))
# @$$(call E, make: $(1))
# @$$(call E, $(1) deps= $$(DEPS_$(1)))
# @$$(call E, $(1) done_deps= $$(DONE_DEPS_$(1)))
# @$$(call E, $(1) cflags= $$(ENV_CFLAGS_$(1)))
# @$$(call E, $(1) rflags= $$(ENV_RFLAGS_$(1)))

$$(Q) \
$$(ENV_CFLAGS_$(1)) \
$$(ENV_RFLAGS_$(1)) \
$$(MAKE) -C $$(B)src/$(1)
$$(Q)touch $$(DONE_$(1))
$$(MAKE) -C $$(B)src/$(1) && touch $$(DONE_$(1))

# main submodule target
$(1) : $$(DEPS_$(1)) $$(DONE_$(1))
$(1) : $$(DONE_$(1))
.PHONY : $(1)
.NOTPARALLEL : $(1)
endef

$(foreach submodule,$(CFG_SUBMODULES),\
$(eval $(call DEF_SUBMODULE_RULES,$(submodule))))

.PHONY : $(1) $(DEPS_SUBMODULES)

RFLAGS_servo = $(strip $(CFG_RUSTC_FLAGS)) $(addprefix -L $(B)src/,$(DEPS_SUBMODULES))
SRC_servo = $(call rwildcard,$(S)src/servo/,*.rs)
CRATE_servo = $(S)src/servo/servo.rc
Expand Down

0 comments on commit 3a5d9bd

Please sign in to comment.