funnel: Always push all sticky events whenever we forward a serialized event
[platform/upstream/gstreamer.git] / plugins / elements / Makefile.am
index f2b426e..db4d38c 100644 (file)
@@ -1,46 +1,70 @@
-# FIXME:
-# need to get gstbufferstore.[ch] into its own lib, preferably 
-# libs/gst/bufferstore
-# This requires building libs/gst before this dir, which we currently don't
-# do.
-
-plugin_LTLIBRARIES = libgstelements.la
-
-if HAVE_SYS_SOCKET_H
-GSTFDSRC = gstfdsrc.c
-else
-GSTFDSRC =
-endif
-
-libgstelements_la_DEPENDENCIES = $(top_builddir)/gst/libgstreamer-@GST_MAJORMINOR@.la
-libgstelements_la_SOURCES =    \
-       gstbufferstore.c        \
+
+plugin_LTLIBRARIES = libgstcoreelements.la
+
+libgstcoreelements_la_DEPENDENCIES = $(top_builddir)/gst/libgstreamer-@GST_API_VERSION@.la
+libgstcoreelements_la_SOURCES =        \
        gstcapsfilter.c         \
+       gstconcat.c             \
+       gstdownloadbuffer.c     \
+       gstelements.c           \
+       gstelements_private.c   \
        gstfakesrc.c            \
        gstfakesink.c           \
-       $(GSTFDSRC)             \
+       gstfdsrc.c              \
+       gstfdsink.c             \
        gstfilesink.c           \
        gstfilesrc.c            \
+       gstfunnel.c             \
        gstidentity.c           \
-       gstelements.c           \
+       gstinputselector.c      \
+       gstoutputselector.c     \
+       gstmultiqueue.c         \
+       gstqueue.c              \
+       gstqueue2.c             \
+       gstsparsefile.c         \
        gsttee.c                \
-       gsttypefindelement.c
+       gsttypefindelement.c    \
+       gststreamiddemux.c      \
+       gstvalve.c
 
-libgstelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
-libgstelements_la_LIBADD = \
-       $(top_builddir)/gst/base/libgstbase-@GST_MAJORMINOR@.la \
+libgstcoreelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
+libgstcoreelements_la_LIBADD = \
+       $(top_builddir)/libs/gst/base/libgstbase-@GST_API_VERSION@.la \
        $(GST_OBJ_LIBS)
-libgstelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
+libgstcoreelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
+libgstcoreelements_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
 
 noinst_HEADERS =               \
-       gstbufferstore.h        \
+       gstcapsfilter.h         \
+       gstconcat.h             \
+       gstdownloadbuffer.h     \
+       gstelements_private.h   \
        gstfakesink.h           \
        gstfakesrc.h            \
        gstfdsrc.h              \
+       gstfdsink.h             \
        gstfilesink.h           \
        gstfilesrc.h            \
+       gstfunnel.h             \
        gstidentity.h           \
+       gstinputselector.h      \
+       gstoutputselector.h     \
+       gstmultiqueue.h         \
+       gstqueue.h              \
+       gstqueue2.h             \
+       gstsparsefile.h         \
        gsttee.h                \
-       gsttypefindelement.h
+       gsttypefindelement.h    \
+       gststreamiddemux.h      \
+       gstvalve.h
+
+EXTRA_DIST = gstfdsrc.c \
+            gstfdsink.c
+
+
+CLEANFILES = *.gcno *.gcda *.gcov *.gcov.out
+
+%.c.gcov: .libs/libgstcoreelements_la-%.gcda %.c
+       $(GCOV) -b -f -o $^ > $@.out
 
-EXTRA_DIST = gstfdsrc.c
+gcov: $(libgstcoreelements_la_SOURCES:=.gcov)