summaryrefslogtreecommitdiffstats
path: root/libao2/Makefile
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-05-21 21:15:46 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-05-21 21:15:46 +0000
commitecf10a4138fcdd90844111892acbd1440f09d40d (patch)
treed1c85deba3c3812578f597a452a9bf9a3cd89c4f /libao2/Makefile
parent7b4c5c12420c9c849a09f150447d86dc447a2112 (diff)
downloadmpv-ecf10a4138fcdd90844111892acbd1440f09d40d.tar.bz2
mpv-ecf10a4138fcdd90844111892acbd1440f09d40d.tar.xz
Native MacOSX audio output by Dan Christiansen <danchr@daimi.au.dk>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10148 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libao2/Makefile')
-rw-r--r--libao2/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/libao2/Makefile b/libao2/Makefile
index a3398d9e8e..33cc159465 100644
--- a/libao2/Makefile
+++ b/libao2/Makefile
@@ -6,6 +6,10 @@ LIBNAME = libao2.a
# TODO: moveout ao_sdl.c so it's only used when SDL is detected
SRCS=afmt.c audio_out.c ao_mpegpes.c ao_null.c ao_pcm.c ao_plugin.c pl_delay.c pl_format.c pl_surround.c remez.c pl_resample.c pl_volume.c pl_extrastereo.c pl_volnorm.c pl_eq.c $(OPTIONAL_SRCS)
+ifeq ($(MACOSX),yes)
+SRCS += ao_macosx.c
+endif
+
OBJS=$(SRCS:.c=.o)
CFLAGS = $(OPTFLAGS) -I. -I.. $(ARTS_INC) $(ESD_INC) $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DXR2_INC) $(DVB_INC)