Mercurial > mplayer.hg
diff libao2/Makefile @ 966:69b4f944ce08
Added support for sdl audio out (buggy pre-alpha).
author | atmosfear |
---|---|
date | Sun, 03 Jun 2001 10:48:36 +0000 |
parents | db20b90dd34d |
children | 6d3a6d42c831 |
line wrap: on
line diff
--- a/libao2/Makefile Sun Jun 03 10:46:42 2001 +0000 +++ b/libao2/Makefile Sun Jun 03 10:48:36 2001 +0000 @@ -1,9 +1,10 @@ -include ../config.mak +include config.mak LIBNAME = libao.a -SRCS=audio_out.c ao_oss.c ao_null.c +# TODO: moveout ao_sdl.c so it's only used when SDL is detected +SRCS=audio_out.c ao_oss.c ao_null.c $(OPTIONAL_SRCS) OBJS=$(SRCS:.c=.o) CFLAGS = $(OPTFLAGS) -I. -I..