diff options
Diffstat (limited to 'src/post/deinterlace/plugins/Makefile.am')
-rw-r--r-- | src/post/deinterlace/plugins/Makefile.am | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/post/deinterlace/plugins/Makefile.am b/src/post/deinterlace/plugins/Makefile.am new file mode 100644 index 000000000..65e430134 --- /dev/null +++ b/src/post/deinterlace/plugins/Makefile.am @@ -0,0 +1,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 |