diff options
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..7f52d90 --- /dev/null +++ b/config.mk @@ -0,0 +1,25 @@ +### Build Configuration ### + +# Default variables +GAME_VERSION ?= GOLD +DEBUG ?= 1 +COMPARE ?= 1 + +# For now, only support building Gold Debug. +# Uncomment these to support other ROMs. + +## 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 |