summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-01-09 02:59:53 -0500
committeryenatch <yenatch@gmail.com>2014-01-09 13:52:12 -0500
commit10bb09c4e210ab8d922081a221ce4833b5d50def (patch)
tree51f887e4fc61663a47bf6f81c974ce1e48432596 /Makefile
parent5acb7d8294525c63b9cc5bf66229f6ca2ab9847f (diff)
split audio components into audio_red.o and audio_blue.o
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0d2d88df..a61875e9 100644
--- a/Makefile
+++ b/Makefile
@@ -6,8 +6,13 @@ PYTHON := python
TEXTQUEUE :=
-RED_OBJS := pokered.o
-BLUE_OBJS := pokeblue.o
+RED_OBJS := \
+pokered.o \
+audio_red.o
+
+BLUE_OBJS := \
+pokeblue.o \
+audio_blue.o
OBJS := $(RED_OBJS) $(BLUE_OBJS)