blob: 1371d62d583c16756c055d58b1f1e3487e748ac8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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_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@
|