diff options
Diffstat (limited to 'src/libxinevdec/Makefile.am')
-rw-r--r-- | src/libxinevdec/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/libxinevdec/Makefile.am b/src/libxinevdec/Makefile.am index 31f7256d4..59c03fd7d 100644 --- a/src/libxinevdec/Makefile.am +++ b/src/libxinevdec/Makefile.am @@ -6,7 +6,8 @@ LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic libdir = $(XINE_PLUGINDIR) lib_LTLIBRARIES = xineplug_decode_cinepak.la xineplug_decode_cyuv.la \ - xineplug_decode_msvc.la xineplug_decode_roqvideo.la + xineplug_decode_msvc.la xineplug_decode_roqvideo.la \ + xineplug_decode_svq1.la xineplug_decode_cinepak_la_SOURCES = cinepak.c xineplug_decode_cinepak_la_LDFLAGS = -avoid-version -module @@ -20,6 +21,11 @@ xineplug_decode_msvc_la_LDFLAGS = -avoid-version -module xineplug_decode_roqvideo_la_SOURCES = roqvideo.c xineplug_decode_roqvideo_la_LDFLAGS = -avoid-version -module +xineplug_decode_svq1_la_SOURCES = svq1.c svq1_codebooks.h +xineplug_decode_svq1_la_LDFLAGS = -avoid-version -module + +noinst_HEADERS = svq1_codebooks.h + debug: @$(MAKE) CFLAGS="$(DEBUG_CFLAGS)" |