Add REGION=USA option in Makefile

This commit is contained in:
Aetias
2024-02-03 18:15:41 +01:00
parent ed32e278b1
commit 0ed9a607c2
+3
View File
@@ -3,6 +3,9 @@ REGION ?= EUR
ifeq ($(REGION), EUR)
REGION_NAME := eur
REGION_SUFFIX := P
else ifeq ($(REGION), USA)
REGION_NAME := usa
REGION_SUFFIX := E
else
$(error Unknown region '$(REGION)')
endif