Build and create depots with 64 make jobs.

This commit is contained in:
Michael Mueller
2025-01-28 13:43:31 +01:00
parent 11f332d382
commit 73c5472c67
2 changed files with 2 additions and 2 deletions

View File

@@ -156,7 +156,7 @@ $(BUILD_MK_FILE): checked_source_archives_exist checked_no_uncategorized
# Invoke sub make to process generated makefile
#
execute_generated_build_mk_file: $(BUILD_MK_FILE)
$(VERBOSE)$(MAKE) $(if $(VERBOSE),--quiet) -f $(BUILD_MK_FILE) \
$(VERBOSE)$(MAKE) -j64 $(if $(VERBOSE),--quiet) -f $(BUILD_MK_FILE) \
-C $(DEPOT_DIR) VERBOSE=$(VERBOSE)
ifneq ($(REBUILD),)

View File

@@ -57,7 +57,7 @@ REBUILD ?= $(FORCE)
build: extract
$(if $(VERSIONED_ARCHIVES),\
$(VERBOSE)$(MAKE) -f $(GENODE_DIR)/tool/depot/build $(VERSIONED_ARCHIVES) \
$(VERBOSE)$(MAKE) -j64 -f $(GENODE_DIR)/tool/depot/build $(VERSIONED_ARCHIVES) \
VERBOSE=$(VERBOSE) CCACHE=$(CCACHE) REBUILD=$(REBUILD) \
KEEP_BUILD_DIR=$(KEEP_BUILD_DIR))