Mercurial > mplayer.hg
view mpcommon.mak @ 22768:7989c3586b9e
add mf://bmp wish, remove deinterlace filter during playback
author | compn |
---|---|
date | Fri, 23 Mar 2007 01:48:54 +0000 |
parents | 6ddfa5da1286 |
children | afb7111123bb |
line wrap: on
line source
SRCS_COMMON += $(SRCS_COMMON-yes) SRCS_MPLAYER += $(SRCS_MPLAYER-yes) SRCS_MENCODER += $(SRCS_MENCODER-yes) OBJS_COMMON = $(addsuffix .o, $(basename $(SRCS_COMMON)) ) OBJS_MPLAYER = $(addsuffix .o, $(basename $(SRCS_MPLAYER)) ) OBJS_MENCODER = $(addsuffix .o, $(basename $(SRCS_MENCODER)) ) CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil CFLAGS-$(CONFIG_LIBAVCODEC) += -I../libavcodec CFLAGS-$(CONFIG_LIBAVFORMAT) += -I../libavformat CFLAGS += -I. -I.. $(CFLAGS-yes) $(OPTFLAGS) LIBS-$(MPLAYER) += $(LIBNAME_MPLAYER) LIBS-$(MENCODER) += $(LIBNAME_MENCODER) LIBS = $(LIBNAME_COMMON) $(LIBS-yes) libs: $(LIBS) $(LIBNAME_COMMON): $(OBJS_COMMON) $(LIBNAME_MPLAYER): $(OBJS_MPLAYER) $(LIBNAME_MENCODER): $(OBJS_MENCODER) $(LIBNAME_COMMON) $(LIBNAME_MPLAYER) $(LIBNAME_MENCODER): $(AR) r $@ $^ $(RANLIB) $@ clean:: rm -f *.o *.a *~ distclean:: clean rm -f .depend dep depend:: $(CC) -MM $(CFLAGS) $(SRCS_COMMON) $(SRCS_MPLAYER) $(SRCS_MENCODER) 1>.depend -include .depend .PHONY: libs clean distclean dep depend