Makefile 336 字节
Newer Older
M
Måns Rullgård 已提交
1
include $(SUBDIR)../config.mak
V
Vitor Sessak 已提交
2

3 4
NAME = avfilter
FFLIBS = avcodec avutil
5
FFLIBS-$(CONFIG_SWSCALE)       += swscale
6 7
FFLIBS-$(CONFIG_AVFILTER_LAVF) += avformat

V
Vitor Sessak 已提交
8 9
OBJS = allfilters.o \
       avfilter.o \
10
       defaults.o \
V
Vitor Sessak 已提交
11
       formats.o \
12

13
#OBJS-$(CONFIG_XXX_FILTER)    += vf_xxx.o
14

V
Vitor Sessak 已提交
15 16
HEADERS = avfilter.h

M
Måns Rullgård 已提交
17
include $(SUBDIR)../subdir.mak