aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornotaz2012-07-30 00:37:24 +0300
committernotaz2012-07-30 00:37:24 +0300
commitd8a2f79b8743b44a0728902293acf101c9b2d882 (patch)
tree55e07af51ed6024957235fdc3c9407bb35d1dbb9 /Makefile
parentafc74f4e1a9d70e20f8d48a58c96785ed018c7a3 (diff)
downloadpcsx_rearmed-d8a2f79b8743b44a0728902293acf101c9b2d882.tar.gz
pcsx_rearmed-d8a2f79b8743b44a0728902293acf101c9b2d882.tar.bz2
pcsx_rearmed-d8a2f79b8743b44a0728902293acf101c9b2d882.zip
support sdl audio
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 8c2628c..5720bab 100644
--- a/Makefile
+++ b/Makefile
@@ -79,6 +79,9 @@ plugins/dfsound/%.o: CFLAGS += -DUSEALSA
OBJS += plugins/dfsound/alsa.o
LDLIBS += -lasound
endif
+ifeq "$(SOUND_DRIVER)" "sdl"
+OBJS += plugins/dfsound/sdl.o
+endif
ifeq "$(SOUND_DRIVER)" "none"
OBJS += plugins/dfsound/nullsnd.o
endif