mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-21 19:45:10 +00:00
Force tools to rebuild if they weren't built before the luigi sound fix
This commit is contained in:
parent
9cfa078b5e
commit
090122491f
2 changed files with 9 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -47,6 +47,7 @@
|
||||||
|
|
||||||
# datadump
|
# datadump
|
||||||
/tools/ddump/*
|
/tools/ddump/*
|
||||||
|
/tools/*.ver
|
||||||
|
|
||||||
# Text editor remnants
|
# Text editor remnants
|
||||||
*.swp
|
*.swp
|
||||||
|
|
10
Makefile
10
Makefile
|
@ -463,10 +463,16 @@ ifeq ($(filter clean distclean print-%,$(MAKECMDGOALS)),)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Make tools if out of date
|
|
||||||
ifeq ($(WINDOWS_AUTO_BUILDER),0)
|
ifeq ($(WINDOWS_AUTO_BUILDER),0)
|
||||||
|
# if the tools are out of date, clean them
|
||||||
|
TOOLS_VER_FILE := $(TOOLS_DIR)/tools-ver-1.ver
|
||||||
|
ifeq ($(wildcard $(TOOLS_VER_FILE)),)
|
||||||
|
$(info Cleaning tools...)
|
||||||
|
DUMMY != touch $(TOOLS_VER_FILE)
|
||||||
|
DUMMY != $(MAKE) -C $(TOOLS_DIR) clean >&2
|
||||||
|
endif
|
||||||
|
|
||||||
$(info Building tools...)
|
$(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
|
DUMMY != $(MAKE) -C $(TOOLS_DIR) >&2 || echo FAIL
|
||||||
ifeq ($(DUMMY),FAIL)
|
ifeq ($(DUMMY),FAIL)
|
||||||
$(error Failed to build tools)
|
$(error Failed to build tools)
|
||||||
|
|
Loading…
Reference in a new issue