1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-11 09:57:54 +02:00
ffmpeg/libavfilter/Makefile
Víctor Paesa bb9cb87ca0 Fix Cygwin compilation.
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
2008-02-15 19:31:19 +00:00

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