summaryrefslogtreecommitdiff
path: root/src/libw32dll/Makefile.am
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-12-18 04:00:45 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-12-18 04:00:45 +0000
commit85632e5177760e08d3d40dcfe9456bef54fcdc2d (patch)
tree23fe16c5ebbc032f620ac5d97706a539982426a2 /src/libw32dll/Makefile.am
parent54e7d3ecdb73fbbe09025c7f8b3bdbbe8ea87690 (diff)
downloadxine-lib-85632e5177760e08d3d40dcfe9456bef54fcdc2d.tar.gz
xine-lib-85632e5177760e08d3d40dcfe9456bef54fcdc2d.tar.bz2
first draft of quicktime binary-only codec support
CVS patchset: 3580 CVS date: 2002/12/18 04:00:45
Diffstat (limited to 'src/libw32dll/Makefile.am')
-rw-r--r--src/libw32dll/Makefile.am13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/libw32dll/Makefile.am b/src/libw32dll/Makefile.am
index b5f3fbc17..7e7dec90e 100644
--- a/src/libw32dll/Makefile.am
+++ b/src/libw32dll/Makefile.am
@@ -2,10 +2,11 @@ AM_CFLAGS = -I$(srcdir)/wine
#DEBUG_CFLAGS = @DEBUG_CFLAGS@ -I$(srcdir)/wine
-SUBDIRS = wine DirectShow
+SUBDIRS = wine DirectShow qtx
if HAVE_W32DLL
w32dll_codec = xineplug_decode_w32dll.la
+qt_codec = xineplug_decode_qt.la
endif
LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
@@ -17,7 +18,7 @@ libdir = $(XINE_PLUGINDIR)
# ---------
# All of xine codecs should be named like the scheme "xineplug_decode_"
#
-lib_LTLIBRARIES = $(w32dll_codec)
+lib_LTLIBRARIES = $(w32dll_codec) $(qt_codec)
xineplug_decode_w32dll_la_SOURCES = w32codec.c
xineplug_decode_w32dll_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
@@ -27,6 +28,14 @@ xineplug_decode_w32dll_la_LIBADD = \
$(top_builddir)/src/libw32dll/DirectShow/libds_filter.la \
@KSTAT_LIBS@
+xineplug_decode_qt_la_SOURCES = qt_decoder.c
+xineplug_decode_qt_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
+xineplug_decode_qt_la_LIBADD = \
+ $(top_builddir)/src/libw32dll/wine/libwine.la \
+ $(XINE_LIB) \
+ $(top_builddir)/src/libw32dll/DirectShow/libds_filter.la \
+ @KSTAT_LIBS@
+
noinst_HEADERS = libwin32.h w32codec.h
$(XINE_LIB):