mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
bb9cb87ca0
Patch by Víctor Paesa. Commited in SoC by Vitor Sessak on 2007-11-10 20:00:16 Originally committed as revision 11950 to svn://svn.ffmpeg.org/ffmpeg/trunk
31 lines
748 B
Makefile
31 lines
748 B
Makefile
include ../config.mak
|
|
|
|
CFLAGS+=-I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libswscale
|
|
|
|
OBJS = avfilter.o \
|
|
avfiltergraph.o \
|
|
avfiltergraphdesc.o \
|
|
defaults.o \
|
|
|
|
# TODO: real conditional compilation
|
|
OBJS-yes = vf_crop.o \
|
|
vf_fifo.o \
|
|
vf_fps.o \
|
|
vf_negate.o \
|
|
vf_overlay.o \
|
|
vf_passthrough.o \
|
|
vf_scale.o \
|
|
vf_slicify.o \
|
|
vf_split.o \
|
|
vf_vflip.o \
|
|
|
|
HEADERS = avfilter.h
|
|
|
|
EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) -L$(BUILD_ROOT)/libswscale -lswscale$(BUILDSUF) -L$(BUILD_ROOT)/libavcodec -lavcodec$(BUILDSUF) $(EXTRALIBS)
|
|
|
|
NAME=avfilter
|
|
LIBVERSION=$(LAVFILTERVERSION)
|
|
LIBMAJOR=$(LAVFILTERMAJOR)
|
|
|
|
include ../common.mak
|