]> git.sesse.net Git - ffmpeg/blob - libavfilter/Makefile
Cosmetics: split long line
[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        formats.o \
10
11 # TODO: real conditional compilation
12 OBJS-yes = vf_crop.o \
13            vf_fifo.o \
14            vf_fps.o \
15            vf_hflip.o \
16            vf_negate.o \
17            vf_format.o \
18            vf_overlay.o \
19            vf_rotate.o \
20            vf_scale.o \
21            vf_setpts.o \
22            vf_slicify.o \
23            vf_split.o \
24            vf_transpose.o \
25            vf_vflip.o \
26            avfiltergraphfile.o \
27
28 HEADERS = avfilter.h
29
30 EXTRALIBS := -L$(BUILD_ROOT)/libavcodec -lavcodec$(BUILDSUF) \
31              -L$(BUILD_ROOT)/libswscale -lswscale$(BUILDSUF) \
32              -L$(BUILD_ROOT)/libavutil  -lavutil$(BUILDSUF) $(EXTRALIBS)
33
34 NAME=avfilter
35 LIBVERSION=$(LAVFILTERVERSION)
36 LIBMAJOR=$(LAVFILTERMAJOR)
37
38 include ../common.mak