mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
d921d99df5
Original commit message from CVS: clean more
61 lines
1.3 KiB
Makefile
61 lines
1.3 KiB
Makefile
# 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 = libgstcoreelements.la
|
|
|
|
if HAVE_SYS_SOCKET_H
|
|
GSTFDSRC = gstfdsrc.c
|
|
GSTFDSINK = gstfdsink.c
|
|
else
|
|
GSTFDSRC =
|
|
GSTFDSINK =
|
|
endif
|
|
|
|
libgstcoreelements_la_DEPENDENCIES = $(top_builddir)/gst/libgstreamer-@GST_MAJORMINOR@.la
|
|
libgstcoreelements_la_SOURCES = \
|
|
gstbufferstore.c \
|
|
gstcapsfilter.c \
|
|
gstelements.c \
|
|
gstfakesrc.c \
|
|
gstfakesink.c \
|
|
$(GSTFDSRC) \
|
|
$(GSTFDSINK) \
|
|
gstfilesink.c \
|
|
gstfilesrc.c \
|
|
gstidentity.c \
|
|
gstqueue.c \
|
|
gsttee.c \
|
|
gsttypefindelement.c
|
|
|
|
libgstcoreelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
libgstcoreelements_la_LIBADD = \
|
|
$(top_builddir)/libs/gst/base/libgstbase-@GST_MAJORMINOR@.la \
|
|
$(GST_OBJ_LIBS)
|
|
libgstcoreelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstbufferstore.h \
|
|
gstfakesink.h \
|
|
gstfakesrc.h \
|
|
gstfdsrc.h \
|
|
gstfdsink.h \
|
|
gstfilesink.h \
|
|
gstfilesrc.h \
|
|
gstidentity.h \
|
|
gstqueue.h \
|
|
gsttee.h \
|
|
gsttypefindelement.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
|
|
|
|
gcov: $(libgstcoreelements_la_SOURCES:=.gcov)
|