blob: bc55ecb7fce88161d7129270dfea78734171602d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
include $(top_srcdir)/misc/Makefile.quiet
include $(top_builddir)/misc/Makefile.plugins
include $(top_srcdir)/misc/Makefile.common
AM_CFLAGS = $(DEFAULT_OCFLAGS) $(VISIBILITY_FLAG)
AM_LDFLAGS = $(xineplug_ldflags)
xineplug_LTLIBRARIES = \
xineplug_decode_spucc.la \
xineplug_decode_spucmml.la \
xineplug_decode_spu.la \
xineplug_decode_spudvb.la \
xineplug_decode_spuhdmv.la \
xineplug_sputext.la
xineplug_decode_spucc_la_SOURCES = cc_decoder.c cc_decoder.h xine_cc_decoder.c
xineplug_decode_spucc_la_LIBADD = $(XINE_LIB) $(LTLIBINTL)
xineplug_decode_spucc_la_CFLAGS = $(AM_CFLAGS)
xineplug_decode_spucmml_la_SOURCES = cmml_decoder.c
xineplug_decode_spucmml_la_LIBADD = $(XINE_LIB) $(LTLIBINTL)
if WITH_EXTERNAL_DVDNAV
external_dvdnav_libs = $(DVDNAV_LIBS) $(DVDREAD_LIBS)
internal_dvdnav_sources =
else
external_dvdnav_libs =
internal_dvdnav_sources = nav_read.c
endif
xineplug_decode_spu_la_SOURCES = $(internal_dvdnav_sources) spudec.c spudec.h spu_decoder.c
xineplug_decode_spu_la_LIBADD = $(XINE_LIB) $(external_dvdnav_libs) $(PTHREAD_LIBS) $(LTLIBINTL)
xineplug_decode_spu_la_CFLAGS = $(AM_CFLAGS) $(DVDNAV_CFLAGS) $(DVDREAD_CFLAGS) -I$(top_srcdir)/src/input/libdvdnav
xineplug_decode_spudvb_la_SOURCES = spudvb_decoder.c
xineplug_decode_spudvb_la_LIBADD = $(XINE_LIB) $(PTHREAD_LIBS) $(LTLIBINTL)
xineplug_decode_spuhdmv_la_SOURCES = spuhdmv_decoder.c
xineplug_decode_spuhdmv_la_LIBADD = $(XINE_LIB) $(PTHREAD_LIBS) $(LTLIBINTL)
xineplug_sputext_la_SOURCES = sputext_demuxer.c sputext_decoder.c
xineplug_sputext_la_LIBADD = $(XINE_LIB) $(LTLIBINTL)
|