Prevent tools from building during coop-compiler
This commit is contained in:
parent
5b69173d0a
commit
ed6cbc2d40
3
Makefile
3
Makefile
|
@ -389,12 +389,15 @@ ifeq ($(filter clean distclean print-%,$(MAKECMDGOALS)),)
|
|||
endif
|
||||
|
||||
# Make tools if out of date
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue