]> git.sesse.net Git - ffmpeg/blob - libavfilter/Makefile
Fix Cygwin compilation.
[ffmpeg] / libavfilter / Makefile
1 include ../config.mak
2
3 CFLAGS+=-I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libswscale
4
5 OBJS = avfilter.o \
6        avfiltergraph.o \
7        avfiltergraphdesc.o \
8        defaults.o \
9
10 # TODO: real conditional compilation
11 OBJS-yes = vf_crop.o \
12            vf_fifo.o \
13            vf_fps.o \
14            vf_negate.o \
15            vf_overlay.o \
16            vf_passthrough.o \
17            vf_scale.o \
18            vf_slicify.o \
19            vf_split.o \
20            vf_vflip.o \
21
22 HEADERS = avfilter.h
23
24 EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) -L$(BUILD_ROOT)/libswscale -lswscale$(BUILDSUF) -L$(BUILD_ROOT)/libavcodec -lavcodec$(BUILDSUF) $(EXTRALIBS)
25
26 NAME=avfilter
27 LIBVERSION=$(LAVFILTERVERSION)
28 LIBMAJOR=$(LAVFILTERMAJOR)
29
30 include ../common.mak