diff options
author | yenatch <yenatch@gmail.com> | 2014-01-27 17:09:09 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-01-27 17:09:09 -0500 |
commit | c49dd99a986b58a9a19f6e53c6e132aa5c18c1de (patch) | |
tree | c52f97df411d435f433f82ecb9a21ea8cd79e8a0 /Makefile | |
parent | 2b961ceaf41c88edf4625d66aa35acf1dada825e (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-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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) |