mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
3235f1d4c0
Original commit message from CVS: merge TYPEFIND branch. Major changes: - totally reworked type(find) system - bytestream is out of the core again - typefind element is now part of gstelements
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# 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.
|
|
|
|
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
plugin_LTLIBRARIES = libgstelements.la
|
|
|
|
libgstelements_la_DEPENDENCIES = ../libgstreamer-@GST_MAJORMINOR@.la
|
|
libgstelements_la_SOURCES = \
|
|
gstaggregator.c \
|
|
gstbufferstore.c \
|
|
gstelements.c \
|
|
gstfakesink.c \
|
|
gstfakesrc.c \
|
|
gstfilesink.c \
|
|
gstfilesrc.c \
|
|
gstfdsink.c \
|
|
gstfdsrc.c \
|
|
gstidentity.c \
|
|
gstmd5sink.c \
|
|
gstmultidisksrc.c \
|
|
gstpipefilter.c \
|
|
gstshaper.c \
|
|
gststatistics.c \
|
|
gsttee.c \
|
|
gsttypefindelement.c
|
|
|
|
libgstelements_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstelements_la_LIBADD =
|
|
libgstelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstaggregator.h \
|
|
gstbufferstore.h \
|
|
gstfakesink.h \
|
|
gstfakesrc.h \
|
|
gstfdsink.h \
|
|
gstfdsrc.h \
|
|
gstfilesink.h \
|
|
gstfilesrc.h \
|
|
gstidentity.h \
|
|
gstmd5sink.h \
|
|
gstmultidisksrc.h \
|
|
gstpipefilter.h \
|
|
gstshaper.h \
|
|
gststatistics.h \
|
|
gsttee.h \
|
|
gsttypefindelement.h
|