blob: bc322169d2ce5f7ab209e111519e6ef9cb33f6a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
include $(top_srcdir)/misc/Makefile.common
AM_CFLAGS = $(DEFAULT_OCFLAGS) $(VISIBILITY_FLAG)
AM_LDFLAGS = $(xineplug_ldflags)
SUBDIRS = include libmpeg2
xineplug_LTLIBRARIES = xineplug_decode_mpeg2new.la
xineplug_decode_mpeg2new_la_SOURCES = \
xine_mpeg2new_decoder.c
xineplug_decode_mpeg2new_la_LIBADD = $(XINE_LIB) libmpeg2/libmpeg2.la
xineplug_decode_mpeg2new_la_CFLAGS = $(AM_CFLAGS) $(MLIB_CFLAGS)
|