blob: bfe6f35b90fe0974208e29a4651fc6780baa1643 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
include $(top_srcdir)/misc/Makefile.common
libdir = $(XINE_PLUGINDIR)
if HAVE_SPEEX
speex_module = xineplug_decode_speex.la
endif
lib_LTLIBRARIES = $(speex_module)
xineplug_decode_speex_la_SOURCES = xine_decoder.c
xineplug_decode_speex_la_LIBADD = $(SPEEX_LIBS) $(XINE_LIB)
xineplug_decode_speex_la_CFLAGS = $(VISIBILITY_FLAGS) $(SPEEX_CFLAGS)
xineplug_decode_speex_la_LDFLAGS = -avoid-version -module
|