Prevent tools from building during coop-compiler
This commit is contained in:
parent
5b69173d0a
commit
ed6cbc2d40
15
Makefile
15
Makefile
|
@ -389,12 +389,15 @@ ifeq ($(filter clean distclean print-%,$(MAKECMDGOALS)),)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Make tools if out of date
|
# Make tools if out of date
|
||||||
$(info Building tools...)
|
ifeq ($(WINDOWS_AUTO_BUILDER),0)
|
||||||
#DUMMY != $(MAKE) -s -C $(TOOLS_DIR) $(if $(filter-out ido0,$(COMPILER)$(USE_QEMU_IRIX)),all-except-recomp,) >&2 || echo FAIL
|
$(info Building tools...)
|
||||||
DUMMY != $(MAKE) -C $(TOOLS_DIR) >&2 || echo FAIL
|
#DUMMY != $(MAKE) -s -C $(TOOLS_DIR) $(if $(filter-out ido0,$(COMPILER)$(USE_QEMU_IRIX)),all-except-recomp,) >&2 || echo FAIL
|
||||||
ifeq ($(DUMMY),FAIL)
|
DUMMY != $(MAKE) -C $(TOOLS_DIR) >&2 || echo FAIL
|
||||||
$(error Failed to build tools)
|
ifeq ($(DUMMY),FAIL)
|
||||||
endif
|
$(error Failed to build tools)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
$(info Building Game...)
|
$(info Building Game...)
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue