mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
Makefile update (#80)
* build with TEXTURE_FIX=1 as default * disallow building with jp,eu,sh rom versions
This commit is contained in:
parent
e447332cec
commit
7971dbfa3f
1 changed files with 9 additions and 6 deletions
15
Makefile
15
Makefile
|
|
@ -41,7 +41,7 @@ BETTERCAMERA ?= 1
|
||||||
# Enable no drawing distance by default
|
# Enable no drawing distance by default
|
||||||
NODRAWINGDISTANCE ?= 1
|
NODRAWINGDISTANCE ?= 1
|
||||||
# Disable texture fixes by default (helps with them purists)
|
# Disable texture fixes by default (helps with them purists)
|
||||||
TEXTURE_FIX ?= 0
|
TEXTURE_FIX ?= 1
|
||||||
# Enable extended options menu by default
|
# Enable extended options menu by default
|
||||||
EXT_OPTIONS_MENU ?= 1
|
EXT_OPTIONS_MENU ?= 1
|
||||||
# Disable text-based save-files by default
|
# Disable text-based save-files by default
|
||||||
|
|
@ -136,19 +136,22 @@ endif
|
||||||
# Release (version) flag defs
|
# Release (version) flag defs
|
||||||
|
|
||||||
ifeq ($(VERSION),jp)
|
ifeq ($(VERSION),jp)
|
||||||
VERSION_DEF := VERSION_JP
|
//VERSION_DEF := VERSION_JP
|
||||||
|
$(error JP ROM is incompatible with sm64ex-coop at this time)
|
||||||
else
|
else
|
||||||
ifeq ($(VERSION),us)
|
ifeq ($(VERSION),us)
|
||||||
VERSION_DEF := VERSION_US
|
VERSION_DEF := VERSION_US
|
||||||
else
|
else
|
||||||
ifeq ($(VERSION),eu)
|
ifeq ($(VERSION),eu)
|
||||||
VERSION_DEF := VERSION_EU
|
//VERSION_DEF := VERSION_EU
|
||||||
|
$(error EU ROM is incompatible with sm64ex-coop at this time)
|
||||||
else
|
else
|
||||||
ifeq ($(VERSION),sh)
|
ifeq ($(VERSION),sh)
|
||||||
$(warning Building SH is experimental and is prone to breaking. Try at your own risk.)
|
//$(warning Building SH is experimental and is prone to breaking. Try at your own risk.)
|
||||||
VERSION_DEF := VERSION_SH
|
//VERSION_DEF := VERSION_SH
|
||||||
# TODO: GET RID OF THIS!!! We should mandate assets for Shindou like EU but we dont have the addresses extracted yet so we'll just pretend you have everything extracted for now.
|
# TODO: GET RID OF THIS!!! We should mandate assets for Shindou like EU but we dont have the addresses extracted yet so we'll just pretend you have everything extracted for now.
|
||||||
NOEXTRACT := 1
|
//NOEXTRACT := 1
|
||||||
|
$(error Shindou ROM is incompatible with sm64ex-coop at this time)
|
||||||
else
|
else
|
||||||
$(error unknown version "$(VERSION)")
|
$(error unknown version "$(VERSION)")
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue