From 0ed9a607c2eed0a67d9d03d102540da8d1d2d4f7 Mon Sep 17 00:00:00 2001 From: Aetias Date: Sat, 3 Feb 2024 18:15:41 +0100 Subject: [PATCH] Add `REGION=USA` option in `Makefile` --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 917d0596..f664e874 100644 --- a/Makefile +++ b/Makefile @@ -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