mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-12 02:04:58 +00:00
0a46caf92a
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
30 lines
607 B
Makefile
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
|