comparison libao2/Makefile @ 3095:981a9e5118ce

interface to libao2 changed ao_plugin added
author anders
date Sat, 24 Nov 2001 05:21:22 +0000
parents 28bcf0ca1448
children 74bfcc3dd96b
comparison
equal deleted inserted replaced
3094:4150aff2ac17 3095:981a9e5118ce
2 include config.mak 2 include config.mak
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_null.c ao_pcm.c ao_mpegpes.c $(OPTIONAL_SRCS) 7 SRCS=afmt.c audio_out.c ao_mpegpes.c ao_null.c ao_pcm.c ao_plugin.c $(OPTIONAL_SRCS)
8 OBJS=$(SRCS:.c=.o) 8 OBJS=$(SRCS:.c=.o)
9 9
10 CFLAGS = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(EXTRA_INC) 10 CFLAGS = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(EXTRA_INC)
11 11
12 .SUFFIXES: .c .o 12 .SUFFIXES: .c .o
36 # include dependency files if they exist 36 # include dependency files if they exist
37 # 37 #
38 ifneq ($(wildcard .depend),) 38 ifneq ($(wildcard .depend),)
39 include .depend 39 include .depend
40 endif 40 endif
41