blob: 8e3ca9cbd99fbd92f71e481a213e613bd237d20f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include $(top_srcdir)/misc/Makefile.common
AM_CFLAGS = $(VORBIS_CFLAGS)
libdir = $(XINE_PLUGINDIR)
if HAVE_VORBIS
vorbis_module = xineplug_decode_vorbis.la
endif
lib_LTLIBRARIES = $(vorbis_module)
xineplug_decode_vorbis_la_SOURCES = xine_decoder.c
xineplug_decode_vorbis_la_LIBADD = $(VORBIS_LIBS) $(OGG_LIBS)
xineplug_decode_vorbis_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
|