Mercurial > mplayer.hg
comparison libao2/Makefile @ 10147:f2725d6717bd
Native MacOSX audio output by Dan Christiansen <danchr@daimi.au.dk>
author | alex |
---|---|
date | Wed, 21 May 2003 21:15:46 +0000 |
parents | 6690cdc35a08 |
children | 3de6f1bcbc1a |
comparison
equal
deleted
inserted
replaced
10146:d72aabc36ca1 | 10147:f2725d6717bd |
---|---|
3 | 3 |
4 LIBNAME = libao2.a | 4 LIBNAME = libao2.a |
5 | 5 |
6 # TODO: moveout ao_sdl.c so it's only used when SDL is detected | 6 # TODO: moveout ao_sdl.c so it's only used when SDL is detected |
7 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) | 7 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) |
8 | |
9 ifeq ($(MACOSX),yes) | |
10 SRCS += ao_macosx.c | |
11 endif | |
8 | 12 |
9 OBJS=$(SRCS:.c=.o) | 13 OBJS=$(SRCS:.c=.o) |
10 | 14 |
11 CFLAGS = $(OPTFLAGS) -I. -I.. $(ARTS_INC) $(ESD_INC) $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DXR2_INC) $(DVB_INC) | 15 CFLAGS = $(OPTFLAGS) -I. -I.. $(ARTS_INC) $(ESD_INC) $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DXR2_INC) $(DVB_INC) |
12 | 16 |