summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-01-27 17:09:09 -0500
committeryenatch <yenatch@gmail.com>2014-01-27 17:09:09 -0500
commitc49dd99a986b58a9a19f6e53c6e132aa5c18c1de (patch)
treec52f97df411d435f433f82ecb9a21ea8cd79e8a0 /Makefile
parent2b961ceaf41c88edf4625d66aa35acf1dada825e (diff)
Split wram.asm from poke{red,blue}.o into wram.o
wram.asm still defines some constants. They're moved into constants/wram_constants.asm.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 9beb2c04..9a309790 100644
--- a/Makefile
+++ b/Makefile
@@ -9,11 +9,13 @@ TEXTQUEUE :=
RED_OBJS := \
pokered.o \
audio_red.o \
+wram.o \
text.o
BLUE_OBJS := \
pokeblue.o \
audio_blue.o \
+wram.o \
text.o
OBJS := $(RED_OBJS) $(BLUE_OBJS)