blob: 03dae6cbafaeef2695c3533771ad689dcea811be (
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 = $(LIBMPEG2_CFLAGS)
SUBDIRS = libmpeg2
libdir = $(XINE_PLUGINDIR)
lib_LTLIBRARIES = xineplug_decode_mpeg2.la
xineplug_decode_mpeg2_la_SOURCES = \
xine_decoder.c
xineplug_decode_mpeg2_la_LIBADD = $(XINE_LIB) ./libmpeg2/libmpeg2.la
xineplug_decode_mpeg2_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
|