From cc2d1aabb71bc3bb94df4d1f2e5e05873c38cdb4 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 26 Apr 2003 01:11:54 +0000 Subject: [PATCH] If building on Darwin only include $(Sound_Null). Otherwise everything is the same. --- stepmania/src/Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/stepmania/src/Makefile.am b/stepmania/src/Makefile.am index d2e68c73e3..b5f491fc49 100644 --- a/stepmania/src/Makefile.am +++ b/stepmania/src/Makefile.am @@ -129,7 +129,11 @@ Sound_Null = \ arch/Sound/RageSoundDriver_Null.cpp \ arch/Sound/RageSoundDriver_Null.h -Sound = $(Sound_Null) $(Sound_ALSA9) +if DARWIN +Sound = $(Sound_Null) +else +Sound = $(Sound_null) $(Sound_ALSA9) +endif stepmania_SOURCES = $(Rage) $(DataStructures) $(FileTypes) $(StepMania) $(Transitions) \ $(Actors) $(ActorsInMenus) $(ActorsInGameplay) $(Screens) $(GlobalSingletons) \