version check for EU

This commit is contained in:
Alejandro Javier Asenjo Nitti 2024-05-14 22:29:21 -03:00
parent eb35be895a
commit fdef9d6246

View File

@ -86,7 +86,6 @@ $(error Unsupported compiler. Please use either ido or gcc as the COMPILER varia
endif endif
endif endif
# ditch g3, we aren't using that in GCC
ifeq ($(COMPILER),gcc) ifeq ($(COMPILER),gcc)
OPTFLAGS := -Os OPTFLAGS := -Os
else else
@ -120,12 +119,17 @@ endif
BUILD_DEFINES ?= BUILD_DEFINES ?=
# Version check
ifeq ($(VERSION),jp)
BUILD_DEFINES += -DVERSION_JP=1
endif
ifeq ($(VERSION),us) ifeq ($(VERSION),us)
BUILD_DEFINES += -DVERSION_US=1 BUILD_DEFINES += -DVERSION_US=1
endif endif
ifeq ($(VERSION),jp) ifeq ($(VERSION),eu)
BUILD_DEFINES += -DVERSION_JP=1 BUILD_DEFINES += -DVERSION_EU=1
endif endif
ifeq ($(NON_MATCHING),1) ifeq ($(NON_MATCHING),1)