blob: 7f52d90840b44291234f5b338cd78c7f776c7dd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
|