Mercurial > mplayer.hg
comparison libaf/Makefile @ 7745:1d3a3dc1f488
Adding volume control and moving control() call parameters to a seperate file
author | anders |
---|---|
date | Wed, 16 Oct 2002 01:49:40 +0000 |
parents | d08513b9fed6 |
children | c0e556f9986b |
comparison
equal
deleted
inserted
replaced
7744:6d41f5e905e2 | 7745:1d3a3dc1f488 |
---|---|
1 include ../config.mak | 1 include ../config.mak |
2 | 2 |
3 LIBNAME = libaf.a | 3 LIBNAME = libaf.a |
4 | 4 |
5 SRCS=af.c af_dummy.c af_delay.c af_channels.c af_format.c af_resample.c window.c filter.c | 5 SRCS=af.c af_dummy.c af_delay.c af_channels.c af_format.c af_resample.c window.c filter.c af_volume.c |
6 | 6 |
7 OBJS=$(SRCS:.c=.o) | 7 OBJS=$(SRCS:.c=.o) |
8 | 8 |
9 CFLAGS = $(OPTFLAGS) -I. -Wall | 9 CFLAGS = $(OPTFLAGS) -I. -Wall |
10 .SUFFIXES: .c .o | 10 .SUFFIXES: .c .o |
13 $(CC) -c $(CFLAGS) -o $@ $< | 13 $(CC) -c $(CFLAGS) -o $@ $< |
14 | 14 |
15 $(LIBNAME): $(OBJS) Makefile | 15 $(LIBNAME): $(OBJS) Makefile |
16 $(AR) r $(LIBNAME) $(OBJS) | 16 $(AR) r $(LIBNAME) $(OBJS) |
17 | 17 |
18 $(OBJS):af.h dsp.h filter.h window.h | 18 $(OBJS):af.h control.h dsp.h filter.h window.h |
19 | 19 |
20 all: $(LIBNAME) | 20 all: $(LIBNAME) |
21 | 21 |
22 clean: | 22 clean: |
23 rm -f *.o *.a *~ | 23 rm -f *.o *.a *~ |