summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-01-23 15:55:33 -0500
committeryenatch <yenatch@gmail.com>2014-01-23 15:55:33 -0500
commitb4e8ec0901da238bf89ef8685355403a6960c29d (patch)
treeaca68f059beb028094d3c504cca03fd14cfcad4e /Makefile
parentcf90d30e9ea236c9e06de1d1be0b9635192f6ed9 (diff)
Make text.asm an object
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a61875e9..6c673590 100644
--- a/Makefile
+++ b/Makefile
@@ -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)