diff options
author | anders <anders@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-10-01 06:45:08 +0000 |
---|---|---|
committer | anders <anders@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-10-01 06:45:08 +0000 |
commit | 1f6c494641c4ca99eec7a9f47818526c72789439 (patch) | |
tree | 17bf220c1c1ac1144dfa8212f09444e51c248a26 /libaf/Makefile | |
parent | c0091278d8f15580eecebfc8c454fba250cf4b94 (diff) |
Adding new audio output filter layer libaf
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7569 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libaf/Makefile')
-rw-r--r-- | libaf/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/libaf/Makefile b/libaf/Makefile new file mode 100644 index 0000000000..eec59367f8 --- /dev/null +++ b/libaf/Makefile @@ -0,0 +1,38 @@ +include ../config.mak + +LIBNAME = libaf.a + +SRCS=af.c af_dummy.c af_delay.c af_channels.c af_format.c af_resample.c window.c filter.c + +OBJS=$(SRCS:.c=.o) + +CFLAGS = $(OPTFLAGS) -I. -Wall +.SUFFIXES: .c .o + +.c.o: + $(CC) -c $(CFLAGS) -o $@ $< + +$(LIBNAME): $(OBJS) Makefile + $(AR) r $(LIBNAME) $(OBJS) + +$(OBJS):af.h dsp.h filter.h window.h + +all: $(LIBNAME) + +clean: + rm -f *.o *.a *~ + +distclean: + rm -f *.o *.a *~ .depend + +dep: depend + +depend: + $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend + +# +# include dependency files if they exist +# +ifneq ($(wildcard .depend),) +include .depend +endif |