ffmpeg/libavfilter/Makefile
Vitor Sessak 0a46caf92a Remove test program and test video output module since ffplay can be used
for testing for a while now.

Commited in SoC by Bobby Bingham on 2007-08-14 22:31:51

Originally committed as revision 11948 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-15 19:29:00 +00:00

30 lines
607 B
Makefile

include ../config.mak
CFLAGS+=-I$(SRC_PATH)/libavcodec
OBJS = avfilter.o \
avfiltergraph.o \
avfiltergraphdesc.o \
defaults.o \
# TODO: real conditional compilation
OBJS-yes = vsrc_dummy.o \
vsrc_ppm.o \
vf_crop.o \
vf_fps.o \
vf_overlay.o \
vf_passthrough.o \
vf_rgb2bgr.o \
vf_slicify.o \
vf_vflip.o \
HEADERS = avfilter.h
EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
NAME=avfilter
LIBVERSION=$(LAVFILTERVERSION)
LIBMAJOR=$(LAVFILTERMAJOR)
include ../common.mak