blob: 362f9319ef88b33b6c083834af0dcb2b5420cab0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include $(top_srcdir)/misc/Makefile.common
libdir = $(XINE_PLUGINDIR)
sputext_decoder = xineplug_decode_sputext.la xineplug_dmx_sputext.la
lib_LTLIBRARIES = $(sputext_decoder)
xineplug_dmx_sputext_la_SOURCES = demux_sputext.c
xineplug_dmx_sputext_la_LIBADD = $(XINE_LIB)
xineplug_dmx_sputext_la_CFLAGS = $(VISIBILITY_FLAG)
xineplug_dmx_sputext_la_LDFLAGS = -avoid-version -module
xineplug_decode_sputext_la_SOURCES = xine_decoder.c
xineplug_decode_sputext_la_LIBADD = $(XINE_LIB)
xineplug_decode_sputext_la_CFLAGS = $(VISIBILITY_FLAG)
xineplug_decode_sputext_la_LDFLAGS = -avoid-version -module
|