Kaydet (Commit) bea399d6 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

dmake-invoked gnumake may need implicite rules... avoid impacting theem

üst c857dff7
...@@ -251,10 +251,12 @@ define dmake_module_rules ...@@ -251,10 +251,12 @@ define dmake_module_rules
.PHONY: $(1) $(1).all $(1).deliver $(1).clean .PHONY: $(1) $(1).all $(1).deliver $(1).clean
$(1): bootstrap fetch $(1): bootstrap fetch
cd $(1) && $(SOLARENV)/bin/build.pl -P$(BUILD_NCPUS) -- -P$(GMAKE_PARALLELISM) cd $(1) && unset MAKEFLAGS && \
$(SOLARENV)/bin/build.pl -P$(BUILD_NCPUS) -- -P$(GMAKE_PARALLELISM)
$(1).all: bootstrap fetch $(1).all: bootstrap fetch
cd $(1) && $(SOLARENV)/bin/build.pl -P$(BUILD_NCPUS) --all -- -P$(GMAKE_PARALLELISM) cd $(1) && unset MAKEFLAGS && \
$(SOLARENV)/bin/build.pl -P$(BUILD_NCPUS) --all -- -P$(GMAKE_PARALLELISM)
$(1).deliver: bootstrap fetch $(1).deliver: bootstrap fetch
cd $(1) && $(SOLARENV)/bin/deliver.pl cd $(1) && $(SOLARENV)/bin/deliver.pl
...@@ -272,7 +274,7 @@ endef ...@@ -272,7 +274,7 @@ endef
# Build # Build
# #
build: bootstrap fetch $(if $(filter $(INPATH),$(INPATH_FOR_BUILD)),,cross-toolset) build: bootstrap fetch $(if $(filter $(INPATH),$(INPATH_FOR_BUILD)),,cross-toolset)
cd instsetoo_native && \ cd instsetoo_native && unset MAKEFLAGS && \
$(SOLARENV)/bin/build.pl -P$(BUILD_NCPUS) --all -- -P$(GMAKE_PARALLELISM) $(SOLARENV)/bin/build.pl -P$(BUILD_NCPUS) --all -- -P$(GMAKE_PARALLELISM)
cross-toolset: cross-toolset:
......
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