summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2018-06-03 10:54:49 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2018-06-03 10:54:49 -0400
commit898c863bd46ebc4fdca5329f1ebe64212b079630 (patch)
treeb8b86cb6452dfcc8ce9324fca3c25280a204ffbf /config.mk
parent557c9268f05d160461112e429bf3dcbc64e82f12 (diff)
Suspend support for Silver and non-debug ROMs
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk35
1 files changed, 19 insertions, 16 deletions
diff --git a/config.mk b/config.mk
index 07859a9..7f52d90 100644
--- a/config.mk
+++ b/config.mk
@@ -2,21 +2,24 @@
# Default variables
GAME_VERSION ?= GOLD
-DEBUG ?= 0
-COMPARE ?= 0
+DEBUG ?= 1
+COMPARE ?= 1
-# Version
-ifeq ($(GAME_VERSION), GOLD)
- BUILD_NAME := gold
-else
-ifeq ($(GAME_VERSION), SILVER)
- BUILD_NAME := silver
-else
- $(error unknown version $(GAME_VERSION))
-endif
-endif
+# For now, only support building Gold Debug.
+# Uncomment these to support other ROMs.
-# Debug
-ifeq ($(DEBUG), 1)
- BUILD_NAME := $(BUILD_NAME)_debug
-endif
+## Version
+#ifeq ($(GAME_VERSION), GOLD)
+ BUILD_NAME := gold
+#else
+#ifeq ($(GAME_VERSION), SILVER)
+# BUILD_NAME := silver
+#else
+# $(error unknown version $(GAME_VERSION))
+#endif
+#endif
+#
+## Debug
+#ifeq ($(DEBUG), 1)
+# BUILD_NAME := $(BUILD_NAME)_debug
+#endif