From 10bb09c4e210ab8d922081a221ce4833b5d50def Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 9 Jan 2014 02:59:53 -0500 Subject: split audio components into audio_red.o and audio_blue.o --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'Makefile') 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) -- cgit v1.3.1-sl0p