summaryrefslogtreecommitdiffstats
path: root/libaf
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-26 18:12:36 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-26 18:12:36 +0000
commitdc2be42703cd95be495d420aeeaec79448222fa4 (patch)
tree02aa41ebcac77a378d93898cb064bf1c925545fe /libaf
parent7ecf9d9e29e9cb857bd7120cd5be3abb11f20151 (diff)
downloadmpv-dc2be42703cd95be495d420aeeaec79448222fa4.tar.bz2
mpv-dc2be42703cd95be495d420aeeaec79448222fa4.tar.xz
Merge common parts of all Makefiles into one file included by all.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21275 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libaf')
-rw-r--r--libaf/Makefile28
1 files changed, 2 insertions, 26 deletions
diff --git a/libaf/Makefile b/libaf/Makefile
index 6d58160786..4d6bebae21 100644
--- a/libaf/Makefile
+++ b/libaf/Makefile
@@ -40,36 +40,12 @@ ifeq ($(CONFIG_LIBAVCODEC_SO),yes)
SRCS+=af_lavcresample.c
endif
-OBJS=$(SRCS:.c=.o)
-
-CFLAGS = -I. -I.. $(LIBAV_INC) $(OPTFLAGS) -D_GNU_SOURCE
+CFLAGS = -I.. $(LIBAV_INC) -D_GNU_SOURCE
ifeq ($(TARGET_OS),MINGW32)
CFLAGS += -D_IO_H_
endif
-.SUFFIXES: .c .o
-
-.c.o:
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(LIBNAME): $(OBJS) Makefile
- $(AR) r $(LIBNAME) $(OBJS)
- $(RANLIB) $(LIBNAME)
-
$(OBJS):af.h control.h dsp.h filter.h window.h af_mp.h
-all: $(LIBNAME)
-
-clean:
- rm -f *.o *.a *~
-
-distclean: clean
- rm -f .depend
-
-dep depend:
- $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
-
-ifneq ($(wildcard .depend),)
-include .depend
-endif
+include ../mpcommon.mak