2003-10-28 20:25:30 +00:00
|
|
|
# FIXME:
|
|
|
|
# need to get gstbufferstore.[ch] into its own lib, preferrably
|
|
|
|
# libs/gst/buifferstore
|
|
|
|
# This requires building libs/gst before this dir, which we currently don't
|
|
|
|
# do.
|
|
|
|
|
2002-01-12 00:47:40 +00:00
|
|
|
plugin_LTLIBRARIES = libgstelements.la
|
2004-04-20 22:22:01 +00:00
|
|
|
AS_LIBTOOL_LIB = libgstelements
|
|
|
|
|
|
|
|
EXTRA_DIST = $(as_libtool_EXTRA_DIST)
|
|
|
|
noinst_DATA = $(as_libtool_noinst_DATA_files)
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-04-14 01:38:27 +00:00
|
|
|
# FIXME:
|
|
|
|
# Disable multifilesrc on Windows, cause it uses mmap excessively
|
|
|
|
# and I don't feel like fixing it yet. See also the disablement
|
|
|
|
# in gstelements.c.
|
|
|
|
if AS_LIBTOOL_WIN32
|
|
|
|
multifilesrc =
|
2004-04-20 22:22:01 +00:00
|
|
|
pipefilter =
|
2004-04-14 01:38:27 +00:00
|
|
|
else
|
|
|
|
multifilesrc = gstmultifilesrc.c
|
2004-04-20 22:22:01 +00:00
|
|
|
pipefilter = gstpipefilter.c
|
2004-04-14 01:38:27 +00:00
|
|
|
endif
|
|
|
|
|
2002-12-08 14:39:38 +00:00
|
|
|
libgstelements_la_DEPENDENCIES = ../libgstreamer-@GST_MAJORMINOR@.la
|
2000-01-30 09:03:00 +00:00
|
|
|
libgstelements_la_SOURCES = \
|
2003-10-28 20:25:30 +00:00
|
|
|
gstaggregator.c \
|
|
|
|
gstbufferstore.c \
|
2000-01-30 09:03:00 +00:00
|
|
|
gstelements.c \
|
|
|
|
gstfakesink.c \
|
2003-10-28 20:25:30 +00:00
|
|
|
gstfakesrc.c \
|
2002-04-28 17:08:59 +00:00
|
|
|
gstfilesink.c \
|
2003-10-28 20:25:30 +00:00
|
|
|
gstfilesrc.c \
|
2000-01-30 09:03:00 +00:00
|
|
|
gstfdsink.c \
|
2003-10-28 20:25:30 +00:00
|
|
|
gstfdsrc.c \
|
|
|
|
gstidentity.c \
|
|
|
|
gstmd5sink.c \
|
2004-04-14 01:38:27 +00:00
|
|
|
$(multifilesrc) \
|
2004-04-20 22:22:01 +00:00
|
|
|
$(pipefilter) \
|
2003-02-23 20:29:12 +00:00
|
|
|
gstshaper.c \
|
2002-01-29 20:06:07 +00:00
|
|
|
gststatistics.c \
|
2003-10-28 20:25:30 +00:00
|
|
|
gsttee.c \
|
2004-04-29 00:32:28 +00:00
|
|
|
gsttypefindelement.c
|
2003-10-28 20:25:30 +00:00
|
|
|
|
2004-05-04 12:38:36 +00:00
|
|
|
libgstelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
|
|
libgstelements_la_LIBADD = $(GST_OBJ_LIBS)
|
2004-04-20 22:22:01 +00:00
|
|
|
libgstelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
noinst_HEADERS = \
|
2003-10-28 20:25:30 +00:00
|
|
|
gstaggregator.h \
|
|
|
|
gstbufferstore.h \
|
2000-01-30 09:03:00 +00:00
|
|
|
gstfakesink.h \
|
2003-10-28 20:25:30 +00:00
|
|
|
gstfakesrc.h \
|
|
|
|
gstfdsink.h \
|
2000-01-30 09:03:00 +00:00
|
|
|
gstfdsrc.h \
|
2003-10-28 20:25:30 +00:00
|
|
|
gstfilesink.h \
|
|
|
|
gstfilesrc.h \
|
|
|
|
gstidentity.h \
|
|
|
|
gstmd5sink.h \
|
2004-02-11 18:49:26 +00:00
|
|
|
gstmultifilesrc.h \
|
2000-05-28 19:59:46 +00:00
|
|
|
gstpipefilter.h \
|
2003-02-23 20:29:12 +00:00
|
|
|
gstshaper.h \
|
2003-10-28 20:25:30 +00:00
|
|
|
gststatistics.h \
|
|
|
|
gsttee.h \
|
2004-04-29 00:32:28 +00:00
|
|
|
gsttypefindelement.h
|
2004-04-20 22:22:01 +00:00
|
|
|
|
|
|
|
install-data-local: as-libtool-install-data-local
|
|
|
|
|
|
|
|
uninstall-local: as-libtool-uninstall-local
|
|
|
|
|
|
|
|
include $(top_srcdir)/common/as-libtool.mak
|
|
|
|
|