Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Want <cwant@ualberta.ca>2004-04-04 19:33:18 +0400
committerChris Want <cwant@ualberta.ca>2004-04-04 19:33:18 +0400
commit05707df10cb9054ff0d7d9202f475bcb6a748c70 (patch)
tree75190dce2150f9dc1bfa6a66dafd63ad956bf332 /source/Makefile
parent64c127d742d2bae94b9972fc1c4244191bc31991 (diff)
Making the SDL CD stuff link right.
Diffstat (limited to 'source/Makefile')
-rw-r--r--source/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/Makefile b/source/Makefile
index 7f972a05456..3fb82d4033e 100644
--- a/source/Makefile
+++ b/source/Makefile
@@ -367,6 +367,7 @@ endif
SOUNDSYSTEM = $(OCGDIR)/intern/SoundSystem/$(DEBUG_DIR)libSoundSystem.a
DUMMYSOUND = $(OCGDIR)/intern/DummySoundSystem/$(DEBUG_DIR)libDummySoundSystem.a
OPENALSOUND = $(OCGDIR)/intern/OpenALSoundSystem/$(DEBUG_DIR)libOpenALSoundSystem.a
+SDLSOUND = $(OCGDIR)/intern/SDLSoundSystem/$(DEBUG_DIR)libSDLSoundSystem.a
# Some kooky logic going on here ...
ifeq ($(NAN_NO_OPENAL), true)
@@ -380,12 +381,14 @@ else
NAN_SND_LIBS = $(SOUNDSYSTEM)
NAN_SND_LIBS += $(DUMMYSOUND)
NAN_SND_LIBS += $(OPENALSOUND)
+ NAN_SND_LIBS += $(SDLSOUND)
NAN_SND_LIBS += $(NAN_OPENAL)/lib/libopenal.a
NAN_SND_LIBS += $(SOUNDSYSTEM)
else
NAN_SND_LIBS = $(SOUNDSYSTEM)
NAN_SND_LIBS += $(DUMMYSOUND)
NAN_SND_LIBS += $(OPENALSOUND)
+ NAN_SND_LIBS += $(SDLSOUND)
NAN_SND_LIBS += $(NAN_OPENAL)/lib/libopenal.a
NAN_SND_LIBS += $(SOUNDSYSTEM)
endif
@@ -394,6 +397,7 @@ else
NAN_SND_LIBS = $(SOUNDSYSTEM)
NAN_SND_LIBS += $(DUMMYSOUND)
NAN_SND_LIBS += $(OPENALSOUND)
+ NAN_SND_LIBS += $(SDLSOUND)
NAN_SND_LIBS += $(NAN_OPENAL)/lib/openal_static.lib
NAN_SND_LIBS += $(SOUNDSYSTEM)
else