ffmpeg/libavfilter/Makefile
Stefano Sabatini c38ae71f54 Add video vertical flip filter.
Originally committed as revision 20352 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-22 22:00:33 +00:00

19 lines
605 B
Makefile

include $(SUBDIR)../config.mak
NAME = avfilter
FFLIBS = avcodec avutil swscale
FFLIBS-$(CONFIG_AVFILTER_LAVF) += avformat
HEADERS = avfilter.h
OBJS = allfilters.o \
avfilter.o \
defaults.o \
formats.o \
OBJS-$(CONFIG_CROP_FILTER) += vf_crop.o
OBJS-$(CONFIG_NULL_FILTER) += vf_null.o
OBJS-$(CONFIG_VFLIP_FILTER) += vf_vflip.o
include $(SUBDIR)../subdir.mak