gstreamer/plugins/elements/Makefile.am
Wim Taymans e5ab7f33ac A first attempt to fix the queues in a cothreaded pipeline.
Original commit message from CVS:
A first attempt to fix the queues in a cothreaded pipeline.
Some fixes to the thread handling.
Fix a bug in gstreamer-config : gthread was not included.
gst_bin_create_plan() is now done in the READY state.
a bin with only another bin in it will now work with gst_bin_iterate.
Added some examples for the queues.
2000-09-22 23:35:14 +00:00

49 lines
931 B
Makefile

filterdir = $(libdir)/gst
filter_LTLIBRARIES = libgstelements.la
if HAVE_LIBGHTTP
GSTHTTPSRC=gsthttpsrc.c
else
GSTHTTPSRC=
endif
libgstelements_la_DEPENDENCIES = ../libgst.la
libgstelements_la_SOURCES = \
gstelements.c \
gstfakesrc.c \
gstidentity.c \
gstfakesink.c \
gstdisksrc.c \
gstasyncdisksrc.c \
gstfdsrc.c \
$(GSTHTTPSRC) \
gstaudiosink.c \
gstaudiosrc.c \
gstfdsink.c \
gstpipefilter.c \
gstqueue.c \
gsttypefind.c \
gstsinesrc.c
noinst_HEADERS = \
gstfakesrc.h \
gstidentity.h \
gstfakesink.h \
gstdisksrc.h \
gstasyncdisksrc.h \
gstfdsrc.h \
gsthttpsrc.h \
gstaudiosink.h \
gstaudiosrc.h \
gstfdsink.h \
gstpipefilter.h \
gstqueue.h \
gsttypefind.h \
gstsinesrc.h
CFLAGS += -O2 -Wall
libgstelements_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS) $(GHTTP_LIBS)
libgstelements_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE)