blob: 65e4301340d1c02c0139ac43e250b60c21093004 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
include $(top_srcdir)/misc/Makefile.common
AM_CPPFLAGS = -I../
EXTRA_DIST =
libdir = $(XINE_PLUGINDIR)/post
noinst_LTLIBRARIES = libdeinterlaceplugins.la
libdeinterlaceplugins_la_SOURCES = \
double.c \
greedy.c \
linear.c \
linearblend.c \
vfir.c \
weave.c \
greedy2frame.c
libdeinterlaceplugins_la_LIBADD = $(XINE_LIB)
libdeinterlaceplugins_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
noinst_HEADERS = plugins.h
|