1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-11 09:57:54 +02:00
ffmpeg/libavfilter/Makefile
Vitor Sessak b4aa24fdfa Link to libraries in dependency order.
Commited in SoC by Víctor Paesa  on 2008-01-12 11:31:09

Originally committed as revision 11952 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-15 19:33:36 +00:00

37 lines
897 B
Makefile

include ../config.mak
CFLAGS+=-I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libswscale
OBJS = avfilter.o \
avfiltergraph.o \
avfiltergraphdesc.o \
defaults.o \
formats.o \
# TODO: real conditional compilation
OBJS-yes = vf_crop.o \
vf_fifo.o \
vf_fps.o \
vf_hflip.o \
vf_negate.o \
vf_format.o \
vf_overlay.o \
vf_rotate.o \
vf_scale.o \
vf_setpts.o \
vf_slicify.o \
vf_split.o \
vf_transpose.o \
vf_vflip.o \
avfiltergraphfile.o \
HEADERS = avfilter.h
EXTRALIBS := -L$(BUILD_ROOT)/libavcodec -lavcodec$(BUILDSUF) -L$(BUILD_ROOT)/libswscale -lswscale$(BUILDSUF) -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
NAME=avfilter
LIBVERSION=$(LAVFILTERVERSION)
LIBMAJOR=$(LAVFILTERMAJOR)
include ../common.mak