mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-02-03 08:43:56 +03:00
version check for EU
This commit is contained in:
parent
eb35be895a
commit
fdef9d6246
10
Makefile
10
Makefile
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user