blob: f08fa250aee62e19ff9877a507d8be324f8862ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
include $(top_srcdir)/misc/Makefile.common
AM_CPPFLAGS = -I$(top_srcdir)/src/post/deinterlace
EXTRA_DIST = greedy2frame_template.c
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 \
scalerbob.c
libdeinterlaceplugins_la_LIBADD = $(XINE_LIB)
libdeinterlaceplugins_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
noinst_HEADERS = plugins.h
|