Mercurial > mplayer.hg
annotate libaf/Makefile @ 9398:d709935c512d
optional loader/ (currently it does nothing until the win32 support on cygwin is disabled)
author | alex |
---|---|
date | Tue, 11 Feb 2003 18:56:17 +0000 |
parents | 113095b8258b |
children | dfb20e8273e5 |
rev | line source |
---|---|
7568 | 1 include ../config.mak |
2 | |
3 LIBNAME = libaf.a | |
4 | |
8832
a1578b329cc0
Adding sub-woofer filter, use this filter to add a sub channel to the audio stream
anders
parents:
8678
diff
changeset
|
5 SRCS=af.c af_mp.c af_dummy.c af_delay.c af_channels.c af_format.c af_resample.c window.c filter.c af_volume.c af_equalizer.c af_tools.c af_comp.c af_gate.c af_pan.c af_surround.c af_sub.c |
7568 | 6 |
7 OBJS=$(SRCS:.c=.o) | |
8 | |
9329 | 9 CFLAGS = $(OPTFLAGS) -I. -Wall $(EXTRA_INC) |
7568 | 10 .SUFFIXES: .c .o |
11 | |
12 .c.o: | |
13 $(CC) -c $(CFLAGS) -o $@ $< | |
14 | |
15 $(LIBNAME): $(OBJS) Makefile | |
16 $(AR) r $(LIBNAME) $(OBJS) | |
17 | |
8167 | 18 $(OBJS):af.h control.h dsp.h filter.h window.h af_mp.h |
7568 | 19 |
20 all: $(LIBNAME) | |
21 | |
22 clean: | |
23 rm -f *.o *.a *~ | |
24 | |
25 distclean: | |
26 rm -f *.o *.a *~ .depend | |
27 | |
28 dep: depend | |
29 | |
30 depend: | |
31 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend | |
32 | |
33 # | |
34 # include dependency files if they exist | |
35 # | |
36 ifneq ($(wildcard .depend),) | |
37 include .depend | |
38 endif |