another Windows Makefile bit

Ensure the tools build whether a CROSSCOMPILE_HOST build, or
when there is no CROSSCOMPILE.
This commit is contained in:
nhmall
2019-11-28 23:36:15 -05:00
parent 381b8b4fcb
commit 2954608a39

View File

@@ -272,7 +272,16 @@ TILEFILES = $(WSHR)\monsters.txt $(WSHR)\objects.txt $(WSHR)\other.txt
#
# These are not invoked during a normal game build in 3.4
#
!IFDEF CROSSCOMPILE_HOST
DO_UTILS = Y
!ELSE IFNDEF CROSSCOMPILE
DO_UTILS = Y
!ELSE
DO_UTILS = N
!ENDIF
!IF "$(DO_UTILS)" == "Y"
TEXT_IO = $(O)tiletext$(HOST).o $(O)tiletxt$(HOST).o $(O)drawing$(HOST).o \
$(O)decl$(HOST).o $(O)monst$(HOST).o $(O)objects$(HOST).o