From 72c629300afaab1eebfb2a921bc6a910a045058b Mon Sep 17 00:00:00 2001 From: MysterD Date: Mon, 21 Mar 2022 22:42:25 -0700 Subject: [PATCH] Prevent tools from building during coop-compiler --- Makefile | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 7bfa4e02..970fdf54 100644 --- a/Makefile +++ b/Makefile @@ -389,12 +389,15 @@ ifeq ($(filter clean distclean print-%,$(MAKECMDGOALS)),) endif # Make tools if out of date - $(info Building tools...) - #DUMMY != $(MAKE) -s -C $(TOOLS_DIR) $(if $(filter-out ido0,$(COMPILER)$(USE_QEMU_IRIX)),all-except-recomp,) >&2 || echo FAIL - DUMMY != $(MAKE) -C $(TOOLS_DIR) >&2 || echo FAIL - ifeq ($(DUMMY),FAIL) - $(error Failed to build tools) - endif + ifeq ($(WINDOWS_AUTO_BUILDER),0) + $(info Building tools...) + #DUMMY != $(MAKE) -s -C $(TOOLS_DIR) $(if $(filter-out ido0,$(COMPILER)$(USE_QEMU_IRIX)),all-except-recomp,) >&2 || echo FAIL + DUMMY != $(MAKE) -C $(TOOLS_DIR) >&2 || echo FAIL + ifeq ($(DUMMY),FAIL) + $(error Failed to build tools) + endif + endif + $(info Building Game...) endif