diff options
| author | PikalaxALT <pikalaxalt@gmail.com> | 2018-06-03 10:54:49 -0400 |
|---|---|---|
| committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-06-03 10:54:49 -0400 |
| commit | 898c863bd46ebc4fdca5329f1ebe64212b079630 (patch) | |
| tree | b8b86cb6452dfcc8ce9324fca3c25280a204ffbf /config.mk | |
| parent | 557c9268f05d160461112e429bf3dcbc64e82f12 (diff) | |
Suspend support for Silver and non-debug ROMs
Diffstat (limited to 'config.mk')
| -rw-r--r-- | config.mk | 35 |
1 files changed, 19 insertions, 16 deletions
@@ -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 |
