diff options
author | yenatch <yenatch@gmail.com> | 2014-01-23 15:55:33 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-01-23 15:55:33 -0500 |
commit | b4e8ec0901da238bf89ef8685355403a6960c29d (patch) | |
tree | aca68f059beb028094d3c504cca03fd14cfcad4e /Makefile | |
parent | cf90d30e9ea236c9e06de1d1be0b9635192f6ed9 (diff) |
Make text.asm an object
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -8,11 +8,13 @@ TEXTQUEUE := RED_OBJS := \ pokered.o \ -audio_red.o +audio_red.o \ +text.o BLUE_OBJS := \ pokeblue.o \ -audio_blue.o +audio_blue.o \ +text.o OBJS := $(RED_OBJS) $(BLUE_OBJS) |