Kaydet (Commit) 102d87fc authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix inconsistent dependencies of "make $MODULE" vs. "make $MODULE.build" etc.

...where the latter failed to rebuild compilerplugins if necessary, while the
former did.

(No idea about the proper dependencies of "make $MODULE.showdeliverables".)

Change-Id: Ib6f8e193445229745475aa52eb7a78ebb30e49e5
üst bc578df9
......@@ -88,7 +88,10 @@ define gb_Top_GbuildModuleRules
$(1): bootstrap fetch
cd $(SRCDIR)/$(2) && $$(MAKE) $(IWYU_OPTION) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS)
$(1).build $(1).check $(1).clean $(1).showdeliverables $(foreach target,$(gb_Top_MODULE_CHECK_TARGETS),$(1).$(target)):
$(1).build $(1).check $(foreach target,$(gb_Top_MODULE_CHECK_TARGETS),$(1).$(target)): bootstrap fetch
cd $(SRCDIR)/$(2) && $$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) $$(patsubst $(1).%,%,$$@)
$(1).clean $(1).showdeliverables:
cd $(SRCDIR)/$(2) && $$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) $$(patsubst $(1).%,%,$$@)
$(1).all: bootstrap fetch
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment