mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
cb5b884215
Original commit message from CVS: Moved fdsrc to gst-plugins.
37 lines
920 B
Makefile
37 lines
920 B
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.
|
|
|
|
plugin_LTLIBRARIES = libgstelements.la
|
|
|
|
libgstelements_la_DEPENDENCIES = ../libgstreamer-@GST_MAJORMINOR@.la
|
|
libgstelements_la_SOURCES = \
|
|
gstbufferstore.c \
|
|
gstcapsfilter.c \
|
|
gstfakesrc.c \
|
|
gstfakesink.c \
|
|
gstfilesink.c \
|
|
gstfilesrc.c \
|
|
gstidentity.c \
|
|
gstelements.c \
|
|
gsttee.c \
|
|
gsttypefindelement.c
|
|
|
|
libgstelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
libgstelements_la_LIBADD = $(GST_OBJ_LIBS) \
|
|
$(top_builddir)/gst/base/libgstbase-@GST_MAJORMINOR@.la \
|
|
$(top_builddir)/gst/libgstreamer-@GST_MAJORMINOR@.la
|
|
libgstelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstbufferstore.h \
|
|
gstfakesink.h \
|
|
gstfakesrc.h \
|
|
gstfilesink.h \
|
|
gstfilesrc.h \
|
|
gstidentity.h \
|
|
gsttee.h \
|
|
gsttypefindelement.h
|
|
|