blob: 2d7f9ac1adab7a47ff0b5972d70b111012d57841 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
include $(top_srcdir)/misc/Makefile.common
AM_CFLAGS = @ANSI_FLAGS@
libdir = $(XINE_PLUGINDIR)/post
lib_LTLIBRARIES = xineplug_post_invert.la xineplug_post_expand.la
# xineplug_post_deinterlace.la
xineplug_post_invert_la_SOURCES = invert.c
xineplug_post_invert_la_LIBADD = $(XINE_LIB)
xineplug_post_invert_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
xineplug_post_expand_la_SOURCES = expand.c
xineplug_post_expand_la_LIBADD = $(XINE_LIB)
xineplug_post_expand_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
# xineplug_post_deinterlace_la_SOURCES = deinterlace.c
# xineplug_post_deinterlace_la_LIBADD = $(XINE_LIB)
# xineplug_post_deinterlace_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
|